Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

감사합니다.

Powershell : 도메인 가입하기 본문

Microsoft/Powershell

Powershell : 도메인 가입하기

springjunny 2018. 3. 22. 16:08

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