12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Uninstall
- {
- class Program
- {
- static void Main(string[] args)
- {
- try
- {
-
-
-
-
-
-
-
-
-
-
- System.Diagnostics.Process proc = new System.Diagnostics.Process();
- proc.EnableRaisingEvents = false;
- proc.StartInfo.FileName = "msiexec.exe";
- proc.StartInfo.Arguments = "/x {234C22F5-E0B4-4E2F-8E0F-FC55922412FE}";
-
- proc.Start();
- }
- catch(Exception ex)
- {
- Console.WriteLine(ex.Message);
- }
- }
- }
- }
|