-
-
Save drakevonduck/a2c3e699ee0b1c8f36b63d81a366f2d5 to your computer and use it in GitHub Desktop.
Revisions
-
Purp1eW0lf created this gist
Feb 15, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ $user = "erochester" ; $newPass = "[New-Password-Please]"; #Change password twice. #First can be junk password, second time can be real new password Set-ADAccountPassword -Identity $user -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "6;wB3yj9cI8X" -Force) -verbose Set-ADAccountPassword -Identity $user -Reset -NewPassword (ConvertTo-SecureString -AsPlainText "$newPass" -Force) -verbose #If the machine is not connected to AD, or account is a local one use this instead net user erochester "[New-Password-Please]"