我有一个简单脚本的问题。我需要复制 OU 中所有用户的属性(STATE 到 CITY)。我找到了这个脚本,但是某处有错误。
有人可以帮我解决这个问题吗?
Get-ADUser -Filter * -SearchBase "MY OU" -Properties city, state |
ForEach-Object {
Set-ADObject -Identity $_.DistinguishedName ` -Replace @{city=$($_.state)}
}