0

如何使用 c# 将 compmgmnt.msc 用于远程主机。我找到了这个...

在“cmd.exe”中执行此命令它正在工作并询问您密码:

/user:administrator \"mmc.exe compmgmt.msc /computer:IZADI-PC\

但我需要知道如何在 c# 中使用此命令。我还需要使用 c# 将密码传递给此命令。我有远程计算机的用户名和密码,我想以编程方式做所有事情。

我还参观了:

http://www.lansweeper.com/forum/yaf_postst5116_Runas-Custom-Actions.aspx Process.Start 与 UAC 不同的凭据

先谢谢了!!!

任何人都编写示例代码以/user:administrator \"mmc.exe compmgmt.msc /computer:IZADI-PC\在 C# 中执行

4

1 回答 1

0
ProcessStartInfo startInfo = new ProcessStartInfo();
                Process myprocess = new Process();
                myprocess.StartInfo.CreateNoWindow = true;
                myprocess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                myprocess.StartInfo.UseShellExecute = false;
                myprocess.StartInfo.Verb = "runas";
                myprocess.StartInfo.FileName = "cmd.exe";
                myprocess.StartInfo.UserName = "administrator";
                myprocess.StartInfo.Password = MakeSecureString("123456");
                myprocess.StartInfo.Arguments = "/k mmc.exe compmgmt.msc /computer:PC135-PC";
                myprocess.Start();
                myprocess.Close();
于 2012-10-29T07:54:25.517 回答