[DllImportAttribute("coredll", EntryPoint = "SetPassword")]
[return: MarshalAsAttribute(UnmanagedType.Bool)]
public static extern bool SetPassword([MarshalAsAttribute(UnmanagedType.LPWStr)] StringBuilder lpszOldPassword, [MarshalAsAttribute(UnmanagedType.LPWStr)] StringBuilder lpszNewPassword);
<DllImportAttribute("coredll", EntryPoint := "SetPassword")> _
Public Shared Function SetPassword(<MarshalAsAttribute(UnmanagedType.LPWStr)> lpszOldPassword As StringBuilder, <MarshalAsAttribute(UnmanagedType.LPWStr)> lpszNewPassword As StringBuilder) As<System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.Bool)> Boolean
None.
Do you know one? Please contribute it!
For a system starting with no password, pass null in for the lpszOldPassword parameter.
Please add some!
Please add some!