1
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 1 year has passed since last update.

コンピュータ名の変更とドメイン参加(自動化)

Last updated at Posted at 2022-06-09

コンサルやITベンダでは考えてもみませんでしたが、
事業会社のようにPCの設定が多いと大変ですよね。なるべく自動化したいものです。
ということで、まずコンピュータ名の変更とドメイン参加。
コンピュータ名にハイフンがある場合、下記のrename nameのようにダブルクォートで囲まないと「Verbスイッチが無効です」となりうまく入らないので注意。
ドメイン名や他情報は固定で入れる事が多いだろうから、対話型にはしていません。

@echo off
rem 管理者権限で実行要
rem ユーザ入力
set /p INP="コンピュータ名を入力して下さい >"
echo コンピュータ名を%INP%に変更しています
rem PC名変更
wmic computersystem where name="%computername%" call rename name="%INP%"

pause

rem ドメインへ参加する
wmic ComputerSystem WHERE "name='%computername%'" CALL JoinDomainOrWorkgroup Name="ドメイン名" Username="ユーザ名" Password="パスワード" FJoinOptions=3

pause
exit

echo パソコンを再起動します。	
pause

rem 1秒後に再起動
shutdown -t 1 -r
exit
1
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
1
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?