NSIS.template.in 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979
  1. ; CPack install script designed for a nmake build
  2. ;--------------------------------
  3. ; You must define these values
  4. !define VERSION "@CPACK_PACKAGE_VERSION@"
  5. !define PATCH "@CPACK_PACKAGE_VERSION_PATCH@"
  6. !define INST_DIR "@CPACK_TEMPORARY_DIRECTORY@"
  7. ;--------------------------------
  8. ;Variables
  9. Var MUI_TEMP
  10. Var STARTMENU_FOLDER
  11. Var SV_ALLUSERS
  12. Var START_MENU
  13. Var DO_NOT_ADD_TO_PATH
  14. Var ADD_TO_PATH_ALL_USERS
  15. Var ADD_TO_PATH_CURRENT_USER
  16. Var INSTALL_DESKTOP
  17. Var IS_DEFAULT_INSTALLDIR
  18. ;--------------------------------
  19. ;Include Modern UI
  20. !include "MUI.nsh"
  21. ;Default installation folder
  22. InstallDir "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@"
  23. ;--------------------------------
  24. ;General
  25. ;Name and file
  26. Name "@CPACK_NSIS_PACKAGE_NAME@"
  27. OutFile "@CPACK_TOPLEVEL_DIRECTORY@/@CPACK_OUTPUT_FILE_NAME@"
  28. ;Set compression
  29. SetCompressor @CPACK_NSIS_COMPRESSOR@
  30. ;Require administrator access
  31. RequestExecutionLevel admin
  32. @CPACK_NSIS_DEFINES@
  33. !include Sections.nsh
  34. ;--- Component support macros: ---
  35. ; The code for the add/remove functionality is from:
  36. ; http://nsis.sourceforge.net/Add/Remove_Functionality
  37. ; It has been modified slightly and extended to provide
  38. ; inter-component dependencies.
  39. Var AR_SecFlags
  40. Var AR_RegFlags
  41. @CPACK_NSIS_SECTION_SELECTED_VARS@
  42. ; Loads the "selected" flag for the section named SecName into the
  43. ; variable VarName.
  44. !macro LoadSectionSelectedIntoVar SecName VarName
  45. SectionGetFlags ${${SecName}} $${VarName}
  46. IntOp $${VarName} $${VarName} & ${SF_SELECTED} ;Turn off all other bits
  47. !macroend
  48. ; Loads the value of a variable... can we get around this?
  49. !macro LoadVar VarName
  50. IntOp $R0 0 + $${VarName}
  51. !macroend
  52. ; Sets the value of a variable
  53. !macro StoreVar VarName IntValue
  54. IntOp $${VarName} 0 + ${IntValue}
  55. !macroend
  56. !macro InitSection SecName
  57. ; This macro reads component installed flag from the registry and
  58. ;changes checked state of the section on the components page.
  59. ;Input: section index constant name specified in Section command.
  60. ClearErrors
  61. ;Reading component status from registry
  62. ReadRegDWORD $AR_RegFlags HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" "Installed"
  63. IfErrors "default_${SecName}"
  64. ;Status will stay default if registry value not found
  65. ;(component was never installed)
  66. IntOp $AR_RegFlags $AR_RegFlags & ${SF_SELECTED} ;Turn off all other bits
  67. SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading default section flags
  68. IntOp $AR_SecFlags $AR_SecFlags & 0xFFFE ;Turn lowest (enabled) bit off
  69. IntOp $AR_SecFlags $AR_RegFlags | $AR_SecFlags ;Change lowest bit
  70. ; Note whether this component was installed before
  71. !insertmacro StoreVar ${SecName}_was_installed $AR_RegFlags
  72. IntOp $R0 $AR_RegFlags & $AR_RegFlags
  73. ;Writing modified flags
  74. SectionSetFlags ${${SecName}} $AR_SecFlags
  75. "default_${SecName}:"
  76. !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected
  77. !macroend
  78. !macro FinishSection SecName
  79. ; This macro reads section flag set by user and removes the section
  80. ;if it is not selected.
  81. ;Then it writes component installed flag to registry
  82. ;Input: section index constant name specified in Section command.
  83. SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading section flags
  84. ;Checking lowest bit:
  85. IntOp $AR_SecFlags $AR_SecFlags & ${SF_SELECTED}
  86. IntCmp $AR_SecFlags 1 "leave_${SecName}"
  87. ;Section is not selected:
  88. ;Calling Section uninstall macro and writing zero installed flag
  89. !insertmacro "Remove_${${SecName}}"
  90. WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \
  91. "Installed" 0
  92. Goto "exit_${SecName}"
  93. "leave_${SecName}:"
  94. ;Section is selected:
  95. WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \
  96. "Installed" 1
  97. "exit_${SecName}:"
  98. !macroend
  99. !macro RemoveSection_CPack SecName
  100. ; This macro is used to call section's Remove_... macro
  101. ;from the uninstaller.
  102. ;Input: section index constant name specified in Section command.
  103. !insertmacro "Remove_${${SecName}}"
  104. !macroend
  105. ; Determine whether the selection of SecName changed
  106. !macro MaybeSelectionChanged SecName
  107. !insertmacro LoadVar ${SecName}_selected
  108. SectionGetFlags ${${SecName}} $R1
  109. IntOp $R1 $R1 & ${SF_SELECTED} ;Turn off all other bits
  110. ; See if the status has changed:
  111. IntCmp $R0 $R1 "${SecName}_unchanged"
  112. !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected
  113. IntCmp $R1 ${SF_SELECTED} "${SecName}_was_selected"
  114. !insertmacro "Deselect_required_by_${SecName}"
  115. goto "${SecName}_unchanged"
  116. "${SecName}_was_selected:"
  117. !insertmacro "Select_${SecName}_depends"
  118. "${SecName}_unchanged:"
  119. !macroend
  120. ;--- End of Add/Remove macros ---
  121. ;--------------------------------
  122. ;Interface Settings
  123. !define MUI_HEADERIMAGE
  124. !define MUI_ABORTWARNING
  125. ;--------------------------------
  126. ; path functions
  127. !verbose 3
  128. !include "WinMessages.NSH"
  129. !verbose 4
  130. ;----------------------------------------
  131. ; based upon a script of "Written by KiCHiK 2003-01-18 05:57:02"
  132. ;----------------------------------------
  133. !verbose 3
  134. !include "WinMessages.NSH"
  135. !verbose 4
  136. ;====================================================
  137. ; get_NT_environment
  138. ; Returns: the selected environment
  139. ; Output : head of the stack
  140. ;====================================================
  141. !macro select_NT_profile UN
  142. Function ${UN}select_NT_profile
  143. StrCmp $ADD_TO_PATH_ALL_USERS "1" 0 environment_single
  144. DetailPrint "Selected environment for all users"
  145. Push "all"
  146. Return
  147. environment_single:
  148. DetailPrint "Selected environment for current user only."
  149. Push "current"
  150. Return
  151. FunctionEnd
  152. !macroend
  153. !insertmacro select_NT_profile ""
  154. !insertmacro select_NT_profile "un."
  155. ;----------------------------------------------------
  156. !define NT_current_env 'HKCU "Environment"'
  157. !define NT_all_env 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
  158. !ifndef WriteEnvStr_RegKey
  159. !ifdef ALL_USERS
  160. !define WriteEnvStr_RegKey \
  161. 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
  162. !else
  163. !define WriteEnvStr_RegKey 'HKCU "Environment"'
  164. !endif
  165. !endif
  166. ; AddToPath - Adds the given dir to the search path.
  167. ; Input - head of the stack
  168. ; Note - Win9x systems requires reboot
  169. Function AddToPath
  170. Exch $0
  171. Push $1
  172. Push $2
  173. Push $3
  174. # don't add if the path doesn't exist
  175. IfFileExists "$0\*.*" "" AddToPath_done
  176. ReadEnvStr $1 PATH
  177. ; if the path is too long for a NSIS variable NSIS will return a 0
  178. ; length string. If we find that, then warn and skip any path
  179. ; modification as it will trash the existing path.
  180. StrLen $2 $1
  181. IntCmp $2 0 CheckPathLength_ShowPathWarning CheckPathLength_Done CheckPathLength_Done
  182. CheckPathLength_ShowPathWarning:
  183. Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! PATH too long installer unable to modify PATH!"
  184. Goto AddToPath_done
  185. CheckPathLength_Done:
  186. Push "$1;"
  187. Push "$0;"
  188. Call StrStr
  189. Pop $2
  190. StrCmp $2 "" "" AddToPath_done
  191. Push "$1;"
  192. Push "$0\;"
  193. Call StrStr
  194. Pop $2
  195. StrCmp $2 "" "" AddToPath_done
  196. GetFullPathName /SHORT $3 $0
  197. Push "$1;"
  198. Push "$3;"
  199. Call StrStr
  200. Pop $2
  201. StrCmp $2 "" "" AddToPath_done
  202. Push "$1;"
  203. Push "$3\;"
  204. Call StrStr
  205. Pop $2
  206. StrCmp $2 "" "" AddToPath_done
  207. Call IsNT
  208. Pop $1
  209. StrCmp $1 1 AddToPath_NT
  210. ; Not on NT
  211. StrCpy $1 $WINDIR 2
  212. FileOpen $1 "$1\autoexec.bat" a
  213. FileSeek $1 -1 END
  214. FileReadByte $1 $2
  215. IntCmp $2 26 0 +2 +2 # DOS EOF
  216. FileSeek $1 -1 END # write over EOF
  217. FileWrite $1 "$\r$\nSET PATH=%PATH%;$3$\r$\n"
  218. FileClose $1
  219. SetRebootFlag true
  220. Goto AddToPath_done
  221. AddToPath_NT:
  222. StrCmp $ADD_TO_PATH_ALL_USERS "1" ReadAllKey
  223. ReadRegStr $1 ${NT_current_env} "PATH"
  224. Goto DoTrim
  225. ReadAllKey:
  226. ReadRegStr $1 ${NT_all_env} "PATH"
  227. DoTrim:
  228. StrCmp $1 "" AddToPath_NTdoIt
  229. Push $1
  230. Call Trim
  231. Pop $1
  232. StrCpy $0 "$1;$0"
  233. AddToPath_NTdoIt:
  234. StrCmp $ADD_TO_PATH_ALL_USERS "1" WriteAllKey
  235. WriteRegExpandStr ${NT_current_env} "PATH" $0
  236. Goto DoSend
  237. WriteAllKey:
  238. WriteRegExpandStr ${NT_all_env} "PATH" $0
  239. DoSend:
  240. SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
  241. AddToPath_done:
  242. Pop $3
  243. Pop $2
  244. Pop $1
  245. Pop $0
  246. FunctionEnd
  247. ; RemoveFromPath - Remove a given dir from the path
  248. ; Input: head of the stack
  249. Function un.RemoveFromPath
  250. Exch $0
  251. Push $1
  252. Push $2
  253. Push $3
  254. Push $4
  255. Push $5
  256. Push $6
  257. IntFmt $6 "%c" 26 # DOS EOF
  258. Call un.IsNT
  259. Pop $1
  260. StrCmp $1 1 unRemoveFromPath_NT
  261. ; Not on NT
  262. StrCpy $1 $WINDIR 2
  263. FileOpen $1 "$1\autoexec.bat" r
  264. GetTempFileName $4
  265. FileOpen $2 $4 w
  266. GetFullPathName /SHORT $0 $0
  267. StrCpy $0 "SET PATH=%PATH%;$0"
  268. Goto unRemoveFromPath_dosLoop
  269. unRemoveFromPath_dosLoop:
  270. FileRead $1 $3
  271. StrCpy $5 $3 1 -1 # read last char
  272. StrCmp $5 $6 0 +2 # if DOS EOF
  273. StrCpy $3 $3 -1 # remove DOS EOF so we can compare
  274. StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine
  275. StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine
  276. StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine
  277. StrCmp $3 "" unRemoveFromPath_dosLoopEnd
  278. FileWrite $2 $3
  279. Goto unRemoveFromPath_dosLoop
  280. unRemoveFromPath_dosLoopRemoveLine:
  281. SetRebootFlag true
  282. Goto unRemoveFromPath_dosLoop
  283. unRemoveFromPath_dosLoopEnd:
  284. FileClose $2
  285. FileClose $1
  286. StrCpy $1 $WINDIR 2
  287. Delete "$1\autoexec.bat"
  288. CopyFiles /SILENT $4 "$1\autoexec.bat"
  289. Delete $4
  290. Goto unRemoveFromPath_done
  291. unRemoveFromPath_NT:
  292. StrCmp $ADD_TO_PATH_ALL_USERS "1" unReadAllKey
  293. ReadRegStr $1 ${NT_current_env} "PATH"
  294. Goto unDoTrim
  295. unReadAllKey:
  296. ReadRegStr $1 ${NT_all_env} "PATH"
  297. unDoTrim:
  298. StrCpy $5 $1 1 -1 # copy last char
  299. StrCmp $5 ";" +2 # if last char != ;
  300. StrCpy $1 "$1;" # append ;
  301. Push $1
  302. Push "$0;"
  303. Call un.StrStr ; Find `$0;` in $1
  304. Pop $2 ; pos of our dir
  305. StrCmp $2 "" unRemoveFromPath_done
  306. ; else, it is in path
  307. # $0 - path to add
  308. # $1 - path var
  309. StrLen $3 "$0;"
  310. StrLen $4 $2
  311. StrCpy $5 $1 -$4 # $5 is now the part before the path to remove
  312. StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove
  313. StrCpy $3 $5$6
  314. StrCpy $5 $3 1 -1 # copy last char
  315. StrCmp $5 ";" 0 +2 # if last char == ;
  316. StrCpy $3 $3 -1 # remove last char
  317. StrCmp $ADD_TO_PATH_ALL_USERS "1" unWriteAllKey
  318. WriteRegExpandStr ${NT_current_env} "PATH" $3
  319. Goto unDoSend
  320. unWriteAllKey:
  321. WriteRegExpandStr ${NT_all_env} "PATH" $3
  322. unDoSend:
  323. SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
  324. unRemoveFromPath_done:
  325. Pop $6
  326. Pop $5
  327. Pop $4
  328. Pop $3
  329. Pop $2
  330. Pop $1
  331. Pop $0
  332. FunctionEnd
  333. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  334. ; Uninstall sutff
  335. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  336. ###########################################
  337. # Utility Functions #
  338. ###########################################
  339. ;====================================================
  340. ; IsNT - Returns 1 if the current system is NT, 0
  341. ; otherwise.
  342. ; Output: head of the stack
  343. ;====================================================
  344. ; IsNT
  345. ; no input
  346. ; output, top of the stack = 1 if NT or 0 if not
  347. ;
  348. ; Usage:
  349. ; Call IsNT
  350. ; Pop $R0
  351. ; ($R0 at this point is 1 or 0)
  352. !macro IsNT un
  353. Function ${un}IsNT
  354. Push $0
  355. ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
  356. StrCmp $0 "" 0 IsNT_yes
  357. ; we are not NT.
  358. Pop $0
  359. Push 0
  360. Return
  361. IsNT_yes:
  362. ; NT!!!
  363. Pop $0
  364. Push 1
  365. FunctionEnd
  366. !macroend
  367. !insertmacro IsNT ""
  368. !insertmacro IsNT "un."
  369. ; StrStr
  370. ; input, top of stack = string to search for
  371. ; top of stack-1 = string to search in
  372. ; output, top of stack (replaces with the portion of the string remaining)
  373. ; modifies no other variables.
  374. ;
  375. ; Usage:
  376. ; Push "this is a long ass string"
  377. ; Push "ass"
  378. ; Call StrStr
  379. ; Pop $R0
  380. ; ($R0 at this point is "ass string")
  381. !macro StrStr un
  382. Function ${un}StrStr
  383. Exch $R1 ; st=haystack,old$R1, $R1=needle
  384. Exch ; st=old$R1,haystack
  385. Exch $R2 ; st=old$R1,old$R2, $R2=haystack
  386. Push $R3
  387. Push $R4
  388. Push $R5
  389. StrLen $R3 $R1
  390. StrCpy $R4 0
  391. ; $R1=needle
  392. ; $R2=haystack
  393. ; $R3=len(needle)
  394. ; $R4=cnt
  395. ; $R5=tmp
  396. loop:
  397. StrCpy $R5 $R2 $R3 $R4
  398. StrCmp $R5 $R1 done
  399. StrCmp $R5 "" done
  400. IntOp $R4 $R4 + 1
  401. Goto loop
  402. done:
  403. StrCpy $R1 $R2 "" $R4
  404. Pop $R5
  405. Pop $R4
  406. Pop $R3
  407. Pop $R2
  408. Exch $R1
  409. FunctionEnd
  410. !macroend
  411. !insertmacro StrStr ""
  412. !insertmacro StrStr "un."
  413. Function Trim ; Added by Pelaca
  414. Exch $R1
  415. Push $R2
  416. Loop:
  417. StrCpy $R2 "$R1" 1 -1
  418. StrCmp "$R2" " " RTrim
  419. StrCmp "$R2" "$\n" RTrim
  420. StrCmp "$R2" "$\r" RTrim
  421. StrCmp "$R2" ";" RTrim
  422. GoTo Done
  423. RTrim:
  424. StrCpy $R1 "$R1" -1
  425. Goto Loop
  426. Done:
  427. Pop $R2
  428. Exch $R1
  429. FunctionEnd
  430. Function ConditionalAddToRegisty
  431. Pop $0
  432. Pop $1
  433. StrCmp "$0" "" ConditionalAddToRegisty_EmptyString
  434. WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" \
  435. "$1" "$0"
  436. ;MessageBox MB_OK "Set Registry: '$1' to '$0'"
  437. DetailPrint "Set install registry entry: '$1' to '$0'"
  438. ConditionalAddToRegisty_EmptyString:
  439. FunctionEnd
  440. ;--------------------------------
  441. !ifdef CPACK_USES_DOWNLOAD
  442. Function DownloadFile
  443. IfFileExists $INSTDIR\* +2
  444. CreateDirectory $INSTDIR
  445. Pop $0
  446. ; Skip if already downloaded
  447. IfFileExists $INSTDIR\$0 0 +2
  448. Return
  449. StrCpy $1 "@CPACK_DOWNLOAD_SITE@"
  450. try_again:
  451. NSISdl::download "$1/$0" "$INSTDIR\$0"
  452. Pop $1
  453. StrCmp $1 "success" success
  454. StrCmp $1 "Cancelled" cancel
  455. MessageBox MB_OK "Download failed: $1"
  456. cancel:
  457. Return
  458. success:
  459. FunctionEnd
  460. !endif
  461. ;--------------------------------
  462. ; Installation types
  463. @CPACK_NSIS_INSTALLATION_TYPES@
  464. ;--------------------------------
  465. ; Component sections
  466. @CPACK_NSIS_COMPONENT_SECTIONS@
  467. ;--------------------------------
  468. ; Define some macro setting for the gui
  469. @CPACK_NSIS_INSTALLER_MUI_ICON_CODE@
  470. @CPACK_NSIS_INSTALLER_ICON_CODE@
  471. @CPACK_NSIS_INSTALLER_MUI_WELCOMEFINISH_CODE@
  472. @CPACK_NSIS_INSTALLER_MUI_UNWELCOMEFINISH_CODE@
  473. @CPACK_NSIS_INSTALLER_MUI_COMPONENTS_DESC@
  474. @CPACK_NSIS_INSTALLER_MUI_FINISHPAGE_RUN_CODE@
  475. ;--------------------------------
  476. ;Pages
  477. !insertmacro MUI_PAGE_WELCOME
  478. !insertmacro MUI_PAGE_LICENSE "@CPACK_RESOURCE_FILE_LICENSE@"
  479. Page custom InstallOptionsPage
  480. !insertmacro MUI_PAGE_DIRECTORY
  481. ;Start Menu Folder Page Configuration
  482. !define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
  483. !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@"
  484. !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
  485. !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
  486. @CPACK_NSIS_PAGE_COMPONENTS@
  487. !insertmacro MUI_PAGE_INSTFILES
  488. !insertmacro MUI_PAGE_FINISH
  489. !insertmacro MUI_UNPAGE_CONFIRM
  490. !insertmacro MUI_UNPAGE_INSTFILES
  491. ;--------------------------------
  492. ;Languages
  493. !insertmacro MUI_LANGUAGE "English" ;first language is the default language
  494. !insertmacro MUI_LANGUAGE "Albanian"
  495. !insertmacro MUI_LANGUAGE "Arabic"
  496. !insertmacro MUI_LANGUAGE "Basque"
  497. !insertmacro MUI_LANGUAGE "Belarusian"
  498. !insertmacro MUI_LANGUAGE "Bosnian"
  499. !insertmacro MUI_LANGUAGE "Breton"
  500. !insertmacro MUI_LANGUAGE "Bulgarian"
  501. !insertmacro MUI_LANGUAGE "Croatian"
  502. !insertmacro MUI_LANGUAGE "Czech"
  503. !insertmacro MUI_LANGUAGE "Danish"
  504. !insertmacro MUI_LANGUAGE "Dutch"
  505. !insertmacro MUI_LANGUAGE "Estonian"
  506. !insertmacro MUI_LANGUAGE "Farsi"
  507. !insertmacro MUI_LANGUAGE "Finnish"
  508. !insertmacro MUI_LANGUAGE "French"
  509. !insertmacro MUI_LANGUAGE "German"
  510. !insertmacro MUI_LANGUAGE "Greek"
  511. !insertmacro MUI_LANGUAGE "Hebrew"
  512. !insertmacro MUI_LANGUAGE "Hungarian"
  513. !insertmacro MUI_LANGUAGE "Icelandic"
  514. !insertmacro MUI_LANGUAGE "Indonesian"
  515. !insertmacro MUI_LANGUAGE "Irish"
  516. !insertmacro MUI_LANGUAGE "Italian"
  517. !insertmacro MUI_LANGUAGE "Japanese"
  518. !insertmacro MUI_LANGUAGE "Korean"
  519. !insertmacro MUI_LANGUAGE "Kurdish"
  520. !insertmacro MUI_LANGUAGE "Latvian"
  521. !insertmacro MUI_LANGUAGE "Lithuanian"
  522. !insertmacro MUI_LANGUAGE "Luxembourgish"
  523. !insertmacro MUI_LANGUAGE "Macedonian"
  524. !insertmacro MUI_LANGUAGE "Malay"
  525. !insertmacro MUI_LANGUAGE "Mongolian"
  526. !insertmacro MUI_LANGUAGE "Norwegian"
  527. !insertmacro MUI_LANGUAGE "Polish"
  528. !insertmacro MUI_LANGUAGE "Portuguese"
  529. !insertmacro MUI_LANGUAGE "PortugueseBR"
  530. !insertmacro MUI_LANGUAGE "Romanian"
  531. !insertmacro MUI_LANGUAGE "Russian"
  532. !insertmacro MUI_LANGUAGE "Serbian"
  533. !insertmacro MUI_LANGUAGE "SerbianLatin"
  534. !insertmacro MUI_LANGUAGE "SimpChinese"
  535. !insertmacro MUI_LANGUAGE "Slovak"
  536. !insertmacro MUI_LANGUAGE "Slovenian"
  537. !insertmacro MUI_LANGUAGE "Spanish"
  538. !insertmacro MUI_LANGUAGE "Swedish"
  539. !insertmacro MUI_LANGUAGE "Thai"
  540. !insertmacro MUI_LANGUAGE "TradChinese"
  541. !insertmacro MUI_LANGUAGE "Turkish"
  542. !insertmacro MUI_LANGUAGE "Ukrainian"
  543. !insertmacro MUI_LANGUAGE "Welsh"
  544. ;--------------------------------
  545. ;Reserve Files
  546. ;These files should be inserted before other files in the data block
  547. ;Keep these lines before any File command
  548. ;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA)
  549. ReserveFile "NSIS.InstallOptions.ini"
  550. !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
  551. ;--------------------------------
  552. ;Installer Sections
  553. Section "-Core installation"
  554. ;Use the entire tree produced by the INSTALL target. Keep the
  555. ;list of directories here in sync with the RMDir commands below.
  556. SetOutPath "$INSTDIR"
  557. @CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS@
  558. @CPACK_NSIS_FULL_INSTALL@
  559. ;Store installation folder
  560. WriteRegStr SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "" $INSTDIR
  561. ;Create uninstaller
  562. WriteUninstaller "$INSTDIR\Uninstall.exe"
  563. Push "DisplayName"
  564. Push "@CPACK_NSIS_DISPLAY_NAME@"
  565. Call ConditionalAddToRegisty
  566. Push "DisplayVersion"
  567. Push "@CPACK_PACKAGE_VERSION@"
  568. Call ConditionalAddToRegisty
  569. Push "Publisher"
  570. Push "@CPACK_PACKAGE_VENDOR@"
  571. Call ConditionalAddToRegisty
  572. Push "UninstallString"
  573. Push "$INSTDIR\Uninstall.exe"
  574. Call ConditionalAddToRegisty
  575. Push "NoRepair"
  576. Push "1"
  577. Call ConditionalAddToRegisty
  578. !ifdef CPACK_NSIS_ADD_REMOVE
  579. ;Create add/remove functionality
  580. Push "ModifyPath"
  581. Push "$INSTDIR\AddRemove.exe"
  582. Call ConditionalAddToRegisty
  583. !else
  584. Push "NoModify"
  585. Push "1"
  586. Call ConditionalAddToRegisty
  587. !endif
  588. ; Optional registration
  589. Push "DisplayIcon"
  590. Push "$INSTDIR\@CPACK_NSIS_INSTALLED_ICON_NAME@"
  591. Call ConditionalAddToRegisty
  592. Push "HelpLink"
  593. Push "@CPACK_NSIS_HELP_LINK@"
  594. Call ConditionalAddToRegisty
  595. Push "URLInfoAbout"
  596. Push "@CPACK_NSIS_URL_INFO_ABOUT@"
  597. Call ConditionalAddToRegisty
  598. Push "Contact"
  599. Push "@CPACK_NSIS_CONTACT@"
  600. Call ConditionalAddToRegisty
  601. !insertmacro MUI_INSTALLOPTIONS_READ $INSTALL_DESKTOP "NSIS.InstallOptions.ini" "Field 5" "State"
  602. !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
  603. ;Create shortcuts
  604. CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
  605. @CPACK_NSIS_CREATE_ICONS@
  606. @CPACK_NSIS_CREATE_ICONS_EXTRA@
  607. CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
  608. ;Read a value from an InstallOptions INI file
  609. !insertmacro MUI_INSTALLOPTIONS_READ $DO_NOT_ADD_TO_PATH "NSIS.InstallOptions.ini" "Field 2" "State"
  610. !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_ALL_USERS "NSIS.InstallOptions.ini" "Field 3" "State"
  611. !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_CURRENT_USER "NSIS.InstallOptions.ini" "Field 4" "State"
  612. ; Write special uninstall registry entries
  613. Push "StartMenu"
  614. Push "$STARTMENU_FOLDER"
  615. Call ConditionalAddToRegisty
  616. Push "DoNotAddToPath"
  617. Push "$DO_NOT_ADD_TO_PATH"
  618. Call ConditionalAddToRegisty
  619. Push "AddToPathAllUsers"
  620. Push "$ADD_TO_PATH_ALL_USERS"
  621. Call ConditionalAddToRegisty
  622. Push "AddToPathCurrentUser"
  623. Push "$ADD_TO_PATH_CURRENT_USER"
  624. Call ConditionalAddToRegisty
  625. Push "InstallToDesktop"
  626. Push "$INSTALL_DESKTOP"
  627. Call ConditionalAddToRegisty
  628. !insertmacro MUI_STARTMENU_WRITE_END
  629. @CPACK_NSIS_EXTRA_INSTALL_COMMANDS@
  630. SectionEnd
  631. Section "-Add to path"
  632. Push $INSTDIR\bin
  633. StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 doNotAddToPath
  634. StrCmp $DO_NOT_ADD_TO_PATH "1" doNotAddToPath 0
  635. Call AddToPath
  636. doNotAddToPath:
  637. SectionEnd
  638. ;--------------------------------
  639. ; Create custom pages
  640. Function InstallOptionsPage
  641. !insertmacro MUI_HEADER_TEXT "Install Options" "Choose options for installing @CPACK_NSIS_PACKAGE_NAME@"
  642. !insertmacro MUI_INSTALLOPTIONS_DISPLAY "NSIS.InstallOptions.ini"
  643. FunctionEnd
  644. ;--------------------------------
  645. ; determine admin versus local install
  646. Function un.onInit
  647. ClearErrors
  648. UserInfo::GetName
  649. IfErrors noLM
  650. Pop $0
  651. UserInfo::GetAccountType
  652. Pop $1
  653. StrCmp $1 "Admin" 0 +3
  654. SetShellVarContext all
  655. ;MessageBox MB_OK 'User "$0" is in the Admin group'
  656. Goto done
  657. StrCmp $1 "Power" 0 +3
  658. SetShellVarContext all
  659. ;MessageBox MB_OK 'User "$0" is in the Power Users group'
  660. Goto done
  661. noLM:
  662. ;Get installation folder from registry if available
  663. done:
  664. FunctionEnd
  665. ;--- Add/Remove callback functions: ---
  666. !macro SectionList MacroName
  667. ;This macro used to perform operation on multiple sections.
  668. ;List all of your components in following manner here.
  669. @CPACK_NSIS_COMPONENT_SECTION_LIST@
  670. !macroend
  671. Section -FinishComponents
  672. ;Removes unselected components and writes component status to registry
  673. !insertmacro SectionList "FinishSection"
  674. !ifdef CPACK_NSIS_ADD_REMOVE
  675. ; Get the name of the installer executable
  676. System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1'
  677. StrCpy $R3 $R0
  678. ; Strip off the last 13 characters, to see if we have AddRemove.exe
  679. StrLen $R1 $R0
  680. IntOp $R1 $R0 - 13
  681. StrCpy $R2 $R0 13 $R1
  682. StrCmp $R2 "AddRemove.exe" addremove_installed
  683. ; We're not running AddRemove.exe, so install it
  684. CopyFiles $R3 $INSTDIR\AddRemove.exe
  685. addremove_installed:
  686. !endif
  687. SectionEnd
  688. ;--- End of Add/Remove callback functions ---
  689. ;--------------------------------
  690. ; Component dependencies
  691. Function .onSelChange
  692. !insertmacro SectionList MaybeSelectionChanged
  693. FunctionEnd
  694. ;--------------------------------
  695. ;Uninstaller Section
  696. Section "Uninstall"
  697. ReadRegStr $START_MENU SHCTX \
  698. "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "StartMenu"
  699. ;MessageBox MB_OK "Start menu is in: $START_MENU"
  700. ReadRegStr $DO_NOT_ADD_TO_PATH SHCTX \
  701. "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "DoNotAddToPath"
  702. ReadRegStr $ADD_TO_PATH_ALL_USERS SHCTX \
  703. "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathAllUsers"
  704. ReadRegStr $ADD_TO_PATH_CURRENT_USER SHCTX \
  705. "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathCurrentUser"
  706. ;MessageBox MB_OK "Add to path: $DO_NOT_ADD_TO_PATH all users: $ADD_TO_PATH_ALL_USERS"
  707. ReadRegStr $INSTALL_DESKTOP SHCTX \
  708. "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "InstallToDesktop"
  709. ;MessageBox MB_OK "Install to desktop: $INSTALL_DESKTOP "
  710. @CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS@
  711. ;Remove files we installed.
  712. ;Keep the list of directories here in sync with the File commands above.
  713. @CPACK_NSIS_DELETE_FILES@
  714. @CPACK_NSIS_DELETE_DIRECTORIES@
  715. !ifdef CPACK_NSIS_ADD_REMOVE
  716. ;Remove the add/remove program
  717. Delete "$INSTDIR\AddRemove.exe"
  718. !endif
  719. ;Remove the uninstaller itself.
  720. Delete "$INSTDIR\Uninstall.exe"
  721. DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@"
  722. ;Remove the installation directory if it is empty.
  723. RMDir "$INSTDIR"
  724. ; Remove the registry entries.
  725. DeleteRegKey SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@"
  726. ; Removes all optional components
  727. !insertmacro SectionList "RemoveSection_CPack"
  728. !insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
  729. Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
  730. @CPACK_NSIS_DELETE_ICONS@
  731. @CPACK_NSIS_DELETE_ICONS_EXTRA@
  732. ;Delete empty start menu parent diretories
  733. StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
  734. startMenuDeleteLoop:
  735. ClearErrors
  736. RMDir $MUI_TEMP
  737. GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
  738. IfErrors startMenuDeleteLoopDone
  739. StrCmp "$MUI_TEMP" "$SMPROGRAMS" startMenuDeleteLoopDone startMenuDeleteLoop
  740. startMenuDeleteLoopDone:
  741. ; If the user changed the shortcut, then untinstall may not work. This should
  742. ; try to fix it.
  743. StrCpy $MUI_TEMP "$START_MENU"
  744. Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
  745. @CPACK_NSIS_DELETE_ICONS_EXTRA@
  746. ;Delete empty start menu parent diretories
  747. StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
  748. secondStartMenuDeleteLoop:
  749. ClearErrors
  750. RMDir $MUI_TEMP
  751. GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
  752. IfErrors secondStartMenuDeleteLoopDone
  753. StrCmp "$MUI_TEMP" "$SMPROGRAMS" secondStartMenuDeleteLoopDone secondStartMenuDeleteLoop
  754. secondStartMenuDeleteLoopDone:
  755. DeleteRegKey /ifempty SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@"
  756. Push $INSTDIR\bin
  757. StrCmp $DO_NOT_ADD_TO_PATH_ "1" doNotRemoveFromPath 0
  758. Call un.RemoveFromPath
  759. doNotRemoveFromPath:
  760. SectionEnd
  761. ;--------------------------------
  762. ; determine admin versus local install
  763. ; Is install for "AllUsers" or "JustMe"?
  764. ; Default to "JustMe" - set to "AllUsers" if admin or on Win9x
  765. ; This function is used for the very first "custom page" of the installer.
  766. ; This custom page does not show up visibly, but it executes prior to the
  767. ; first visible page and sets up $INSTDIR properly...
  768. ; Choose different default installation folder based on SV_ALLUSERS...
  769. ; "Program Files" for AllUsers, "My Documents" for JustMe...
  770. Function .onInit
  771. StrCmp "@CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL@" "ON" 0 inst
  772. ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "UninstallString"
  773. StrCmp $0 "" inst
  774. MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION \
  775. "@CPACK_NSIS_PACKAGE_NAME@ is already installed. $\n$\nDo you want to uninstall the old version before installing the new one?" \
  776. IDYES uninst IDNO inst
  777. Abort
  778. ;Run the uninstaller
  779. uninst:
  780. ClearErrors
  781. StrLen $2 "\Uninstall.exe"
  782. StrCpy $3 $0 -$2 # remove "\Uninstall.exe" from UninstallString to get path
  783. ExecWait '"$0" _?=$3' ;Do not copy the uninstaller to a temp file
  784. IfErrors uninst_failed inst
  785. uninst_failed:
  786. MessageBox MB_OK|MB_ICONSTOP "Uninstall failed."
  787. Abort
  788. inst:
  789. ; Reads components status for registry
  790. !insertmacro SectionList "InitSection"
  791. ; check to see if /D has been used to change
  792. ; the install directory by comparing it to the
  793. ; install directory that is expected to be the
  794. ; default
  795. StrCpy $IS_DEFAULT_INSTALLDIR 0
  796. StrCmp "$INSTDIR" "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" 0 +2
  797. StrCpy $IS_DEFAULT_INSTALLDIR 1
  798. StrCpy $SV_ALLUSERS "JustMe"
  799. ; if default install dir then change the default
  800. ; if it is installed for JustMe
  801. StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2
  802. StrCpy $INSTDIR "$DOCUMENTS\@CPACK_PACKAGE_INSTALL_DIRECTORY@"
  803. ClearErrors
  804. UserInfo::GetName
  805. IfErrors noLM
  806. Pop $0
  807. UserInfo::GetAccountType
  808. Pop $1
  809. StrCmp $1 "Admin" 0 +4
  810. SetShellVarContext all
  811. ;MessageBox MB_OK 'User "$0" is in the Admin group'
  812. StrCpy $SV_ALLUSERS "AllUsers"
  813. Goto done
  814. StrCmp $1 "Power" 0 +4
  815. SetShellVarContext all
  816. ;MessageBox MB_OK 'User "$0" is in the Power Users group'
  817. StrCpy $SV_ALLUSERS "AllUsers"
  818. Goto done
  819. noLM:
  820. StrCpy $SV_ALLUSERS "AllUsers"
  821. ;Get installation folder from registry if available
  822. done:
  823. StrCmp $SV_ALLUSERS "AllUsers" 0 +3
  824. StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2
  825. StrCpy $INSTDIR "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@"
  826. StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 noOptionsPage
  827. !insertmacro MUI_INSTALLOPTIONS_EXTRACT "NSIS.InstallOptions.ini"
  828. noOptionsPage:
  829. FunctionEnd