0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windows10 October 2018 Update以降でActive Directoryツールを使えるようにする方法

Last updated at Posted at 2020-06-14

Active Directory を使えるようにするには

RSAT(Remote Server Administration Tools)というツールをインストールする必要があります。

変更点

従来のようにGUI形式のインストーラをダウンロードしてから、GUI形式のインストーラを実行する必要がなくなりました。

具体的には、Windows10 October 2018 Updateより、コマンドラインを使ってオンラインインストールが可能になりました。これは、MacOSやLinuxと同じようなインストール方法です。

RSATのインストール方法

利用できるRSATツールをオンライン検索します

  • Powershellを「管理者として実行」します
  • 以下のコマンドを入力します
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ツールをオンラインインストールします

  • 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

image.png

  • 「管理者として実行」したPowershellをいったん閉じます

Active Directoryツールが利用できるかを確認します

  • Active Directory を操作できる権限のあるユーザでWindowsにログインします
  • Powershellを起動します
  • ActiveDirectoryコマンドを入力します
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 ユーザとコンピュータが表示されて使えるようになります。
image.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?