用Powershell脚本从部门中删除用户遇到困难

发布于 2025-01-19 20:06:56 字数 252 浏览 0 评论 0原文

我有一个在部门中的用户,我可以用以下

    $UserDepartment = Get-ADUser $UserName -Property Department | Select-Object Department
    Write-Host $UserDepartment

返回的行拉部门: @{department = sales}

我需要一种方法,在不删除用户的同时将用户带出部门,并且不确定如何处理

I have a user that is in a department that I can pull the department with the following line

    $UserDepartment = Get-ADUser $UserName -Property Department | Select-Object Department
    Write-Host $UserDepartment

which returns:
@{Department=SALES}

I need a way to take the user out of the department while not deleting the user and wasn't sure how to go about it

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

楠木可依 2025-01-26 20:06:56

如果您想清除用户的属性,您应该使用-Clear 参数。

请参阅参数此 cmdlet 的 部分

Set-ADUser $user -Clear Department

If you want to clear a user's attribute you should use the -Clear parameter.

See the Parameters section for this cmdlet.

Set-ADUser $user -Clear Department
蓝天 2025-01-26 20:06:56

您可以做一些事情,

Get-ADUser $UserName | Set-ADUser -Department “” 

例如要清除部门的属性

,可以查看 powerShell文档

You could do something like

Get-ADUser $UserName | Set-ADUser -Department “” 

If you wish to mearly clear the department property

You can check out the powershell documentation for it here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文