操作AD内用户,powershell半自动化执行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了操作AD内用户,powershell半自动化执行相关的知识,希望对你有一定的参考价值。

最近公司离职人员有的频繁,所以写了powershell来进行半自动化执行。后期空了再优化下,powershell定时读数据库字段,自动执行

废话不多说了,看代码,注释是英文我就不改了

##########################
# Author:rp722
#
# 
##########################

#$user is the user login ID xxx
$user="xxx"

#backup user‘s gourp name to txt file 
Get-ADPrincipalGroupMembership $user | Select-Object Name >C:Script$user.txt

#get user‘s  groups DN name
$groups=(get-aduser $user -properties memberof).memberof

#remove user from each group
foreach($gp in $groups)
{
   remove-adgroupmember -Identity $gp -Members $user -Confirm:$false
}

#set user Description
get-aduser $user|set-aduser -Description "User has left company"

#Move user
get-aduser -Identity $user|Move-ADObject -TargetPath "OU=Disabled,OU=Common,DC=domain,DC=net"

#Disable user
get-aduser -Identity $user|Disable-ADAccount

以上是关于操作AD内用户,powershell半自动化执行的主要内容,如果未能解决你的问题,请参考以下文章

Powershell - 从 AD 列表中获取用户信息

Powershell 修改Office365和AD账户

如何在 Powershell 中自动执行 Telnet 端口检查?

Powershell管理系列(三十三)PowerShell操作之查询AD账号对应的OU存放位置

AD用户属性对照表

PowerShell AD用户密码过期脚本更新版