Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than netapi32, prefix the name with the module name and a period.
<DllImport("netapi32.dll", CallingConvention:=CallingConvention.StdCall, CharSet:=CharSet.Unicode)> _
Public Shared Function NetUserChangePassword( _
<MarshalAs(UnmanagedType.LPWStr)> ByVal Domain As String, _
<MarshalAs(UnmanagedType.LPWStr)> ByVal User As String, _
<MarshalAs(UnmanagedType.LPWStr)> ByVal OldPass As String, _
<MarshalAs(UnmanagedType.LPWStr)> ByVal NewPass As String) As Integer
End Function
<MarshalAs(UnmanagedType.LPWStr)> ByVal Domain As String, _
<MarshalAs(UnmanagedType.LPWStr)> ByVal User As String, _
<MarshalAs(UnmanagedType.LPWStr)> ByVal OldPass As String, _
<MarshalAs(UnmanagedType.LPWStr)> ByVal NewPass As String) As Integer
End Function
User-Defined Types:
None.
Alternative Managed API:
Do you know one? Please contribute it!
Notes:
None.
Tips & Tricks:
To change the password of the current user (or currently impersonated user), pass null for the first two args.
Sample Code:
VB.NET
139: Dim sPDCName, sUserName, sOldPW, sNewPW As String
Provide a user account and its existing password, and this API allows you to choose a new password for the account.
10/30/2007 9:12:34 AM - chris harnetty-199.67.203.138
Click to read this page
4/6/2008 7:23:14 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).