1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Web;
  5. using System.Web.Security;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8. using System.Web.UI.WebControls.WebParts;
  9. using System.Web.UI.HtmlControls;
  10. using System.Runtime.InteropServices;
  11. namespace Utility
  12. {
  13. /// <summary>
  14. /// 使用此类来模拟某个系统用户(系统帐号、AD等)
  15. /// 主要用在需要特别权限的地方,因为IIS的系统帐号权限通常比较低,需要更高级权限时使用此类来替换用户,执行完毕后再换回原来的帐号
  16. /// </summary>
  17. public class Impersonal
  18. {
  19. [DllImport("advapi32.dll", SetLastError = true)]
  20. public extern static bool LogonUser(String lpszUsername, String lpszDomain,
  21. String lpszPassword, int dwLogonType,
  22. int dwLogonProvider, ref IntPtr phToken);
  23. [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
  24. public extern static bool CloseHandle(IntPtr handle);
  25. [DllImport("advapi32.dll", CharSet = CharSet.Auto, SetLastError = true)]
  26. public extern static bool DuplicateToken(IntPtr ExistingTokenHandle,
  27. int SECURITY_IMPERSONATION_LEVEL, ref IntPtr DuplicateTokenHandle);
  28. const int LOGON32_PROVIDER_DEFAULT = 0;
  29. const int LOGON32_LOGON_INTERACTIVE = 2;
  30. const int SecurityImpersonation = 2;
  31. private IntPtr tokenHandle;
  32. private IntPtr dupeTokenHandle;
  33. private System.Security.Principal.WindowsImpersonationContext impersonatedUser;
  34. private string UserName;
  35. private string PWD;
  36. public Impersonal(string username, string password)
  37. {
  38. tokenHandle = new IntPtr(0);
  39. dupeTokenHandle = new IntPtr(0);
  40. UserName = username;
  41. PWD = password;
  42. }
  43. /// <summary>
  44. /// 开始模拟
  45. /// </summary>
  46. public void StartImpersonate()
  47. {
  48. string domainName = string.Empty;
  49. string userName = string.Empty;
  50. if (!System.Text.RegularExpressions.Regex.IsMatch(UserName, @"^/w+[//]?/w+$"))
  51. {
  52. throw new ApplicationException("非法的用户名");
  53. }
  54. string[] tmp = UserName.Split(new char[] { '//' });
  55. if (tmp.Length > 1)
  56. {
  57. domainName = tmp[0];
  58. userName = tmp[1];
  59. }
  60. else
  61. {
  62. userName = tmp[0];
  63. }
  64. tokenHandle = IntPtr.Zero;
  65. dupeTokenHandle = IntPtr.Zero;
  66. bool returnValue = LogonUser(userName, domainName, PWD,
  67. LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT,
  68. ref tokenHandle);
  69. if (!returnValue)
  70. {
  71. throw new ApplicationException("取Handle出错了!");
  72. }
  73. //Console.WriteLine("当前用户是: "
  74. //    + WindowsIdentity.GetCurrent().Name);
  75. bool retVal = DuplicateToken(tokenHandle, SecurityImpersonation, ref dupeTokenHandle);
  76. if (!retVal)
  77. {
  78. CloseHandle(tokenHandle);
  79. throw new ApplicationException("复制Handle出错了!");
  80. }
  81. System.Security.Principal.WindowsIdentity newId = new System.Security.Principal.WindowsIdentity(dupeTokenHandle);
  82. impersonatedUser = newId.Impersonate();
  83. }
  84. /// <summary>
  85. /// 取消模拟
  86. /// </summary>
  87. public void StopImpersonate()
  88. {
  89. if (impersonatedUser != null)
  90. impersonatedUser.Undo();
  91. if (tokenHandle != IntPtr.Zero)
  92. CloseHandle(tokenHandle);
  93. if (dupeTokenHandle != IntPtr.Zero)
  94. CloseHandle(dupeTokenHandle);
  95. }
  96. }
  97. }

前提你要有系统管理员的密码,如果客户端加入了域,就用域的管理员帐号登录。。

使用方法
Impersonal impl=new Impersonal(系统管理员帐号,密码);//例如..Impersonal("Administrator","12345")或者Impersonal("域名/Administrator","12345")
impl.StartImpersonate();
运行你的代码
impl.StopImpersonate();

我给你的类就是实现你想要的功能。用它来模拟管理员的身份,然后执行你想要的操作。

首先,你需要明白一点,你想要的“自动更改为以管理员身份运行”要有一个前提条件,就是你必须拥有管理员帐号的密码,在本机就是“Administrator”,在AD中就是 “域/Administrator”

你或者事先已经知道客户电脑的密码,或者弹出一个输入框让用户输入密码。然后:

Impersonal impl=new Impersonal(“Administrator”,用户输入的密码);
impl.StartImpersonate(); 
执行自动升级
impl.StopImpersonate();

 

比较简单的方式:
创建软件的快捷方式.
右击快捷方式并选择“属性”。
点击“Advanced”按钮,并勾选“Run as administrator”。
点“OK”保存更改。
然后:启动快捷方式就可。
System.Diagnostics.Process.Start(@"C:/Users/Jason/Desktop/xxx.lnk");

http://blog.csdn.net/jiangxinyu/article/details/5410718

让程序自动以管理员身份运行(用到了DuplicateToken,模拟管理员的身份,不可思议)的更多相关文章

  1. C# 之 判断或设置以管理员身份运行程序

    一.判断程序是否以管理员权限运行 using System.Security.Principal; public bool IsAdministrator() { WindowsIdentity cu ...

  2. 以不同用户身份运行程序,/savecred只需要输入一次密码(GetTokenByName取得EXPLORER.EXE的令牌,然后调用CreateProcessAsUser,而且使用LoadUserProfile解决另存文件的问题)good

    http://blog.sina.com.cn/s/blog_65977dde0100s7tm.html ----------------------------------------------- ...

  3. [OS] 远程启动计划任务时以管理员身份运行

    在Jenkins建了一个task自动启动Selenium的Grid,命令行是这样写的: schtasks /end /tn RestartGrid /s SZTEST201606 /u szdomai ...

  4. 如何自动以管理员身份运行.NET程序?

    原文:如何自动以管理员身份运行.NET程序? windows 7和vista提高的系统的安全性,同时需要明确指定“以管理员身份运行”才可赋予被运行软件比较高级的权限,比如访问注册表等.否则,当以普通身 ...

  5. C# 让程序自动以管理员身份运行

    exe在Vista或Win7下不以管理员权限运行,会被UAC(用户帐户控制)阻止访问系统某些功能,如修改注册表操作等;如何让exe以管理员权限运行呢,方法有两种,一个是直接修改exe属性;另一个是在程 ...

  6. Delphi Xe2 后的版本如何让Delphi程序启动自动“以管理员身份运行"

    由于Vista以后win中加入的UAC安全机制,采用Delphi开发的程序如果不右键点击“以管理员身份运行”,则会报错. 在XE2以上的Delphi版本处理这个问题已经非常简单了. 右建点击工程,选择 ...

  7. [技巧.Dotnet]轻松实现“强制.net程序以管理员身份运行”。

    使用场景: 程序中不少操作都需要特殊权限,有时为了方便,直接让程序以管理员方式运行. (在商业软件中,其实应该尽量避免以管理员身份运行.在安装或配置时,提前授予将相应权限.) 做法: 以C#项目为例: ...

  8. C#程序用Inno Setup打包,以管理员身份运行的处理方法

    一.C#项目端的处理 目标:快捷方式有带盾的标识 在源码的Properties目录中找到 app.manifest,将其中level="asInvoker" 改成 level=&q ...

  9. C#让程序自动在管理员权限下运行

    windows 7和vista提高的系统的安全性,同时需要明确指定“以管理员身份运行”才可赋予被运行软件比较高级的权限,比如访问注册表等.否则,当以普通身份运行的程序需要访问较高级的系统资源时,将会抛 ...

随机推荐

  1. 九度OnlineJudge之1001:A+B for Matrices

    题目描述: This time, you are supposed to find A+B where A and B are two matrices, and then count the num ...

  2. caffe源代码分析--math_functions.cu代码研究

    当中用到一个宏定义CUDA_KERNEL_LOOP 在common.hpp中有. #defineCUDA_KERNEL_LOOP(i,n) \ for(inti = blockIdx.x * bloc ...

  3. 一个站点的诞生06-- ORM

    站点上的数据,存在数据库里. 一般用Mysql,也实用sqlite,Postgre.操作数据库要会SQL语言,这个有点麻烦,经常须要查手冊. 此外.每家数据库在实现SQL语言的时候,经常会加料,添加一 ...

  4. Activity的任务栈Task以及启动模式与Intent的Flag详解

    什么是任务栈(Task) 官方文档是这么解释的 任务是指在执行特定作业时与用户交互的一系列 Activity. 这些 Activity 按照各自的打开顺序排列在堆栈(即“返回栈”)中. 其实就是以栈的 ...

  5. js 终止页面加载

    var xmlhttp = new XMLHttpRequest(); xmlhttp.abort(); window.stop();

  6. 利用Range改变光标位置

    先上代码,代码取自网上某插件中 function caret(begin, end) { if (this.length == 0) return; if (typeof begin == 'numb ...

  7. MySQL 创建数据表

    MySQL 创建数据表 创建MySQL数据表需要以下信息: 表名 表字段名 定义每个表字段 语法 以下为创建MySQL数据表的SQL通用语法: CREATE TABLE table_name (col ...

  8. 重温web服务器--细说Tomcat服务器

    从大学开始接触java web的开发时就开始使用tomcat部署web项目,对它的理解仅仅停留在"这是个开源免费的servlet容器"的阶段,后来也接触了一些tomcat的体系,原 ...

  9. 简单总结焦点事件、Event事件对象、冒泡事件

    每学习一些新的东西,要学会复习,总结和记录. 今天来简单总结一下学到的几个事件:焦点事件.Event事件对象.冒泡事件 其实这几个事件应该往深的说是挺难的,但今天主要是以一个小菜的角度去尝试理解一些基 ...

  10. python下 help()使用方法

    查看python所有的modules:help("modules") 单看python所有的modules中包含指定字符串的modules: help("modules ...