我写了一个小循环来为每个用户添加描述
ForEach ($usr in $users)
{
get-aduser $usr -Properties Description | Set-ADUser $usr -Description "$($_.Description) Need to be moved to OU Disabled"
但是我遇到了错误
“ get-aduser:对象引用未设置为对象的实例。”
你能告诉我为什么吗?我应该怎么做才能将说明附加到现有说明中?
变量$ users包含samaccount名称(来自csv文件的列表,如下所示)
SamAccountName,名字,姓氏
测试,测试,测试