标签: c#
如何获取有关程序卸载的数据? 这是我的代码:
private void uninstallSoftware() { Process p = new Process(); p.StartInfo.FileName = "msiexec.exe"; p.StartInfo.Arguments = "/x \"??????\"/qn"; p.Start();
}
例如: 我想卸载一个Lan驱动程序,该程序当前显示在程序和功能列表中。
如何从c#代码中卸载它?