gpt4 book ai didi

c# - 在 Visual Studio 2010 控制台应用程序中以管理员身份运行 BAT 文件

转载 作者:行者123 更新时间:2023-11-29 21:58:04 25 4
gpt4 key购买 nike

我想以管理员身份在我的 VS 项目中运行一个 bat 文件。 bat 文件中有一些命令,我​​想执行该文件。这些命令需要管理员权限。代码如下。

AndroidSmS aHelper = new AndroidSmS();
string renameMsg = aHelper.RenameFile();

public string RenameFile() {

string renameBATPath = ConfigurationManager.AppSettings["RenameBATPath"].ToString();
string o;
string str = DateTime.Now.ToOADate().ToString();
using (var p = new System.Diagnostics.Process())
{
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = @renameBATPath;
p.StartInfo.Arguments = DateTime.Now.ToShortDateString().ToString().Replace('/', '-')+".db";
p.Start();
o = p.StandardOutput.ReadToEnd();
p.WaitForExit();
}
return o;

}

请告诉我如何运行这些命令或以管理员模式运行此文件。任何类型的帮助将不胜感激。提前致谢问候

最佳答案

你有几个选择

您可以指定管理员凭据以启动批处理文件

p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = @renameBATPath;
p.StartInfo.Arguments = DateTime.Now.ToShortDateString().ToString().Replace('/', '-')+".db";
p.StartInfo.UserName = "administrator";
char[] password = { 'p', 'a', 's', 's', 'w', 'o', 'r', 'd' };
SecureString adminpassword = new SecureString();
foreach (char c in password)
{
adminpassword.AppendChar(c);
}
p.StartInfo.Password = adminpassword;
p.Start();

或者您可以在您的应用程序上提示 UAC,这意味着它启动的任何内容都将以相同的权限运行。

参见 here关于如何创建 list 文件来执行此操作。

关于c# - 在 Visual Studio 2010 控制台应用程序中以管理员身份运行 BAT 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12704332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com