はじめに
ワークグループ環境で指定したアカウントのパスワードを変更します。
環境
OS:WindowsServer2016
.Net Framework:4.7
PowerShellのバージョン:5.1.17763.1007
パスワードを変更する
TestUser1のパスワードをTestPassword001に変更します。
$HostName = "localhost"
$UserName = "TestUser1"
$Pass = "TestPassword001"
[ADSI]$UpdateUser = "WinNT://$HostName/$UserName,User"
$UpdateUser.SetPassword($Pass)
$UpdateUser.SetInfo()