时间:2023-01-31 08:00:01 | 来源:建站知识
时间:2023-01-31 08:00:01 来源:建站知识
PowerShellAdd-Computer [-ComputerName <String[]>] [-LocalCredential <PSCredential>] [-UnjoinDomainCredential <PSCredential>] -Credential <PSCredential> [-DomainName] <String> [-OUPath <String>] [-Server <String>] [-Unsecure] [-Options <JoinOptions>] [-Restart] [-PassThru] [-NewName <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
Add-Computer -DomainName Domain01 -Restart
Add-Computer -WorkgroupName WORKGROUP-A
Add-Computer -DomainName Domain01 -Server Domain01/DC01 -PassThru -Verbose
Add-Computer -DomainName Domain02 -OUPath "OU=testOU,DC=domain,DC=Domain,DC=com"
Add-Computer -ComputerName Server01 -LocalCredential Server01/Admin01 -DomainName Domain02 -Credential Domain02/Admin02 -Restart -Force
此命令将 Server01 计算机添加到 Domain02 域中。它使用 LocalCredential 参数指定有权连接到 Server01 计算机的用户帐户。它使用 Credential 参数指定有权将计算机加入到域中的用户帐户。它使用 Restart 参数在加入操作完成后重新启动计算机,并使用 Force 参数取消用户确认消息。Add-Computer -ComputerName Server01, Server02, localhost -DomainName Domain02 -LocalCredential Domain01/User01 -UnjoinDomainCredential Domain01/Admin01 -Credential Domain02/Admin01 -Restart
此命令将 Server01 和 Server02 计算机以及本地计算机从 Domain01 移至 Domain02。Add-Computer -ComputerName Server01 -DomainName Domain02 -NewName Server044 -Credential Domain02/Admin01 -Restart
此命令将 Server01 计算机移至 Domain02 并将计算机名称更改为 Server044。Add-Computer -ComputerName (Get-Content Servers.txt) -DomainName Domain02 -Credential Domain02/Admin02 -Options Win9xUpgrade -Restart
此命令将文件中列出的 Servers.txt 计算机添加到 Domain02 域。它使用 Options 参数来指定 Win9xUpgrade 选项。 Restart 参数将在加入操作完成后重新启动所有新添加的计算机。New-ADComputer -Name "Server02" -AccountPassword (ConvertTo-SecureString -String 'TempJoinPA$$' -AsPlainText -Force)# Then this command is run from `Server02` which is not yet domain-joined:$joinCred = New-Object pscredential -ArgumentList ([pscustomobject]@{ UserName = $null Password = (ConvertTo-SecureString -String 'TempJoinPA$$' -AsPlainText -Force)[0]})Add-Computer -Domain "Domain03" -Options UnsecuredJoin,PasswordPass -Credential $joinCred
此命令组合使用现有已加入域的计算机在域中创建一个具有预定义名称和临时加入密码的新计算机帐户。 然后,具有预定义名称的计算机仅使用计算机名称和临时联接密码加入域。 预定义的密码仅用于支持联接操作,并在计算机完成联接后作为正常计算机帐户过程的一部分进行替换。https://docs.microsoft.com/zh-cn/powershell/module/microsoft.powershell.management/add-computer?view=powershell-5.1&viewFallbackFrom=powershell-3.0
关键词:更改,命令,主机