using System; public class Impersonate private const int LOGON32_LOGON_INTERACTIVE = 2; [DllImport(“advapi32.dll”, CharSet = CharSet.Auto)] [DllImport(“advapi32.dll”, CharSet = System.Runtime.InteropServices.CharSet.Auto, SetLastError = true)] [DllImport(“advapi32.dll”, CharSet = CharSet.Auto, SetLastError = true)] [DllImport(“kernel32.dll”, CharSet = CharSet.Auto)] /// <summary> /// <summary> #region 关机 [DllImport(“kernel32.dll”, ExactSpelling = true)] [DllImport(“advapi32.dll”, ExactSpelling = true, SetLastError = true)] [DllImport(“advapi32.dll”, SetLastError = true)] [DllImport(“advapi32.dll”, ExactSpelling = true, SetLastError = true)] [DllImport(“user32.dll”, ExactSpelling = true, SetLastError = true)] [DllImport(“advapi32.dll”)] private const int SE_PRIVILEGE_ENABLED = 0x00000002; /// <summary>
using System.Collections.Generic;
using System.Text;
using System.Security.Principal;
using System.Runtime.InteropServices;
{
#region 模拟
private WindowsImpersonationContext impersonationContext;
private const int LOGON32_PROVIDER_DEFAULT = 0;
private static extern int LogonUser(String lpszUserName, String lpszDomain, String lpszPassword,
int dwLogonType, int dwLogonProvider, ref IntPtr phToken);
private extern static int DuplicateToken(IntPtr hToken, int impersonationLevel, ref IntPtr hNewToken);
private static extern bool RevertToSelf();
private extern static bool CloseHandle(IntPtr handle);
/// 模拟一个用户
/// </summary>
/// <param name=”userName”>用户名</param>
/// <param name=”password”>密码</param>
/// <param name=”domain”>域名/计算机名</param>
/// <returns>true 模拟成功,false 模拟失败</returns>
public bool ImpersonateUser(string userName, string password, string domain)
{
WindowsIdentity wi;
IntPtr token = IntPtr.Zero;
IntPtr tokenDuplicate = IntPtr.Zero;
if (RevertToSelf())
{
if (LogonUser(userName, domain, password,
LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, ref token) != 0)
{
if (DuplicateToken(token, 2, ref tokenDuplicate) != 0)
{
wi = new WindowsIdentity(tokenDuplicate);
impersonationContext = wi.Impersonate();
if (impersonationContext != null)
{
CloseHandle(tokenDuplicate);
CloseHandle(token);
return true;
}
else
{
if (tokenDuplicate != IntPtr.Zero) CloseHandle(tokenDuplicate);
if (token != IntPtr.Zero) CloseHandle(token);
return false;
}
}
else
{
if (token != IntPtr.Zero) CloseHandle(token);
return false;
}
}
else
return false;
}
else
return false;
}
/// 取消模拟
/// </summary>
public void UndoImpersonation()
{
impersonationContext.Undo();
}
#endregion
[StructLayout(LayoutKind.Sequential, Pack = 1)]
private struct TokPriv1Luid
{
public int Count;
public long Luid;
public int Attr;
}
private static extern IntPtr GetCurrentThread();
private static extern bool OpenThreadToken(IntPtr h, int acc, bool openAsSelf, ref IntPtr phtok);
private static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);
private static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall, ref TokPriv1Luid newst,
int len, IntPtr prev, IntPtr relen);
private static extern bool ExitWindowsEx(int flg, int rea);
private static extern bool InitiateSystemShutdown(string Machinename, string Message,
long Timeout, bool ForceAppsClosed, bool RebootAfterShutdown);
private const int TOKEN_QUERY = 0x00000008;
private const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
private const string SE_SHUTDOWN_NAME = “SeShutdownPrivilege”;
private const int EWX_LOGOFF = 0x00000000;
private const int EWX_SHUTDOWN = 0x00000001;
private const int EWX_REBOOT = 0x00000002;
private const int EWX_FORCE = 0x00000004;
private const int EWX_POWEROFF = 0x00000008;
private const int EWX_FORCEIFHUNG = 0x00000010;
/// 关机
/// </summary>
/// <returns></returns>
public bool ShutDown()
{
bool result;
TokPriv1Luid tp;
//注意:这里用的是GetCurrentThread,而不是GetCurrentProcess
IntPtr hproc = GetCurrentThread();
IntPtr htok = IntPtr.Zero;
//注意:这里用的是OpenThreadToken(打开线程令牌),而不是OpenProcessToken(打开进程令牌)
result = OpenThreadToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY,
true, ref htok);
tp.Count = 1;
tp.Luid = 0;
tp.Attr = SE_PRIVILEGE_ENABLED;
result = LookupPrivilegeValue(null, SE_SHUTDOWN_NAME, ref tp.Luid);
result = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
result = InitiateSystemShutdown(“”, “”, 60, true, false);
return result;
}
#endregion
}
http://www.cnblogs.com/anjou/archive/2006/11/30/577279.html
asp.net模拟其他用户进行关机_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp.net模拟其他用户进行关机_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧