1

我使用 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();
4

1 回答 1

0

/L logfile.txt使用命令行选项指示 MSI 输出日志文件msiexec。它应该告诉您为什么卸载程序无法删除安装文件。可能的原因包括文件夹被锁定(需要重新启动才能删除)或文件夹的文件权限阻止删除。有关详细信息,请参阅Wix 安装程序无法删除安装文件夹Installshield,卸载程序未删除所有文件夹

于 2012-09-22T11:44:37.213 回答