解决方案 »

  1.   

    试试这个
                string sysroot = System.Environment.SystemDirectory;
                ProcessStartInfo info = new ProcessStartInfo();
                info.FileName = sysroot + "\\msiexec.exe";
                info.Arguments = "/x {60050BB5-E7A2-4879-8E4D-677D4D3EE2F3} /qr";
                info.UseShellExecute = false;
                info.WindowStyle = ProcessWindowStyle.Hidden;
                info.CreateNoWindow = true;
                Process.Start(info);