Created
May 7, 2019 08:25
-
-
Save chryzsh/f814a3d6088c5bc8f1adfafce2eb3779 to your computer and use it in GitHub Desktop.
Change an expired password remotely without Interactive access as that user. The method above is actually based on NetUserChangePassword function.
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 characters
function Set-PasswordRemotely { | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory = $true)][string] $UserName, | |
[Parameter(Mandatory = $true)][string] $OldPassword, | |
[Parameter(Mandatory = $true)][string] $NewPassword, | |
[Parameter(Mandatory = $true)][alias('DC', 'Server', 'ComputerName')][string] $DomainController | |
) | |
$DllImport = @' | |
[DllImport("netapi32.dll", CharSet = CharSet.Unicode)] | |
public static extern bool NetUserChangePassword(string domain, string username, string oldpassword, string newpassword); | |
'@ | |
$NetApi32 = Add-Type -MemberDefinition $DllImport -Name 'NetApi32' -Namespace 'Win32' -PassThru | |
if ($result = $NetApi32::NetUserChangePassword($DomainController, $UserName, $OldPassword, $NewPassword)) { | |
Write-Output -InputObject 'Password change failed. Please try again.' | |
} else { | |
Write-Output -InputObject 'Password change succeeded.' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment