Windows10 October 2018 Update 이상에서 Active Directory 도구를 사용할 수 있도록 하는 방법
8135 단어 ActiveDirectoryWindows10
Active Directory를 사용할 수 있도록 하려면
RSAT(Remote Server Administration Tools)라는 도구를 설치해야 합니다.
변경점
기존과 같이 GUI 형식 설치 프로그램을 다운로드한 다음 GUI 형식 설치 프로그램을 실행할 필요가 없습니다.
구체적으로는
Windows10 October 2018 Update
보다, 커멘드 라인을 사용해 온라인 인스톨이 가능하게 되었습니다. 이것은 MacOS 및 Linux와 유사한 설치 방법입니다.RSAT 설치 방법
사용 가능한 RSAT 도구를 온라인으로 검색합니다.
powershell
S C:\WINDOWS\system32> Get-WindowsCapability -Online -Name "Rsat*" | Select Name,State
powershell
Name State
---- -----
Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 NotPresent
Rsat.BitLocker.Recovery.Tools~~~~0.0.1.0 NotPresent
Rsat.CertificateServices.Tools~~~~0.0.1.0 NotPresent
Rsat.DHCP.Tools~~~~0.0.1.0 NotPresent
Rsat.Dns.Tools~~~~0.0.1.0 NotPresent
Rsat.FailoverCluster.Management.Tools~~~~0.0.1.0 NotPresent
Rsat.FileServices.Tools~~~~0.0.1.0 NotPresent
Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0 NotPresent
Rsat.IPAM.Client.Tools~~~~0.0.1.0 NotPresent
Rsat.LLDP.Tools~~~~0.0.1.0 NotPresent
Rsat.NetworkController.Tools~~~~0.0.1.0 NotPresent
Rsat.NetworkLoadBalancing.Tools~~~~0.0.1.0 NotPresent
Rsat.RemoteAccess.Management.Tools~~~~0.0.1.0 NotPresent
Rsat.RemoteDesktop.Services.Tools~~~~0.0.1.0 NotPresent
Rsat.ServerManager.Tools~~~~0.0.1.0 NotPresent
Rsat.Shielded.VM.Tools~~~~0.0.1.0 NotPresent
Rsat.StorageMigrationService.Management.Tools~~~~0.0.1.0 NotPresent
Rsat.StorageReplica.Tools~~~~0.0.1.0 NotPresent
Rsat.SystemInsights.Management.Tools~~~~0.0.1.0 NotPresent
Rsat.VolumeActivation.Tools~~~~0.0.1.0 NotPresent
Rsat.WSUS.Tools~~~~0.0.1.0 NotPresent
Active Directory 도구를 온라인으로 설치합니다.
Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
를 온라인으로 설치해야 합니다. powershell
PS C:\WINDOWS\system32> Add-Windows Capability -online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
powershell
Path :
Online : True
Active Directory 도구를 사용할 수 있는지 확인
powershell
PS C:\Users\AcountName> Get-ADGroupMember -Identity GG-ADGroupe-Name | Select-Object {$_.name}
powershell
$_.name
-------
ADAcount1 アカウント名1
ADAcount2 アカウント名2
ADAcount3 アカウント名3
ADAcount4 アカウント名4
ADAcount5 アカウント名5
설치가 성공하면 Active Directory 명령을 실행하여 결과를 표시합니다.
* 시작 메뉴를 확인합니다.
Windows 管理ツール
아래에 Active Directory ユーザとコンピュータ
가 표시되어 사용할 수 있습니다.Reference
이 문제에 관하여(Windows10 October 2018 Update 이상에서 Active Directory 도구를 사용할 수 있도록 하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/teruroom/items/9b8733efb6836589ed9b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)