Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

CreateProcessWithTokenW (Structures)
 
.
Summary
TODO - a short description

C# Definition:

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

public static extern bool CreateProcessWithTokenW(IntPtr hToken, LogonFlags dwLogonFlags,

    string lpApplicationName, string lpCommandLine, CreationFlags dwCreationFlags,
    IntPtr lpEnvironment, string lpCurrentDirectory, [In] ref STARTUPINFO lpStartupInfo,
    out PROCESS_INFORMATION lpProcessInformation);

VB Definition:

TODO

User-Defined Field Types:

    public enum LogonFlags
    {
    /// <summary>
    /// Log on, then load the user's profile in the HKEY_USERS registry key. The function
    /// returns after the profile has been loaded. Loading the profile can be time-consuming,
    /// so it is best to use this value only if you must access the information in the
    /// HKEY_CURRENT_USER registry key.
    /// NOTE: Windows Server 2003: The profile is unloaded after the new process has been
    /// terminated, regardless of whether it has created child processes.
    /// </summary>
    /// <remarks>See LOGON_WITH_PROFILE</remarks>
    WithProfile = 1,
    /// <summary>
    /// Log on, but use the specified credentials on the network only. The new process uses the
    /// same token as the caller, but the system creates a new logon session within LSA, and
    /// the process uses the specified credentials as the default credentials.
    /// This value can be used to create a process that uses a different set of credentials
    /// locally than it does remotely. This is useful in inter-domain scenarios where there is
    /// no trust relationship.
    /// The system does not validate the specified credentials. Therefore, the process can start,
    /// but it may not have access to network resources.
    /// </summary>
    /// <remarks>See LOGON_NETCREDENTIALS_ONLY</remarks>
    NetCredentialsOnly
    }

Notes:

None.

Documentation

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions