private void uninstallSoftware() { Process p = new Process(); p.StartInfo.FileName = "msiexec.exe"; p.StartInfo.Arguments = "/x \"C:\\Application.msi\"/qn"; p.Start(); }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)