如何获取有关程序卸载的数据?

时间:2010-08-17 12:53:27

标签: c#

如何获取有关程序卸载的数据? 这是我的代码:

private void uninstallSoftware() 
{ 
  Process p = new Process(); 
  p.StartInfo.FileName = "msiexec.exe"; 
  p.StartInfo.Arguments = "/x \"??????\"/qn"; 
  p.Start(); 

}

例如: 我想卸载一个Lan驱动程序,该程序当前显示在程序和功能列表中。

如何从c#代码中卸载它?

0 个答案:

没有答案