OSDN Git Service

Some installer fixes.
[x264-launcher/x264-launcher.git] / etc / setup / setup.nsi
1 ; ///////////////////////////////////////////////////////////////////////////////
2 ; // Simple x264 Launcher
3 ; // Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
4 ; //
5 ; // This program is free software; you can redistribute it and/or modify
6 ; // it under the terms of the GNU General Public License as published by
7 ; // the Free Software Foundation; either version 2 of the License, or
8 ; // (at your option) any later version.
9 ; //
10 ; // This program is distributed in the hope that it will be useful,
11 ; // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ; // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ; // GNU General Public License for more details.
14 ; //
15 ; // You should have received a copy of the GNU General Public License along
16 ; // with this program; if not, write to the Free Software Foundation, Inc.,
17 ; // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 ; //
19 ; // http://www.gnu.org/licenses/gpl-2.0.txt
20 ; ///////////////////////////////////////////////////////////////////////////////
21
22
23 ;--------------------------------
24 ;Basic Defines
25 ;--------------------------------
26
27 !ifndef NSIS_UNICODE
28   !error "NSIS_UNICODE is undefined, please compile with Unicode NSIS !!!"
29 !endif
30
31 !ifndef X264_BUILD
32   !error "X264_BUILD is not defined !!!"
33 !endif
34 !ifndef X264_DATE
35   !error "X264_DATE is not defined !!!"
36 !endif
37 !ifndef X264_OUTPUT_FILE
38   !error "X264_OUTPUT_FILE is not defined !!!"
39 !endif
40 !ifndef X264_SOURCE_PATH
41   !error "X264_SOURCE_PATH is not defined !!!"
42 !endif
43 !ifndef X264_UPX_PATH
44   !error "X264_UPX_PATH is not defined !!!"
45 !endif
46
47 ;UUID
48 !define MyRegPath "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{986E454F-DACA-4326-A9C7-3E46C0BFFDCE}"
49
50 ;Web-Site
51 !define MyWebSite "http://muldersoft.com/"
52
53
54 ;--------------------------------
55 ;Manifest
56 ;--------------------------------
57
58 !tempfile PACKHDRTEMP
59 !packhdr "${PACKHDRTEMP}" '"..\mt.exe" -manifest "setup.manifest" -outputresource:"${PACKHDRTEMP};1"'
60
61
62 ;--------------------------------
63 ;Includes
64 ;--------------------------------
65
66 !include `MUI2.nsh`
67 !include `WinVer.nsh`
68 !include `x64.nsh`
69 !include `StdUtils.nsh`
70
71
72 ;--------------------------------
73 ;Installer Attributes
74 ;--------------------------------
75
76 RequestExecutionLevel admin
77 ShowInstDetails show
78 ShowUninstDetails show
79 Name "Simple x264/x265 Launcher [Build #${X264_BUILD}]"
80 OutFile "${X264_OUTPUT_FILE}"
81 BrandingText "Date created: ${X264_DATE} [Build #${X264_BUILD}]"
82 InstallDir "$PROGRAMFILES\MuldeR\Simple x264 Launcher v2"
83 InstallDirRegKey HKLM "${MyRegPath}" "InstallLocation"
84
85
86 ;--------------------------------
87 ;Compressor
88 ;--------------------------------
89
90 SetCompressor /SOLID LZMA
91 SetCompressorDictSize 64
92
93 #!packhdr "$%TEMP%\exehead.tmp" '"${X264_UPX_PATH}\upx.exe" --brute "$%TEMP%\exehead.tmp"'
94
95
96 ;--------------------------------
97 ;Reserved Files
98 ;--------------------------------
99
100 ReserveFile "${NSISDIR}\Plugins\Aero.dll"
101 ReserveFile "${NSISDIR}\Plugins\LangDLL.dll"
102 ReserveFile "${NSISDIR}\Plugins\LockedList.dll"
103 ReserveFile "${NSISDIR}\Plugins\nsDialogs.dll"
104 ReserveFile "${NSISDIR}\Plugins\nsExec.dll"
105 ReserveFile "${NSISDIR}\Plugins\StartMenu.dll"
106 ReserveFile "${NSISDIR}\Plugins\StdUtils.dll"
107 ReserveFile "${NSISDIR}\Plugins\System.dll"
108 ReserveFile "${NSISDIR}\Plugins\UserInfo.dll"
109
110
111 ;--------------------------------
112 ;Variables
113 ;--------------------------------
114
115 Var StartMenuFolder
116
117
118 ;--------------------------------
119 ;Version Info
120 ;--------------------------------
121
122 !searchreplace PRODUCT_VERSION_DATE "${X264_DATE}" "-" "."
123 VIProductVersion "${PRODUCT_VERSION_DATE}.${X264_BUILD}"
124
125 VIAddVersionKey "Author" "LoRd_MuldeR <mulder2@gmx.de>"
126 VIAddVersionKey "Comments" "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version."
127 VIAddVersionKey "CompanyName" "Free Software Foundation"
128 VIAddVersionKey "FileDescription" "Simple x264 Launcher [Build #${X264_BUILD}]"
129 VIAddVersionKey "FileVersion" "${PRODUCT_VERSION_DATE}.${X264_BUILD}"
130 VIAddVersionKey "LegalCopyright" "Copyright 2004-2015 LoRd_MuldeR"
131 VIAddVersionKey "LegalTrademarks" "GNU"
132 VIAddVersionKey "OriginalFilename" "x264_x64.${X264_DATE}.exe"
133 VIAddVersionKey "ProductName" "Simple x264 Launcher"
134 VIAddVersionKey "ProductVersion" "Build #${X264_BUILD} (${X264_DATE})"
135 VIAddVersionKey "Website" "${MyWebSite}"
136
137
138 ;--------------------------------
139 ;MUI2 Interface Settings
140 ;--------------------------------
141
142 !define MUI_ABORTWARNING
143 !define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
144 !define MUI_STARTMENUPAGE_REGISTRY_KEY "${MyRegPath}"
145 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "StartmenuFolder"
146 !define MUI_LANGDLL_REGISTRY_ROOT HKLM
147 !define MUI_LANGDLL_REGISTRY_KEY "${MyRegPath}"
148 !define MUI_LANGDLL_REGISTRY_VALUENAME "SetupLanguage"
149 !define MUI_STARTMENUPAGE_DEFAULTFOLDER "Simple x264 Launcher v2"
150 !define MUI_FINISHPAGE_NOAUTOCLOSE
151 !define MUI_UNFINISHPAGE_NOAUTOCLOSE
152 !define MUI_FINISHPAGE_RUN
153 !define MUI_FINISHPAGE_RUN_FUNCTION RunAppFunction
154 !define MUI_FINISHPAGE_SHOWREADME
155 !define MUI_FINISHPAGE_SHOWREADME_FUNCTION ShowReadmeFunction
156 !define MUI_FINISHPAGE_LINK ${MyWebSite}
157 !define MUI_FINISHPAGE_LINK_LOCATION ${MyWebSite}
158 !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\orange-install.ico"
159 !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\orange-uninstall.ico"
160 !define MUI_WELCOMEFINISHPAGE_BITMAP "wizard.bmp"
161 !define MUI_UNWELCOMEFINISHPAGE_BITMAP "wizard-un.bmp"
162 !define MUI_HEADERIMAGE
163 !define MUI_HEADERIMAGE_BITMAP "header.bmp"
164 !define MUI_HEADERIMAGE_UNBITMAP "header-un.bmp"
165 !define MUI_LANGDLL_ALLLANGUAGES
166 !define MUI_CUSTOMFUNCTION_GUIINIT MyGuiInit
167 !define MUI_CUSTOMFUNCTION_UNGUIINIT un.MyGuiInit
168 !define MUI_LANGDLL_ALWAYSSHOW
169
170
171 ;--------------------------------
172 ;MUI2 Pages (Installer)
173 ;--------------------------------
174
175 ;Welcome
176 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
177 !define MUI_WELCOMEPAGE_TITLE_3LINES
178 !define MUI_FINISHPAGE_TITLE_3LINES
179 !insertmacro MUI_PAGE_WELCOME
180
181 ;License
182 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
183 !insertmacro MUI_PAGE_LICENSE "license.rtf"
184
185 ;Directory
186 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
187 !define MUI_PAGE_CUSTOMFUNCTION_SHOW CheckForUpdate
188 !insertmacro MUI_PAGE_DIRECTORY
189
190 ;Startmenu
191 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
192 !insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
193
194 ;LockedList
195 Page Custom LockedListShow
196
197 ;Install Files
198 !insertmacro MUI_PAGE_INSTFILES
199
200 ;Finish
201 !define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfUnattended
202 !insertmacro MUI_PAGE_FINISH
203
204
205 ;--------------------------------
206 ;MUI2 Pages (Uninstaller)
207 ;--------------------------------
208
209 ;Welcome
210 !define MUI_WELCOMEPAGE_TITLE_3LINES
211 !define MUI_FINISHPAGE_TITLE_3LINES
212 !define MUI_PAGE_CUSTOMFUNCTION_PRE un.CheckForcedUninstall
213 !insertmacro MUI_UNPAGE_WELCOME
214
215 ;Confirm
216 !define MUI_PAGE_CUSTOMFUNCTION_PRE un.CheckForcedUninstall
217 !insertmacro MUI_UNPAGE_CONFIRM
218
219 ;LockedList
220 UninstPage Custom un.LockedListShow
221
222 ;Uninstall
223 !insertmacro MUI_UNPAGE_INSTFILES
224
225 ;Finish
226 !define MUI_PAGE_CUSTOMFUNCTION_PRE un.CheckForcedUninstall
227 !insertmacro MUI_UNPAGE_FINISH
228
229
230 ;--------------------------------
231 ;Languages
232 ;--------------------------------
233  
234 !insertmacro MUI_LANGUAGE "English" ;first language is the default language
235
236 ; !insertmacro MUI_LANGUAGE "German"
237 ; !insertmacro MUI_LANGUAGE "Spanish"
238 ; !insertmacro MUI_LANGUAGE "Russian"
239 ; !insertmacro MUI_LANGUAGE "Ukrainian"
240 ; !insertmacro MUI_LANGUAGE "Polish"
241
242 ; !insertmacro MUI_LANGUAGE "French"
243 ; !insertmacro MUI_LANGUAGE "SpanishInternational"
244 ; !insertmacro MUI_LANGUAGE "SimpChinese"
245 ; !insertmacro MUI_LANGUAGE "TradChinese"
246 ; !insertmacro MUI_LANGUAGE "Japanese"
247 ; !insertmacro MUI_LANGUAGE "Italian"
248 ; !insertmacro MUI_LANGUAGE "Dutch"
249 ; !insertmacro MUI_LANGUAGE "Greek"
250 ; !insertmacro MUI_LANGUAGE "Hungarian"
251 ; !insertmacro MUI_LANGUAGE "Romanian"
252 ; !insertmacro MUI_LANGUAGE "Serbian"
253 ; !insertmacro MUI_LANGUAGE "SerbianLatin"
254 ; !insertmacro MUI_LANGUAGE "Arabic"
255 ; !insertmacro MUI_LANGUAGE "Portuguese"
256 ; !insertmacro MUI_LANGUAGE "Afrikaans"
257 ; !insertmacro MUI_LANGUAGE "Malay"
258 ; !insertmacro MUI_LANGUAGE "Indonesian"
259
260
261 ;--------------------------------
262 ;Translation
263 ;--------------------------------
264
265 ;English
266 !include "language\en.nsh"
267
268
269 ;--------------------------------
270 ;LogicLib Extensions
271 ;--------------------------------
272
273 !macro _UnattendedMode _a _b _t _f
274         !insertmacro _LOGICLIB_TEMP
275         ${StdUtils.TestParameter} $_LOGICLIB_TEMP "Update"
276         StrCmp "$_LOGICLIB_TEMP" "true" `${_t}` `${_f}`
277 !macroend
278 !define UnattendedMode `"" UnattendedMode ""`
279
280 !macro _ForcedMode _a _b _t _f
281         !insertmacro _LOGICLIB_TEMP
282         ${StdUtils.TestParameter} $_LOGICLIB_TEMP "Force"
283         StrCmp "$_LOGICLIB_TEMP" "true" `${_t}` `${_f}`
284 !macroend
285 !define ForcedMode `"" ForcedMode ""`
286
287 !macro _ValidFileName _a _b _t _f
288         !insertmacro _LOGICLIB_TEMP
289         ${StdUtils.ValidFileName} $_LOGICLIB_TEMP `${_b}`
290         StrCmp "$_LOGICLIB_TEMP" "ok" `${_t}` `${_f}`
291 !macroend
292 !define ValidFileName `"" ValidFileName`
293
294
295 ;--------------------------------
296 ;Installer initialization
297 ;--------------------------------
298
299 Function .onInit
300         InitPluginsDir
301
302         ; --------
303
304         System::Call 'kernel32::CreateMutexA(i 0, i 0, t "{2B3D1EBF-B3B6-4E93-92B9-6853029A7162}") i .r1 ?e'
305         Pop $0
306         ${If} $0 <> 0
307                 MessageBox MB_ICONSTOP|MB_TOPMOST "Sorry, the installer is already running!"
308                 Quit
309         ${EndIf}
310
311         ; --------
312         
313         # Running on Windows NT family?
314         ${IfNot} ${IsNT}
315                 MessageBox MB_TOPMOST|MB_ICONSTOP "Sorry, this application does *not* support Windows 9x or Windows ME!"
316                 ExecShell "open" "http://windows.microsoft.com/"
317                 Quit
318         ${EndIf}
319
320         # Running on Windows XP or later?
321         ${If} ${AtMostWin2000}
322                 MessageBox MB_TOPMOST|MB_ICONSTOP "Sorry, but your operating system is *not* supported anymore.$\nInstallation will be aborted!$\n$\nThe minimum required platform is Windows XP (Service Pack 3)."
323                 ExecShell "open" "http://windows.microsoft.com/"
324                 Quit
325         ${EndIf}
326
327         # If on Windows XP, is the required Service Pack installed?
328         ${If} ${IsWinXP}
329                 ${IfNot} ${RunningX64} # Windows XP 32-Bit, requires Service Pack 3
330                 ${AndIf} ${AtMostServicePack} 2
331                         MessageBox MB_TOPMOST|MB_ICONEXCLAMATION "This application requires Windows XP with Service Pack 3 installed.$\nWindows XP *without* Service Pack 3 reached end-of-life on 2010-07-13.$\nCurrent Windows XP (Service Pack 3) will be supported until 2014-04-08.$\n$\nPlease install Service Pack 3 now or just run Windows Update!"
332                         ${If} ${Cmd} `MessageBox MB_TOPMOST|MB_ICONQUESTION|MB_YESNO "Do you want to download Service Pack 3 for Windows XP now?" IDYES`
333                                 ExecShell "open" "http://www.microsoft.com/en-us/download/details.aspx?id=24"
334                         ${Else}
335                                 ExecShell "open" "http://windowsupdate.microsoft.com/"
336                         ${EndIf}
337                         Quit
338                 ${EndIf}
339                 ${If} ${RunningX64} # Windows XP 64-Bit, requires Service Pack 2
340                 ${AndIf} ${AtMostServicePack} 1
341                         MessageBox MB_TOPMOST|MB_ICONEXCLAMATION "This application requires Windows XP x64 Edition with Service Pack 2 installed.$\nWindows XP x64 Edition *without* Service Pack 2 reached end-of-life on 2009-04-14.$\nCurrent Windows XP x64 Edition (Service Pack 2) will be supported until 2014-04-08.$\n$\nPlease install Service Pack 2 now or just run Windows Update!"
342                         ${If} ${Cmd} `MessageBox MB_TOPMOST|MB_ICONQUESTION|MB_YESNO "Do you want to download Service Pack 2 for Windows XP x64 Edition now?" IDYES`
343                                 ExecShell "open" "http://www.microsoft.com/en-us/download/details.aspx?id=17791"
344                         ${Else}
345                                 ExecShell "open" "http://windowsupdate.microsoft.com/"
346                         ${EndIf}
347                         Quit
348                 ${EndIf}
349         ${EndIf}
350
351         ; --------
352
353         ${IfNot} ${UnattendedMode}
354                 !insertmacro MUI_LANGDLL_DISPLAY
355         ${EndIf}
356
357         ; --------
358
359         UserInfo::GetAccountType
360         Pop $0
361         ${If} $0 != "Admin"
362                 MessageBox MB_ICONSTOP|MB_TOPMOST "Your system requires administrative permissions in order to install this software."
363                 SetErrorLevel 740 ;ERROR_ELEVATION_REQUIRED
364                 Quit
365         ${EndIf}
366 FunctionEnd
367
368 Function un.onInit
369         System::Call 'kernel32::CreateMutexA(i 0, i 0, t "{2B3D1EBF-B3B6-4E93-92B9-6853029A7162}") i .r1 ?e'
370         Pop $0
371         ${If} $0 <> 0
372                 MessageBox MB_ICONSTOP|MB_TOPMOST "Sorry, the un-installer is already running!"
373                 Quit
374         ${EndIf}
375
376         ${IfNot} ${ForcedMode}
377                 !insertmacro MUI_LANGDLL_DISPLAY
378         ${EndIf}
379         
380         ; --------
381
382         UserInfo::GetAccountType
383         Pop $0
384         ${If} $0 != "Admin"
385                 MessageBox MB_ICONSTOP|MB_TOPMOST "Your system requires administrative permissions in order to install this software."
386                 SetErrorLevel 740 ;ERROR_ELEVATION_REQUIRED
387                 Quit
388         ${EndIf}
389 FunctionEnd
390
391
392 ;--------------------------------
393 ;GUI initialization
394 ;--------------------------------
395
396 Function MyGuiInit
397         StrCpy $0 $HWNDPARENT
398         System::Call "user32::SetWindowPos(i r0, i -1, i 0, i 0, i 0, i 0, i 3)"
399         Aero::Apply
400 FunctionEnd
401
402 Function un.MyGuiInit
403         StrCpy $0 $HWNDPARENT
404         System::Call "user32::SetWindowPos(i r0, i -1, i 0, i 0, i 0, i 0, i 3)"
405         Aero::Apply
406 FunctionEnd
407
408
409 ;--------------------------------
410 ;Macros & Auxiliary Functions
411 ;--------------------------------
412
413 !macro PrintProgress Text
414         SetDetailsPrint textonly
415         DetailPrint '${Text}'
416         SetDetailsPrint listonly
417         Sleep 1000
418 !macroend
419
420 !macro CreateWebLink ShortcutFile TargetURL
421         Push $0
422         Push $1
423         StrCpy $0 "${ShortcutFile}"
424         StrCpy $1 "${TargetURL}"
425         Call _CreateWebLink
426         Pop $1
427         Pop $0
428 !macroend
429
430 Function _CreateWebLink
431         FlushINI "$0"
432         SetFileAttributes "$0" FILE_ATTRIBUTE_NORMAL
433         DeleteINISec "$0" "DEFAULT"
434         DeleteINISec "$0" "InternetShortcut"
435         WriteINIStr "$0" "DEFAULT" "BASEURL" "$1"
436         WriteINIStr "$0" "InternetShortcut" "ORIGURL" "$1"
437         WriteINIStr "$0" "InternetShortcut" "URL" "$1"
438         WriteINIStr "$0" "InternetShortcut" "IconFile" "$SYSDIR\SHELL32.dll"
439         WriteINIStr "$0" "InternetShortcut" "IconIndex" "150"
440         FlushINI "$0"
441         SetFileAttributes "$0" FILE_ATTRIBUTE_READONLY
442 FunctionEnd
443
444 !macro GetExecutableName OutVar
445         ${StdUtils.GetParameter} ${OutVar} "Update" ""
446         ${StdUtils.TrimStr} ${OutVar}
447         ${If} "${OutVar}" == ""
448         ${OrIfNot} ${ValidFileName} "${OutVar}"
449                 StrCpy ${OutVar} "x264_launcher.exe"
450         ${EndIf}
451 !macroend
452
453 !macro DisableNextButton TmpVar
454         GetDlgItem ${TmpVar} $HWNDPARENT 1
455         EnableWindow ${TmpVar} 0
456 !macroend
457
458 !macro DisableBackButton TmpVar
459         GetDlgItem ${TmpVar} $HWNDPARENT 3
460         EnableWindow ${TmpVar} 0
461 !macroend
462
463 !macro CleanUpFiles options
464         Delete ${options} `$INSTDIR\*.exe`
465         Delete ${options} `$INSTDIR\*.dll`
466         Delete ${options} `$INSTDIR\*.txt`
467         Delete ${options} `$INSTDIR\*.htm`
468         Delete ${options} `$INSTDIR\*.html`
469         
470         RMDir /r ${options} `$INSTDIR\toolset`
471         RMDir /r ${options} `$INSTDIR\imageformats`
472         RMDir /r ${options} `$INSTDIR\sources`
473 !macroend
474
475
476 ;--------------------------------
477 ;Install Files
478 ;--------------------------------
479
480 Section "-PreInit"
481         SetShellVarContext all
482         SetOutPath "$INSTDIR"
483 SectionEnd
484
485 Section "-Clean Up Old Cruft"
486         !insertmacro PrintProgress "$(X264_LANG_STATUS_CLEANUP)"
487         !insertmacro CleanUpFiles ""
488 SectionEnd
489
490 Section "!Install Files"
491         !insertmacro PrintProgress "$(X264_LANG_STATUS_INSTFILES)"
492         
493         DeleteOldBinary:
494         !insertmacro GetExecutableName $R0
495         ClearErrors
496         Delete "$INSTDIR\$R0"
497         
498         ${If} ${Errors}
499                 MessageBox MB_TOPMOST|MB_ICONSTOP|MB_RETRYCANCEL 'Could not delete old "$R0" file. Is program still running?' IDRETRY DeleteOldBinary
500                 Abort "Could not delete old binary!"
501         ${EndIf}
502
503         SetOutPath "$INSTDIR"
504         File /a `/oname=$R0` `${X264_SOURCE_PATH}\x264_launcher.exe`
505
506         SetOutPath "$INSTDIR"
507         File /a `${X264_SOURCE_PATH}\*.dll`
508         File /a `${X264_SOURCE_PATH}\*.txt`
509         File /a `${X264_SOURCE_PATH}\*.html`
510
511         SetOutPath "$INSTDIR\imageformats"
512         File /a /r `${X264_SOURCE_PATH}\imageformats\*.*`
513
514         SetOutPath "$INSTDIR\toolset"
515         File /a /r `${X264_SOURCE_PATH}\toolset\*.*`
516
517         SetOutPath "$INSTDIR\sources"
518         File /a /r `${X264_SOURCE_PATH}\sources\*.*`
519 SectionEnd
520
521 Section "-Write Uinstaller"
522         !insertmacro PrintProgress "$(X264_LANG_STATUS_MAKEUNINST)"
523         WriteUninstaller "$INSTDIR\Uninstall.exe"
524 SectionEnd
525
526 Section "-Create Shortcuts"
527         !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
528                 !insertmacro PrintProgress "$(X264_LANG_STATUS_SHORTCUTS)"
529                 CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
530                 
531                 SetShellVarContext current
532                 
533                 Delete "$SMPROGRAMS\$StartMenuFolder\*.lnk"
534                 Delete "$SMPROGRAMS\$StartMenuFolder\*.pif"
535                 Delete "$SMPROGRAMS\$StartMenuFolder\*.url"
536                 
537                 SetShellVarContext all
538                 
539                 Delete "$SMPROGRAMS\$StartMenuFolder\*.lnk"
540                 Delete "$SMPROGRAMS\$StartMenuFolder\*.pif"
541                 Delete "$SMPROGRAMS\$StartMenuFolder\*.url"
542
543                 !insertmacro GetExecutableName $R0
544                 
545                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"        "$INSTDIR\$R0" "" "$INSTDIR\$R0" 0
546                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_LICENSE).lnk"   "$INSTDIR\LICENSE.html"
547                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_MANUAL).lnk"    "$INSTDIR\README.html"
548                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_CHANGELOG).lnk" "$INSTDIR\HISTORY.txt"
549                 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\$(X264_LANG_LINK_UNINSTALL).lnk" "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0
550                 
551                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\MuldeR's Homepage.url" "${MyWebSite}"
552                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\Doom9's Forum.url"     "http://forum.doom9.org/"
553                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\x264.com.url"          "http://x264.com/"
554                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\x265.com.url"          "http://x265.org/"
555                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\Avisynth Wiki.url"     "http://avisynth.nl/"
556                 !insertmacro CreateWebLink "$SMPROGRAMS\$StartMenuFolder\VapourSynth.com.url"   "http://www.vapoursynth.com/"
557
558                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"
559                         ${StdUtils.InvokeShellVerb} $R1 "$SMPROGRAMS\$StartMenuFolder" "Simple x264 Launcher.lnk" ${StdUtils.Const.ISV_PinToTaskbar}
560                         DetailPrint 'Pin: "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk" -> $R1'
561                 ${EndIf}
562         !insertmacro MUI_STARTMENU_WRITE_END
563 SectionEnd
564
565 Section "-Update Registry"
566         !insertmacro PrintProgress "$(X264_LANG_STATUS_REGISTRY)"
567
568         !insertmacro GetExecutableName $R0
569         WriteRegStr HKLM "${MyRegPath}" "InstallLocation" "$INSTDIR"
570         WriteRegStr HKLM "${MyRegPath}" "ExecutableName" "$R0"
571         WriteRegStr HKLM "${MyRegPath}" "DisplayIcon" "$INSTDIR\$R0,0"
572         WriteRegStr HKLM "${MyRegPath}" "UninstallString" '"$INSTDIR\Uninstall.exe"'
573         WriteRegStr HKLM "${MyRegPath}" "DisplayName" "Simple x264 Launcher v2"
574         WriteRegStr HKLM "${MyRegPath}" "Publisher" "LoRd_MuldeR <mulder2@gmx.de>"
575         WriteRegStr HKLM "${MyRegPath}" "DisplayVersion" "Build #${X264_BUILD} (${X264_DATE})"
576         WriteRegStr HKLM "${MyRegPath}" "URLInfoAbout" "${MyWebSite}"
577         WriteRegStr HKLM "${MyRegPath}" "URLUpdateInfo" "${MyWebSite}"
578         
579         WriteRegStr HKLM "${AppPaths}\x264_launcher.exe" "" "$INSTDIR\$R0"
580         WriteRegStr HKLM "${AppPaths}\x264_launcher.exe" "Path" "$INSTDIR"
581 SectionEnd
582
583 Section "-Finished"
584         !insertmacro PrintProgress "$(MUI_TEXT_FINISH_TITLE)."
585 SectionEnd
586
587
588 ;--------------------------------
589 ;Uninstaller
590 ;--------------------------------
591
592 Section "Uninstall"
593         SetOutPath "$EXEDIR"
594         !insertmacro PrintProgress "$(X264_LANG_STATUS_UNINSTALL)"
595
596         ; --------------
597         ; Startmenu
598         ; --------------
599         
600         !insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder
601         ${IfNot} "$StartMenuFolder" == ""
602                 SetShellVarContext current
603                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"
604                         ${StdUtils.InvokeShellVerb} $R1 "$SMPROGRAMS\$StartMenuFolder" "Simple x264 Launcher.lnk" ${StdUtils.Const.ISV_UnpinFromTaskbar}
605                         DetailPrint 'Unpin: "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk" -> $R1'
606                 ${EndIf}
607                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\*.*"
608                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.lnk"
609                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.url"
610                         RMDir "$SMPROGRAMS\$StartMenuFolder"
611                 ${EndIf}
612                 
613                 SetShellVarContext all
614                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk"
615                         ${StdUtils.InvokeShellVerb} $R1 "$SMPROGRAMS\$StartMenuFolder" "Simple x264 Launcher.lnk" ${StdUtils.Const.ISV_UnpinFromTaskbar}
616                         DetailPrint 'Unpin: "$SMPROGRAMS\$StartMenuFolder\Simple x264 Launcher.lnk" -> $R1'
617                 ${EndIf}
618                 ${If} ${FileExists} "$SMPROGRAMS\$StartMenuFolder\*.*"
619                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.lnk"
620                         Delete /REBOOTOK "$SMPROGRAMS\$StartMenuFolder\*.url"
621                         RMDir "$SMPROGRAMS\$StartMenuFolder"
622                 ${EndIf}
623         ${EndIf}
624
625         ; --------------
626         ; Files
627         ; --------------
628
629         ReadRegStr $R0 HKLM "${MyRegPath}" "ExecutableName"
630         ${IfThen} "$R0" == "" ${|} StrCpy $R0 "x264_launcher.exe" ${|}
631
632         Delete /REBOOTOK "$INSTDIR\$R0"
633         !insertmacro CleanUpFiles /REBOOTOK
634         RMDir "$INSTDIR"
635
636         ; --------------
637         ; Registry
638         ; --------------
639         
640         DeleteRegKey HKLM "${MyRegPath}"
641         DeleteRegKey HKCU "${MyRegPath}"
642
643         DeleteRegKey HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{54dcbccb-c905-46dc-b6e6-48563d0e9e55}"
644         DeleteRegKey HKCU "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{54dcbccb-c905-46dc-b6e6-48563d0e9e55}"
645         
646         DeleteRegKey HKLM "${AppPaths}\x264_launcher.exe"
647         DeleteRegKey HKCU "${AppPaths}\x264_launcherexe"
648
649         MessageBox MB_YESNO|MB_TOPMOST "$(X264_LANG_UNINST_PERSONAL)" IDNO +3
650         Delete "$LOCALAPPDATA\LoRd_MuldeR\Simple x264 Launcher\*.ini"
651         RMDir "$LOCALAPPDATA\LoRd_MuldeR\Simple x264 Launcher"
652
653         !insertmacro PrintProgress "$(MUI_UNTEXT_FINISH_TITLE)."
654 SectionEnd
655
656
657 ;--------------------------------
658 ;Check For Update Mode
659 ;--------------------------------
660
661 Function SkipIfUnattended
662         ${IfThen} ${UnattendedMode} ${|} Abort ${|}
663 FunctionEnd
664
665 Function CheckForUpdate
666         ${If} "$INSTDIR" == ""
667         ${OrIf} "$INSTDIR" == "$EXEDIR"
668         ${OrIfNot} ${FileExists} "$INSTDIR\x264_launcher.exe"
669                 Return
670         ${EndIf}
671
672         FindWindow $R0 "#32770" "" $HWNDPARENT
673         GetDlgItem $R1 $R0 1019
674         EnableWindow $R1 0
675
676         FindWindow $R0 "#32770" "" $HWNDPARENT
677         GetDlgItem $R1 $R0 1001
678         EnableWindow $R1 0
679 FunctionEnd
680
681 Function un.CheckForcedUninstall
682         ${IfThen} ${ForcedMode} ${|} Abort ${|}
683 FunctionEnd
684
685
686 ;--------------------------------
687 ;Locked List
688 ;--------------------------------
689
690 !macro _LockedListShow uinst
691         !insertmacro MUI_HEADER_TEXT "$(X264_LANG_LOCKEDLIST_HEADER)" "$(X264_LANG_LOCKEDLIST_TEXT)"
692         ${If} ${UnattendedMode}
693                 !insertmacro DisableBackButton $R0
694         ${EndIf}
695         ${If} ${RunningX64}
696                 InitPluginsDir
697                 File /oname=$PLUGINSDIR\LockedList64.dll `${NSISDIR}\Plugins\LockedList64.dll`
698         ${EndIf}
699         !insertmacro GetExecutableName $R0
700         LockedList::AddModule "\$R0"
701         ${If} "$R0" != "x264_launcher.exe"
702                 LockedList::AddModule "\x264_launcher.exe"
703         ${EndIf}
704         LockedList::AddModule "\Uninstall.exe"
705         !if ${uinst} < 1
706                 LockedList::AddModule "\Au_.exe"
707         !endif
708         LockedList::AddFolder "$INSTDIR"
709         LockedList::Dialog /autonext /heading "$(X264_LANG_LOCKEDLIST_HEADING)" /noprograms "$(X264_LANG_LOCKEDLIST_NOPROG)" /searching  "$(X264_LANG_LOCKEDLIST_SEARCH)" /colheadings "$(X264_LANG_LOCKEDLIST_COLHDR1)" "$(X264_LANG_LOCKEDLIST_COLHDR2)"
710         Pop $R0
711 !macroend
712
713 Function LockedListShow
714         !insertmacro _LockedListShow 0
715 FunctionEnd
716
717 Function un.LockedListShow
718         !insertmacro _LockedListShow 1
719 FunctionEnd
720
721
722 ;--------------------------------
723 ;Install Success
724 ;--------------------------------
725
726 Function RunAppFunction
727         !insertmacro DisableNextButton $R0
728         !insertmacro GetExecutableName $R0
729         ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR" "explore" ""
730         ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR\$R0" "open" "--first-run"
731 FunctionEnd
732
733 Function ShowReadmeFunction
734         !insertmacro DisableNextButton $R0
735         ${StdUtils.ExecShellAsUser} $R1 "$INSTDIR\README.html" "open" ""
736 FunctionEnd