我正在尝试使用 $PSDefaultParameterValues 来简化我的生活。我遇到的问题是,当调用通过隐式远程处理加载的 cmdlet 时,我在 $PSDefaultParameterValues 中设置的任何内容都会被忽略。
我目前遇到的一个简化示例:
$domainController = 'dc1.ptloma.edu'
Import-Module ActiveDirectory
foreach($command in (Get-Command -Module ActiveDirectory -ParameterName Server))
{
$PSDefaultParameterValues["$($command.Name):Server"] = $domainController
}
$exchangeSessionParameters = @{
Name = "ExchangeInterop"
ConfigurationName = "Microsoft.Exchange"
Authentication = "Kerberos"
Credential = $ExchangeCredential
ConnectionUri = "http://server.domain.com/PowerShell/"
}
$exchangePsSession = New-PSSession @exchangeSessionParameters
$remoteModule = Import-Session -Session $exchangePsSession
foreach($command in (Get-Command -Module $remoteModule -ParameterName DomainController))
{
$PSDefaultParameterValues["$($command.Name):DomainController"] = $domainController
}
try
{
New-AdGroup -Path "OU=Automated,OU=Groups,DC=domain,DC=com" -Name "GroupA"
Enable-DistributionGroup -Identity "CN=GroupA,OU=Automated,OU=Groups,DC=domain,DC=com" -Alias "GroupA" -PrimarySmtpAddress "GroupA@domain.com"
}
catch
{
# Breakpoint here
Write-Host $_.Exception.SerializedRemoteInvocationInfo
throw
}
我收到以下异常:
The operation couldn't be performed because object 'domain.com/Groups/Automated/GroupA' couldn't be found on 'dc2.domain.com'.
请注意,它谈论的是 dc2,而不是我在 DomainController 属性上设置为默认值的 dc1。
深入查看错误记录,我发现异常 SerializedRemoteInvocationInfo 属性仅显示Alias
、PrimarySmtpAddress
和Identity
作为绑定参数。看起来没有任何东西被传入 for DomainController
。
我知道我可以重构并显式定义 DomainController 参数或使用脚本范围的哈希表和 splatting,但这需要进行很多更改,我真的很好奇为什么这种行为是这样的。