Powershell管理系列(二十九)PowerShell操作之移动账户到指定OU

-----提供AD\Exchange\Lync\Sharepoint\CRM\SC\O365等微软产品实施及外包,QQ:185426445.电话18666943750

步骤1、用户需求如下:人员离职后,将AD账户禁用并挪动到指定的OU

get-aduser -SearchBase "ou=test,dc=yuntcloud,dc=com" -filter *|Move-ADObject -TargetPath "ou=dimission,dc=yuntcloud,dc=com"

get-aduser -SearchBase "ou=dimission,dc=yuntcloud,dc=com" -filter *|disable-ADAccount

wKiom1ZtIZfB7p-oAAC90nVRgf8856.png

步骤2、如需进一步删除账户,我们执行如下的命令

get-aduser -SearchBase "ou=dimission,dc=yuntcloud,dc=com" -filter *|Remove-ADObject -Confirm:$false

步骤3、如根据csv表里的信息挪动到指定OU,并禁用,操作如下:

import-csv -path c:\userinfo.csv|% `

{

$a=get-aduser -identity $_.samaccountname |% {$_.DistinguishedName}

Move-ADObject $a -TargetPath "ou=dimission,dc=yuntcloud,dc=com"

get-aduser -identity $_.samaccountname|Disable-ADAccount 

}

wKiom1ZtL7PQ12PrAAC_bCRO9KU272.png





你可能感兴趣的:(Powershell管理系列(二十九)PowerShell操作之移动账户到指定OU)