Windows Server 2016-Powershell加域并指定OU (二)
程序员文章站
2024-01-16 16:02:29
上章节提到通过netdom join加域并指定对应OU,本章再补充一例现成powershell加域并指定对应OU的脚本,便于大家工作中使用。$PlainPassword = P@ssw0rd$UserName="Administrator"$DomainName="azureyun.com"$Dom... ......
上章节提到通过netdom join加域并指定对应ou,本章再补充一例现成powershell加域并指定对应ou的脚本,便于大家工作中使用。
$plainpassword = p@ssw0rd $username="administrator" $domainname="azureyun.com" $domainusername="$username@"+"$domainname" $securepassword = $plainpassword | convertto-securestring -asplaintext -force $domaincredentials = new-object system.management.automation.pscredential -argumentlist $domainusername,$securepassword add-computer –newname 新计算机名 -domainname vlabc.com -oupath "ou=syncall,dc=azureyun,dc=com" -confirm:$false -credential $credential –restart
注解:红色字体,新计算机名位置属于您要更改的新计算机名即可。
推荐阅读
-
Windows Server 2016-Powershell加域并指定OU (二)
-
Windows Server 2016-Powershell之客户端加域
-
Windows Server 2016-Netdom Join之客户端加域(二)
-
Windows Server 2016-Netdom Join加域并指定OU (一)
-
Windows Server 2016-Powershell之客户端加域
-
Windows Server 2016-Netdom Join之客户端加域(二)
-
Windows Server 2016-Netdom Join加域并指定OU (一)
-
Windows Server 2016-Powershell加域并指定OU (二)