0
2

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.

Power ShellでActive Directoryを操作する

Posted at

Power Shell から Active Directoryを操作する方法

事前準備

以下のサイトから[Windows 10 用のリモート サーバー管理ツール]を落としてインストールが必要です。

https://www.microsoft.com/ja-jp/download/confirmation.aspx?id=45520

AD 接続

インストールが完了したら、管理者モードでPowerShellを起動します。

Import-Module ActiveDirectory
で、ActiveDirectoryモジュールをロードします。
準備が整いましたので、コマンドを実行してみましょう。

ActiveDirectoryに参加している1つまたは複数のコンピューターを取得するには

Get-ADComputer

を使用します。

Get-ADComputer -Filter *

と入力すると、現在ActiveDirectoryに参加しているすべてのコンピューターを取得することができます。

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?