PowerSHELL.1.加域脚本
#定义变量,域名,域管理员,域用户,加域计算机名
$domain = “www.shfvip.top”
$domainadmin = “Administrator”
$aduser=”shfvip\Useranme”
$computername=”shfvip0088″
#加入网域
Add-Computer -NewName $computername -DomainName $domain -PassThru -Verbose
#域用户加入本地计算机管理员组
Add-LocalGroupMember -Group “Administrators” -Member $aduser -Verbose
#重启计算机
Restart-Computer -Force