如何使用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 with different credentials with UAC on
先谢谢你了!
任何人都会在c#
中编写示例代码以执行/user:administrator \"mmc.exe compmgmt.msc /computer:IZADI-PC\
答案 0 :(得分: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();