CLI ADLDS

ユーザグループ追加などの作業で必要となる。

以下はコマンド例。

New-ADUser -name “test01” -Displayname “test01” -server lds01:389 -Path “OU=Users,DC=codelogue,DC=com”

Add-ADGroupMember -identity “CN=g_sales,OU=Groups,DC=codelogue,DC=com” -member “CN=test01,OU=Users,DC=codelogue,DC=com” -partition “DC=codelogue,DC=com” -server lds01

powershellをコマンドプロンプトから呼び出してバッチ処理する

  1. ファイルを準備する
C:¥Users¥Administrator¥Desktop¥Test.ps1

  Import-Module ActiveDirectory

  New-ADUser -name “test01” -Displayname “test01” -server lds01:389 -Path “OU=Users,DC=codelogue,DC=com”

  Add-ADGroupMember -identity “CN=g_sales,OU=Groups,DC=codelogue,DC=com” -member “CN=test01,OU=Users,DC=codelogue,DC=com” -partition “DC=codelogue,DC=com” -server lds01
  1. コマンドプロンプトを開く
C:¥Users¥Administrator¥Desktop>

  # powershell Set-ExecutionPolicy RemoteSigned

  # powershell ./Test.ps1
comments powered by Disqus