inno setup install script and windows 7

2019-06-11 21:00发布

any recommendations about those inno setup scripts so the compiled install run smoothly on windows 7?

3条回答
冷血范
2楼-- · 2019-06-11 21:09
  • Don't install anything to user-directories. Assume the installer will be run from a different account than the one that will use the installed application.
  • If you need to save user-specific stuff install it as a template to a shared location (ideally read-only to regular users, e.g. under {app}) and have your application copy it from there on first startup.
  • Don't create Quick Launch shortcuts
查看更多
老娘就宠你
3楼-- · 2019-06-11 21:24

Oliver Giesen's suggestion is what I'm using, but it has a disadvantage... there seems to be no way to remove the {userappdata} folders for all users when uninstalling the program, meaning you can never do a clean uninstall/reinstall.

查看更多
聊天终结者
4楼-- · 2019-06-11 21:32

Inno Setup has full support for Windows 7. Just make sure to use the latest version of Inno Seup, preferably the Unicode edition.

查看更多
登录 后发表回答