快速启动栏和 Inno Setup v6
Quick Lanch bar and Inno Setup v6
我的安装程序几年前就开始了,因此有一个 Quick Launch bar 任务。
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\Public Talks"; \
Filename: "{app}\CommunityTalks.exe"; \
MinVersion: 4,4; \
Tasks: quicklaunchicon
编译时会引发警告:
Warning: The [Setup]
section directive "PrivilegesRequired"
is set to
"admin"
but per-user areas (HKCU
,userappdata
) are used by the script.
Regardless of the version of Windows, if the installation is running
in administrative install mode then you should be careful about making
any per-user area changes: such changes may not achieve what you are
intending. See the "UsedUserAreasWarning" topic in help file for more
information.
我们应该如何处理?
从安装程序中删除 "Quick Launch" 工具栏功能。
现在没人用了。 "Quick Launch" 工具栏 was removed in Windows 7 (2009)。
我的安装程序几年前就开始了,因此有一个 Quick Launch bar 任务。
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\Public Talks"; \
Filename: "{app}\CommunityTalks.exe"; \
MinVersion: 4,4; \
Tasks: quicklaunchicon
编译时会引发警告:
Warning: The
[Setup]
section directive"PrivilegesRequired"
is set to"admin"
but per-user areas (HKCU
,userappdata
) are used by the script. Regardless of the version of Windows, if the installation is running in administrative install mode then you should be careful about making any per-user area changes: such changes may not achieve what you are intending. See the "UsedUserAreasWarning" topic in help file for more information.
我们应该如何处理?
从安装程序中删除 "Quick Launch" 工具栏功能。
现在没人用了。 "Quick Launch" 工具栏 was removed in Windows 7 (2009)。