| c# Programming Glossary: lpszdomainRun Powershell-Script from C# Application http://stackoverflow.com/questions/11120452/run-powershell-script-from-c-sharp-application  static extern int LogonUser string lpszUserName string lpszDomain string lpszPassword int dwLogonType int dwLogonProvider ref.. 
 How do you impersonate an Active Directory user in Powershell? http://stackoverflow.com/questions/11806/how-do-you-impersonate-an-active-directory-user-in-powershell  static extern int LogonUser string lpszUserName string lpszDomain string lpszPassword int dwLogonType int dwLogonProvider ref.. 
 C#: How to logon to a share when using DirectoryInfo http://stackoverflow.com/questions/1232120/c-how-to-logon-to-a-share-when-using-directoryinfo  static extern int LogonUser string lpszUsername string lpszDomain string lpszPassword int dwLogonType int dwLogonProvider ref.. static extern int LogonUserA string lpszUsername string lpszDomain string lpszPassword int dwLogonType int dwLogonProvider ref.. 
 How to change folders permission to the current user by using admin credentials? http://stackoverflow.com/questions/18580419/how-to-change-folders-permission-to-the-current-user-by-using-admin-credentials  name lpszUserName Name of the LPSZ user. param param name lpszDomain The LPSZ domain. param param name lpszPassword The LPSZ password... static extern int LogonUser String lpszUserName  String lpszDomain  String lpszPassword  int dwLogOnType  int dwLogOnProvider .. 
 How do I pass credentials to a machine so I can use Microsoft.Win32.RegistryKey.OpenRemoteBaseKey() on it? http://stackoverflow.com/questions/2541504/how-do-i-pass-credentials-to-a-machine-so-i-can-use-microsoft-win32-registrykey  static extern bool LogonUser string lpszUsername string lpszDomain string lpszPassword int dwLogonType int dwLogonProvider ref.. 
 Using Process.Start() to start a process as a different user from within a Windows Service http://stackoverflow.com/questions/362419/using-process-start-to-start-a-process-as-a-different-user-from-within-a-windo  static extern bool LogonUser string lpszUsername string lpszDomain string lpszPassword int dwLogonType int dwLogonProvider out.. 
 How to Process Start with Impersonated Domain User http://stackoverflow.com/questions/4624113/how-to-process-start-with-impersonated-domain-user  static extern bool LogonUser String lpszUsername String lpszDomain String lpszPassword int dwLogonType int dwLogonProvider ref.. 
 Copy file to remote computer using remote admin credentials http://stackoverflow.com/questions/766033/copy-file-to-remote-computer-using-remote-admin-credentials  Function LogonUser ByVal lpszUsername As String ByVal lpszDomain As String _ ByVal lpszPassword As String ByVal dwLogonType As.. 
 |