0

我正在尝试使用 $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 属性仅显示AliasPrimarySmtpAddressIdentity作为绑定参数。看起来没有任何东西被传入 for DomainController

我知道我可以重构并显式定义 DomainController 参数或使用脚本范围的哈希表和 splatting,但这需要进行很多更改,我真的很好奇为什么这种行为是这样的。

4

1 回答 1

0

当您对这些 Exchange 会话使用隐式远程处理时,Exchange cmdlet(实际上它们是代理函数)将被传递到远程会话以供执行,然后将结果传递回您的本地会话。远程会话中不存在该哈希表。

于 2013-01-04T18:19:30.743 回答