因爲我想運行cmd
具有管理權限的過程中,但彈出打開甚至設置WindowStyle
隱藏。彈出窗口觸發器,如果我運行與行政專用c進程#
ProcessInfo = new ProcessStartInfo("cmd.exe", "/c " + @"cscript.exe DTCSECURITY.vbs");
ProcessInfo.CreateNoWindow = true;.
ProcessInfo.WindowStyle = ProcessWindowStyle.Hidden;
// Here with i pass the privillage
ProcessInfo.UserName = @"administrator";
ProcessInfo.Password = StringToSecureString("password12$");
process = Process.Start(ProcessInfo);
process.WaitForExit();
但如果我評論的privillage代碼沒有彈出閃爍。
我嘗試了你的建議,仍然嘗試相同的問題 – Smaug