Use RestartManager during Uninstall (Inno Setup)

北城以北 提交于 2020-03-15 07:18:06

问题


In Inno Setup, one can use CloseApplication to enable the Windows restart manager, and check for running instances. This, however, does not apply to the uninstallation. The setup removes all files that are not in use, and shows a message along the lines of "not all files could be removed, please remove them manually".

The only way to check for running instances that seems to work during uninstall runs, is to use AppMutex.

Is there a way to enable the restart manager during the uninstallation as well?


回答1:


No, you cannot use restart manager in uninstaller (unless you code it from the scratch).


But you can kill the application in InitializeUninstall.

For that see my answer to Uninstall fails because program is running. How do I make Inno Setup check for running process prior to attempting delete?



来源:https://stackoverflow.com/questions/42974404/use-restartmanager-during-uninstall-inno-setup

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!