PowerShell 技能连载 - 用 Out-GridView 启用 AD 用户

有些时候在 PowerShell 中只需要几行代码就可以创造出很有用的支持工具。以下是一个显示所有禁用的 AD 用户的例子。您可以选择一个(或按住 CTRL 键选择多个),然后点击 OK,这些用户将会被启用:

1
2
3
4
5
#requires -Version 3.0 -Modules ActiveDirectory
Search-ADAccount -AccountDisabled |
Out-GridView -Title 'Who should be enabled?' -OutputMode Multiple |
# remove -WhatIf to actually enable accounts
Enable-ADAccount -WhatIf

PowerShell 技能连载 - 用 Out-GridView 启用 AD 用户

http://blog.vichamp.com/2017/05/02/enable-ad-users-with-out-gridview/

作者

吴波

发布于

2017-05-02

更新于

2022-07-06

许可协议

评论