我試圖得到結果,是或否,用戶按管理員身份運行時回答程序。如何獲得結果後運行.bat作爲管理員 - C#
例子: IMAGE
我想用下面的代碼:
var processInstall = new ProcessStartInfo();
processInstall.CreateNoWindow = true;
processInstall.FileName = "myBatchFileAddress";
processInstall.Verb = "runas";
var process = new Process();
process.StartInfo = processInstall;
process.Start();
process.WaitForExit();
//Here I must deal with the result of user, if is yes or no
這個圖像是Window的UAC,你不會得到答案。你甚至可以禁用它,所以它從不顯示。如果'是'該過程將執行,否則它不會 –