How can I get the data about uninstall of a program? this is my code:
private void uninstallSoftware()
{
Process p = new Process();
p.StartInfo.FileName = "msiexec.exe";
p.StartInfo.Arguments = "/x \"??????\"/qn";
p.Start();
}
For example: I want to uninstall a Lan driver, the program currently displays in programs and features list.
How can I uninstall it fro开发者_如何转开发m c# code?
精彩评论