我想使用Inno Setup(
http://www.jrsoftware.org/isfaq.php)为应用程序构建一个安装程序.
解决方法
在“所有用户”配置文件的启动文件夹中放置快捷方式.参见知识库文章“
Create shortcuts in the Startup (or Autostart) group”,其中包括以下示例:
[Setup] Privilegesrequired=admin [Icons] Name: "{commonstartup}\My Program"; Filename: "{app}\MyProg.exe"
如果希望程序仅在安装程序的用户登录时运行,则使用{userstartup}
而不是{commonstartup}
.在这种情况下,不需要管理员权限.
或者如果您决定写入注册表的“运行”密钥(kb article):
[Registry] Root: HKCU; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "MyProg"; ValueData: """{app}\MyProg.exe"""; Flags: uninsdeletevalue
如果您使用“HKLM”,则需要再次执行管理员权限.