我试图通过Visual Studio和可能的CMD使用C#卸载程序。我做了几次尝试,但无法继续下去。
尝试#1:
RegistryKey localMachine = Registry.LocalMachine;
string productsRoot = @"C:\Program Files(x86)\Microsoft\XML";
RegistryKey products = localMachine.OpenSubKey(productsRoot);
string[] productFolders = products.GetSubKeyNames();
foreach (string p in productFolders)
{
RegistryKey installProperties = products.OpenSubKey(p + @"\InstallProperties");
if (installProperties != null)
{
string displayName = (string)installProperties.GetValue("DisplayName");
if ((displayName != null) && (displayName.Contains("XML")))
{
string uninstallCommand = (string)installProperties.GetValue("UninstallString");
return uninstallCommand;
}
}
}
基于:https://sites.google.com/site/msdevnote/home/programmatically-uninstall-programs-with-c
尝试#2:
Process p = new Process();
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "cmd.exe";
info.RedirectStandardInput = true;
info.UseShellExecute = false;
p.StartInfo = info;
p.Start();
using (StreamWriter sw = p.StandardInput)
{
if (sw.BaseStream.CanWrite)
{
sw.WriteLine("wmic");
sw.WriteLine("product get name");
sw.WriteLine("XML" call uninstall);
}
}
基于:http://www.sevenforums.com/tutorials/272460-programs-uninstall-using-command-prompt-windows.html和Execute multiple command lines with the same process using .NET
我正在使用Visual Studio 2012.目前正在从main方法运行代码。谢谢你的帮助。
答案 0 :(得分:1)
您已经询问了Windows Installer标记,因此,如果我们讨论的是从MSI文件安装的产品:
尝试1不正确,因为Windows Installer不使用uninstallstring卸载产品(更改它并查看它是否有所不同),并且有更好的方法。
2使用WMI,你可以做到这一点,但再次没有必要。
我假设您知道要卸载的东西的ProductCode,如果您稍后不再了解它。所以有一个非常好的普通API来卸载产品,MsiConfigureProduct(),这里有一些例子:
How to uninstall MSI using its Product Code in c#
以及将msiexec.exe与ProductCode一起使用的方法。
如果您需要枚举所有已安装的产品以扫描名称或其他内容,请参阅: