감사합니다.
Powershell : 도메인 가입하기 본문
Powershell을 사용하여 도메인에 가입하는 여러 가지 방법을 정리.
1. 기본 명령어
Add-Computer -DomainName "contoso.com"
Restart-Computer
2. 계정 정보를 사용하여 자동화하기
$credential = New-Object System.Management.Automation.PsCredential("contoso\domainjoinaccount", (ConvertTo-SecureString "password" -AsPlainText -Force))
Add-Computer -DomainName "contoso.com" -Credential $credential
Restart-Computer
3. 특정 OU를 지정하기
$credential = New-Object System.Management.Automation.PsCredential("contoso\domainjoinaccount", (ConvertTo-SecureString "password" -AsPlainText -Force))
Add-Computer -DomainName "contoso.com" -Credential $credential -OUPath "OU=Servers,,DC=contoso,DC=com"
Restart-Computer
'Microsoft > Powershell' 카테고리의 다른 글
Windows Update 자동화하기 - Part 4 (0) | 2018.09.29 |
---|---|
Windows Update 자동화하기 - Part 3 (0) | 2018.09.29 |
Windows Update 자동화하기 - Part 2 (1) | 2018.09.29 |
Windows Update 자동화하기 - Part 1 (0) | 2018.09.29 |
Powershell : Invoke-Command 정리(Powershell Ver 6) (0) | 2018.01.12 |
Powershell - WSUS Cleanup powershell (0) | 2018.01.02 |
Powershell - 스케줄러에 파워쉘 스크립트 등록하기 - 변수 사용 (0) | 2017.12.07 |
Powershell - 스케줄러에 파워쉘 스크립트 등록하기 (0) | 2017.12.01 |