我使用 Visual Studio msi 安装程序创建了一个空项目。在安装时,它只是为项目创建文件夹和 exe 文件。
但是当我尝试静默卸载时,它会从程序列表中删除安装,但它会离开文件夹。我还需要删除该文件夹,并且希望在不在代码中手动删除它的情况下执行此操作。
// This is how to uninstall a basic msi app
// Create the uninstall process.
Process proc = new Process();
// Define the parameters for the process
proc.StartInfo.FileName = "msiexec.exe";
// This is the Product Code from your Basic MSI InstallShield Project
proc.StartInfo.Arguments = "/x" + " " + ProductCode + " " + "/qn";
// Start the process.
proc.Start();
// Wait for the uninstall process to end.
proc.WaitForInputIdle();
proc.WaitForExit();
// Release resources.
proc.Close();