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 5 years have passed since last update.

Windows Serverでcmdからユーザ追加

Posted at

Windowsサーバでのユーザ追加

個人の忘備録です。
サーバにユーザを一括で追加する必要があったので、
パーツとしてのメモになります。

下記、test_~は必要に応じて書き換え。

情報確認

net user test_user1

上記コマンドの入力結果例

ユーザー名                           test_user1
フル ネーム                          テストユーザ
コメント                             コメント
ユーザーのコメント
国/地域番号                          000 (システム既定)
アカウント有効                       Yes
アカウントの期限                     2020/04/01 0:00:00

最終パスワード変更日時               2019/01/01 00:00:00
パスワード有効期間                   2019/04/01 00:00:00
パスワード次回変更可能日時           2019/04/01 00:00:00
パスワードあり                       Yes
ユーザーによるパスワード変更可能     Yes

ログオン可能なワークステーション     すべて
ログオン スクリプト
ユーザー プロファイル
ホーム ディレクトリ
最終ログオン日時                     なし

ログオン可能時間                     すべて

所属しているローカル グループ        *Remote Desktop Users
                                     *Users
所属しているグローバル グループ      *なし
コマンドは正常に終了しました。

追加

パスワードと一緒にユーザ追加して
フルネームとコメントも登録して
リモートデスクトップ接続を可能にする場合

net user test_user1 test_pass1 /ADD
net user test_user1 /fullname:"テストユーザ"
net user test_user1 /comment:"コメント"
net localgroup "Remote Desktop Users" test_user1 /ADD

削除

net user test_user1 /DELETE
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?