Shortcuts removal fails on Windows Vista

来源:互联网 发布:淘宝如何选择发货地 编辑:程序博客网 时间:2024/06/06 04:22

转载:http://nsis.sourceforge.net/Shortcuts_removal_fails_on_Windows_Vista

Shortcuts removal fails on Windows Vista

From NSIS Wiki

Windows Vista and Windows 7 automatically identify installer executables, including NSIS installers, and ask the user permission to run them with elevated privileges. Automatic detection, however, comes with  the price of automatic backward compatibility tricks. One of which is automatic relocation of shortcuts created in the Start Menu to the All Users' Start Menu.

To workaround this, use the new RequestExecutionLevel command or create the shortcuts in All Users' folders in the first place, using SetShellVarContext.

OutFile vista.exeName Vista RequestExecutionLevel user Section  CreateDirectory "$SMPROGRAMS\Vista Test"  CreateShortcut  "$SMPROGRAMS\Vista Test\hello.lnk" $WINDIR\notepad.exe  WriteUninstaller $EXEDIR\uninst.exeSectionEnd Section uninstall  Delete "$SMPROGRAMS\Vista Test\hello.lnk"  RMDir "$SMPROGRAMS\Vista Test"SectionEnd
OutFile vista.exeName Vista RequestExecutionLevel admin #NOTE: You still need to check user rights with UserInfo! Function .onInit#TODO: call UserInfo plugin to make sure user is adminFunctionEnd Section  SetShellVarContext all  CreateDirectory "$SMPROGRAMS\Vista Test"  CreateShortcut  "$SMPROGRAMS\Vista Test\hello.lnk" $WINDIR\notepad.exe  WriteUninstaller $EXEDIR\uninst.exeSectionEnd Section uninstall  SetShellVarContext all  Delete "$SMPROGRAMS\Vista Test\hello.lnk"  RMDir "$SMPROGRAMS\Vista Test"SectionEnd

 

原创粉丝点击