简体   繁体   中英

NSIS script to display a Readme link or a URL on Upgrade success finish page

My requirement is to display a read me or URL on Upgrade success finish page. Is it possible to display a readme or a URL link on the upgrade finish page? If yes how can I do that?

The MUI finish page supports both a readme checkbox and a clickable URL:

!define MUI_FINISHPAGE_SHOWREADME "$instdir\readme.txt" ; Can also be a URL
!define MUI_FINISHPAGE_LINK "Visit my homepage"
!define MUI_FINISHPAGE_LINK_LOCATION "http://example.com"
!insertmacro MUI_PAGE_FINISH

You can even use MUI_FINISHPAGE_RUN_FUNCTION and get 3 URLs if you really needed to...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM