LogonUserEx (advapi32)
Last changed: Andreas Andreou-213.207.151.22

.
Summary
TODO - a short description

C# Signature:

[DllImport("advapi32.dll", SetLastError=true)]

public static extern bool LogonUserEx(

  string lpszUsername,
  string lpszDomain,
  string lpszPassword,
  int dwLogonType,
  int dwLogonProvider,
  out IntPtr phToken,
  IntPtr ppLogonSid, // nullable
  IntPtr ppProfileBuffer, // nullable
  IntPtr pdwProfileLength, // nullable
  IntPtr pQuotaLimits // nullable

);

VB Signature:

Declare Function LogonUserEx Lib "advapi32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

This is new in Server2003 and XP.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
LogonUserEx on MSDN