C#如何实现cmd.exe已管理员身份启动
3个回答
2013-04-18
展开全部
在 Visual C# 项目中,转到项目设计器的“应用程序”页面,单击“清单”列表中的“Properties\app.manifest”
可以对UAC清单操作
可以对UAC清单操作
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一般只有你没设置其他的受限制的管理员的话,你就是管理员身份啦!你打开开始菜单,点运行,在里面输入cmd就可以啦!就可以进入半个dos操作平台了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-04-18
展开全部
Process p = new Process(); //创建文件
p.StartInfo.FileName = "cmd.exe ";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = false; //显示
p.Start();
p.StartInfo.FileName = "cmd.exe ";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = false; //显示
p.Start();
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询