Powershell脚本在AD中添加计算机

时间:2019-10-23 03:34:23

标签: powershell

尝试使用Powershell在AD中添加计算机对象时,出现以下错误。

New-ADComputer -Name <Computer Name> -Path 'OU=Devices,DC=enterprise,DC=com' -Enabled $True

Error: New-ADComputer : A required attribute is missing

1 个答案:

答案 0 :(得分:0)

请参见New-ADComputer上的示例1。我猜不到参数-SamAccountName

New-ADComputer -Name "USER02-SRV2" -SamAccountName "USER02-SRV2" -Path "OU=ApplicationServers,OU=ComputerAccounts,OU=Managed,DC=USER02,DC=COM"