#author("2022-02-07T23:44:24+00:00","default:admin","admin")
#author("2022-02-07T23:45:46+00:00","default:admin","admin")
*ユーザー作成 [#g515053b]
-[[PowerShellでローカルユーザー(アカウント)やグループの追加・変更・削除を行う方法:https://www.haruru29.net/blog/how-to-configure-local-users-using-powershell/]]
-[[PowerShellでローカルアカウントの操作:https://www.vwnet.jp/Windows/PowerShell/MaintenanceLocalAccunt.htm]]
-[[[powershell]ユーザ追加スクリプト:https://doppo1.net/article/add-user/]]
-[[【PowerShell】Windowsのローカルユーザー、グループを大量に作成する:https://qiita.com/hara_power/items/ab34371b840f7a0e7a12]]
-[[PowerShellでローカルユーザーを作成する:https://qiita.com/maitake9116/items/fec47ce3f86751f8e324]]

-[[PowerShell でユーザー名と異なる userフォルダを自由に設定する:https://tech.guitarrapc.com/entry/2013/10/27/061208]]

-[[Home directory creation for local user accounts using powershell:https://social.technet.microsoft.com/Forums/sharepoint/en-US/d73ad70e-66e2-45aa-9b1c-2015b913a7ac/home-directory-creation-for-local-user-accounts-using-powershell?forum=winserverpowershell]]
-[[Create Local User with Custom User Folder in Powershell:https://stackoverflow.com/questions/16444710/create-local-user-with-custom-user-folder-in-powershell]]

***パスワード付きのユーザーを追加 [#e8e2be76]
-「password」というパスワード文字列を設定した新規ユーザー「test」を追加
 New-LocalUser -Name test -Password (ConvertTo-SecureString "password" -AsPlainText -Force)

***「パスワードを無期限にする」を有効状態(チェックあり)に変更 [#kf024aea]
 Set-LocalUser -Name test -PasswordNeverExpires $true

***グループにユーザーを追加 [#v60fa016]
-「test-group」グループに「test」ユーザーを追加
 Add-LocalGroupMember -Group test-group -Member test

***ユーザーの各種情報を表示 [#x41c0bdf]
 Get-LocalUser -Name [アカウント名] | Format-List -Property *

***ユーザーのホームディレクトリを自動生成した上に test フォルダを作成 [#y4dedb06]
 $userHomeDir = "C:\Users\$userName"
 $securePassword = ConvertTo-SecureString [パスワード] -AsPlainText -Force
 $cred = New-Object System.Management.Automation.PSCredential -ArgumentList $userName,$securePassword
 Start-Process -FilePath cmd.exe -ArgumentList "/c mkdir $userHomeDir\test" -WindowStyle Hidden -Credential $cred -ErrorAction SilentlyContinue

*ユーザープロファイル [#c2ba81eb]
-[[PowerShellでCIM cmdletを用いて対象PCのユーザーや所属するユーザーグループを調べる:https://tech.guitarrapc.com/entry/2013/02/08/210233]]
-[[PowerShell ユーザプロファイルの取得:https://hutoncallsme.azurewebsites.net/post/powershell6]]

*ログイン [#f1a9e2ec]
-[[Can we login & logout from powershell ?:https://social.technet.microsoft.com/Forums/ie/en-US/66d5a77f-1107-4540-9ba3-b3e901813a53/can-we-login-amp-logout-from-powershell-?forum=winserverpowershell]]
-[[New-PSSession does not work locally:https://stackoverflow.com/questions/30439760/new-pssession-does-not-work-locally]]

*トラブルシューティング [#e608be36]
**初回ログイン時にホームディレクトリが作成される [#ifd141ed]

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS