시스템 사용;
System.Collections.Generic을 사용합니다.
System.Text 사용;
System.Security.Principal 사용;
System.Runtime.InteropServices 사용;
공개 클래스 가장
{
#지역 模拟
개인 WindowsImpersonationContext impersonationContext;
개인 const int LOGON32_LOGON_INTERACTIVE = 2;
개인 const int LOGON32_PROVIDER_DEFAULT = 0;
[DllImport("advapi32.dll", CharSet = CharSet.Auto)]
개인 정적 extern int LogonUser(문자열 lpszUserName, 문자열 lpszDomain, 문자열 lpszPassword,
int dwLogonType, int dwLogonProvider, ref IntPtr phToken);
[DllImport("advapi32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto, SetLastError = true)]
private extern static int DuplicateToken(IntPtr hToken, int impersonationLevel, ref IntPtr hNewToken);
[DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
개인 정적 extern bool RevertToSelf();
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
private extern static bool CloseHandle(IntPtr 핸들);
/// <요약>
/// 模拟一个용户
/// </summary>
/// <param name="userName">사용 이름</param>
/// <param name="password">암호</param>
/// <param name="domain">이름/计算机이름</param>
/// <returns>true 模拟成功,false 模拟失败</returns>
public boimpersonateUser(문자열 userName, 문자열 비밀번호, 문자열 도메인)
{
WindowsID wi;
IntPtr 토큰 = IntPtr.Zero;
IntPtr tokenDuplicate = IntPtr.Zero;
if (RevertToSelf())
{
if (LogonUser(사용자 이름, 도메인, 비밀번호,
LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, 참조 토큰) != 0)
{
if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
{
wi = new WindowsIdentity(tokenDuplicate);
impersonationContext = wi.Impersonate();
if (impersonationContext != null)
{
CloseHandle(tokenDuplicate);
CloseHandle(토큰);
사실을 반환;
}
또 다른
{
if (tokenDuplicate != IntPtr.Zero) CloseHandle(tokenDuplicate);
if (token != IntPtr.Zero) CloseHandle(token);
거짓을 반환;
}
}
또 다른
{
if (token != IntPtr.Zero) CloseHandle(token);
거짓을 반환;
}
}
또 다른
거짓을 반환;
}
또 다른
거짓을 반환;
}
/// <요약>
/// 取消模拟
/// </summary>
공개 무효 UndoImpersonation()
{
impersonationContext.Undo();
}
#endregion
#region 关机
[StructLayout(LayoutKind.Sequential, 팩 = 1)]
개인 구조체 TokPriv1Luid
{
공개 정수 개수;
공개 긴 Luid;
공개 int 속성;
}
[DllImport("kernel32.dll", ExactSpelling = true)]
개인 정적 extern IntPtr GetCurrentThread();
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
private static extern bool OpenThreadToken(IntPtr h, int acc, bool openAsSelf, ref IntPtr phtok);
[DllImport("advapi32.dll", SetLastError = true)]
private static extern bool LookupPrivilegeValue(문자열 호스트, 문자열 이름, ref long pluid);
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
private static extern bool adjustTokenPrivileges(IntPtr htok, bool disall, ref TokPriv1Luid newst,
int len, IntPtr prev, IntPtr relen);
[DllImport("user32.dll", ExactSpelling = true, SetLastError = true)]
private static extern bool ExitWindowsEx(int flg, int rea);
[DllImport("advapi32.dll")]
private static extern bool InitiateSystemShutdown(string Machinename, string Message,
긴 시간 초과, bool ForceAppsClosed, bool RebootAfterShutdown);
개인 const int SE_PRIVILEGE_ENABLED = 0x00000002;
개인 const int TOKEN_QUERY = 0x00000008;
개인 const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
private const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";
개인 const int EWX_LOGOFF = 0x00000000;
개인 const int EWX_SHUTDOWN = 0x00000001;
개인 const int EWX_REBOOT = 0x00000002;
개인 const int EWX_FORCE = 0x00000004;
개인 const int EWX_POWEROFF = 0x00000008;
개인 const int EWX_FORCEIFHUNG = 0x00000010;
/// <요약>
/// 关机
/// </summary>
/// <반환></반환>
공공 부울 종료()
{
부울 결과;
TokPriv1Luid tp;
//주의: GetCurrentThread에 대해 설명하지 않음: GetCurrentProcess
IntPtr hproc = GetCurrentThread();
IntPtr htok = IntPtr.Zero;
// 주의: 사용 가능한 OpenThreadToken(打开线程令牌), 而不是OpenProcessToken(打开进程令牌)
결과 = OpenThreadToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY,
사실, 참조 htok);
tp.Count = 1;
tp.루이드 = 0;
tp.Attr = SE_PRIVILEGE_ENABLED;
결과 = LookupPrivilegeValue(null, SE_SHUTDOWN_NAME, ref tp.Luid);
결과 = adjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
결과 = InitiateSystemShutdown("", "", 60, true, false);
결과 반환;
}
#endregion
}
http://www.cnblogs.com/anjou/archive/2006/11/30/577279.html