AD脚本 - 账户管理是指用于管理Active Directory(AD)账户的脚本。下面是一个示例解决方案,其中包含一些常见的AD账户管理任务的代码示例:
New-ADUser -Name "John Doe" -SamAccountName "jdoe" -UserPrincipalName "jdoe@domain.com" -Enabled $true -PasswordNeverExpires $true -AccountPassword (ConvertTo-SecureString -AsPlainText "P@ssw0rd" -Force) -PassThru
Disable-ADAccount -Identity "jdoe"
Enable-ADAccount -Identity "jdoe"
Set-ADAccountPassword -Identity "jdoe" -NewPassword (ConvertTo-SecureString -AsPlainText "NewP@ssw0rd" -Force) -Reset
Lock-ADAccount -Identity "jdoe"
Unlock-ADAccount -Identity "jdoe"
Get-ADUser -Identity "jdoe" | Move-ADObject -TargetPath "OU=NewOU,DC=domain,DC=com"
Remove-ADUser -Identity "jdoe" -Confirm:$false
这些示例只是AD账户管理的一小部分功能,您可以根据具体需求调整代码。请注意,在运行脚本之前,确保已加载AD PowerShell模块,并具有适当的权限来执行所需的操作。
上一篇:ad将工程保存数据库
下一篇:AD计算机显示未登录用户