编辑AD用户属性LastKnownParent

时间:2017-08-10 12:09:05

标签: powershell active-directory attributes

我目前面临this问题,解决方法应该是清除用户的LastKnownParent属性。我已经尝试了很多方法来做到这一点,但结果是每次都出现错误消息,例如:

$test = Get-ADUser t.est -Properties *
$test.LastKnownParent = "" # or $null
Set-ADUser -Instance $test
  

异常设置" LastKnownParent":"适配器无法设置属性的值" LastKnownParent"。"

Screenshot

你知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我无法回答为什么你的方法会失败。我所知道的是,这是我在AD用户PowerShell

中删除/清除属性的方法
Set-Aduser -Identity t.est -Clear LastKnownParent

由于LastKnownParent在Set-Aduser中没有自己的参数,我们可以$null我们需要使用-Clear

这当然是假设您有权进行这些编辑。