how to manually remove MSI installation?

前端 未结 3 2063
清歌不尽
清歌不尽 2020-12-24 15:13

I am learning VS 2008 setup project to create install for our C# application. I made a mistake trying to delete the exe itself during the uninstall. Now I manually deleted t

3条回答
  •  一向
    一向 (楼主)
    2020-12-24 16:03

    If this is a proper small update / minor upgrade .msi file to fix an earlier version which couldn't uninstall, just install it with msiexec /i updated.msi REINSTALLMODE=vomus (and maybe also REINSTALL=ALL). The v of vomus will have Windows Installer replace the old package with the new, and then you can uninstall normally.

    But of course all this is unnecessary these days with the ability to test on a virtual machine you can just revert...

提交回复
热议问题