码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-12-13 18:54:55      阅读:325      评论:0      收藏:0      [点我收藏+]

标签: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

技术分享

步骤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 

}

技术分享





本文出自 “周平的微软技术交流平台” 博客,请务必保留此出处http://yuntcloud.blog.51cto.com/1173839/1722521

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

标签:powershell管理系列(二十九)powershell操作之移动账户到指定ou

原文地址:http://yuntcloud.blog.51cto.com/1173839/1722521

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!