我有两个森林,我想对它们两个做一系列命令。我在两个林上都有完全相同的用户名和密码。 我正在使用
foreach ($forest in $forests) {
Connect-QADService -Service $forest -quiet
((all my commands go here!))
}
但我只能连接到我目前所在的域/林(但这并不让我感到惊讶......)
有没有办法可以在两个林中使用相同的用户名和密码?
答案 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参数。