How to Create a New Computer Object in Active Directory: 단계별 가이드.
The Active Directory Computer Object
Computer objects are used to uniquely identify and manage Windows-based domain clients within Active Directory. They are used to specify computer names, locations, properties, and access rights. Computer objects can be created in Windows Server 2016 Active Directory by using the Active Directory 사용자 및 컴퓨터 (ADUC) 콘솔. ADUC is a Microsoft Management Console (MMC) snap-in that allows for centrally managing objects within Active Directory.
ADUC is installed by default on Windows Servers with the Active Directory 도메인 서비스 (ADDS) role enabled. 추가적으로, any Windows client can run ADUC by installing the Microsoft Remote Server Administration Tools (RSAT). RSAT is commonly installed on Windows clients for system administrators to perform job tasks.
Create Computer object with Active Directory Users and Computers console (ADUC)
1. 당신의 Active Directory – users & computers 콘솔 (from Domain Controller or Client PC, 예를 들어, 윈도우 10 with RSAT). Go to target “Organization Unit (by expanding your tree);
2. 마우스 오른쪽 버튼 를 클릭 Organization Unit or in the Organization Unit (on free space) 그리고 선택 새로운, after in list select 컴퓨터;
3. Next fill parameters:
“Computer name” – the name of the device in a domain (future device name). In accordance with your corporate politics about devices names;
“User or Group” – select, who join the device to the domain (credentials entered on the device when joining to the domain);
After fill parameters – press 좋아요;
4. Check completed steps;
Create the computer object with Dsadd.exe
The Dsadd.exe utility enables you to create computer objects from the command line, just as you created user objects earlier in this lesson. You can create a batch file of Ddsadd.exe commands to generate multiple objects in one process. The basic syntax for creating a computer object by using Dsadd.exe is as follows:
dsadd computer <ComputerDN>
그만큼 <ComputerDN> parameter specifies a distinguished name for the new computer object you want to create. The DNs use the same format as those in CSV files, as discussed earlier.
Create the computer object with Windows PowerShell
윈도우 파워셸 includes the New-ADComputer cmdlet, which you can use to create computer objects with the following basic syntax. This cmdlet creates computer objects, but it does not join them to a domain.
New-ADComputer -Name <computer name> -Path <distinguished name>