一直在写脚本:
foreach ($Username in (Import-Csv -Path "C:\Users\...\nope.csv")) {
set-aduser $Username.Username -remove @{Proxyaddresses="smtp:$Username.Username@domain.com"}
Write-Output "remove proxy"
set-aduser $Username.Username -replace @{userPrincipalName="$Username.Username@domain.com"}
Write-Output "replace principal"
set-aduser $Username.Username -add @{Proxyaddresses="smtp:$Username.Username@domain.com"}
Write-Output "add proxy"
}
代码运行但最终将这个垃圾 -> @{Username=###}.Username@domain.com 放在属性编辑器中。
任何帮助将不胜感激,现在正在尝试不同的方式,比如 8 小时。