NSIS - Desktop Shortcut For All Users
How can I create desktop sho开发者_开发技巧rtcuts for all user while installing a package?
NSIS supports several of the common/shared special folders:
SetShellVarContext all
CreateShortcut "$desktop\myapp.lnk" "$instdir\myapp.exe"
This code assumes you are elevated...
With !include NTProfiles.nsh
[1] you can create a shortcut in the folder "${ProfilePathAllUsers}\Desktop"
.
[1] - http://nsis.sourceforge.net/NT_Profile_Paths
精彩评论