使用相同的凭据连接到另一个AD林

时间:2011-12-29 20:42:37

标签: windows powershell active-directory credentials

我有两个森林,我想对它们两个做一系列命令。我在两个林上都有完全相同的用户名和密码。 我正在使用

foreach ($forest in $forests) {
Connect-QADService -Service $forest -quiet
((all my commands go here!))
}

但我只能连接到我目前所在的域/林(但这并不让我感到惊讶......)

有没有办法可以在两个林中使用相同的用户名和密码?

1 个答案:

答案 0 :(得分:0)

为每个林创建单独的连接,并将其用作其他QAD cmdlet上可用的Connection参数的值。

PS> $pw = Read-Host "Enter password" -AsSecureString
PS> $forest1 = Connect-QADService -Service 'dc1.company1.com' -ConnectionAccount 'company1\administrator' -ConnectionPassword $pw
PS> $forest2 = Connect-QADService -Service 'dc2.company2.com' -ConnectionAccount 'company2\administrator' -ConnectionPassword $pw

PS> Get-QADUser -Connection $forest1

p.s没有-quiet参数。