Skip to content
Snippets Groups Projects
Commit 4673020c authored by Tank_Master's avatar Tank_Master
Browse files

Update Windows Installer script to block Vista with SP1 and lower.

parent b362f247
No related branches found
No related tags found
No related merge requests found
Showing
with 9 additions and 32 deletions
...@@ -27,12 +27,12 @@ ...@@ -27,12 +27,12 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Compiler flags ;; Compiler flags
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
SetOverwrite on ; overwrite files SetOverwrite on ; Overwrite files
SetCompress auto ; compress iff saves space SetCompress auto ; Compress if saves space
SetCompressor /solid lzma ; compress whole installer as one block SetCompressor /solid lzma ; Compress whole installer as one block
SetDatablockOptimize off ; only saves us 0.1%, not worth it SetDatablockOptimize off ; Only saves us 0.1%, not worth it
XPStyle on ; add an XP manifest to the installer XPStyle on ; Add an XP manifest to the installer
RequestExecutionLevel admin ; on Vista we must be admin because we write to Program Files RequestExecutionLevel admin ; For when we write to Program Files
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Project flags ;;; Project flags
...@@ -118,7 +118,6 @@ Var DO_UNINSTALL_V2 ; If non-null, path to a previous Viewer 2 installation ...@@ -118,7 +118,6 @@ Var DO_UNINSTALL_V2 ; If non-null, path to a previous Viewer 2 installation
!insertmacro GetParameters !insertmacro GetParameters
!insertmacro GetOptions !insertmacro GetOptions
!include WinVer.nsh ; For OS and SP detection !include WinVer.nsh ; For OS and SP detection
!include x64.nsh ; For 64bit OS detection
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; After install completes, launch app ;;; After install completes, launch app
...@@ -145,26 +144,18 @@ FunctionEnd ...@@ -145,26 +144,18 @@ FunctionEnd
; Currently: Windows 32bit XP SP3, 64bit XP SP2 and Server 2003 SP2 ; Currently: Windows 32bit XP SP3, 64bit XP SP2 and Server 2003 SP2
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Function CheckWindowsVersion Function CheckWindowsVersion
${If} ${AtMostWin2000} ${If} ${AtMostWin2003}
MessageBox MB_OK $(CheckWindowsVersionMB) MessageBox MB_OK $(CheckWindowsVersionMB)
Quit Quit
${EndIf} ${EndIf}
${If} ${IsWinXP} ${If} ${IsWinVista}
${AndIfNot} ${RunningX64}
${AndIfNot} ${IsServicePack} 3
MessageBox MB_OK $(CheckWindowsVersionMB)
Quit
${EndIf}
${If} ${IsWinXP}
${AndIf} ${RunningX64}
${AndIfNot} ${IsServicePack} 2 ${AndIfNot} ${IsServicePack} 2
MessageBox MB_OK $(CheckWindowsVersionMB) MessageBox MB_OK $(CheckWindowsVersionMB)
Quit Quit
${EndIf} ${EndIf}
${If} ${IsWin2003} ${If} ${IsWin2008}
${AndIfNot} ${IsServicePack} 2 ${AndIfNot} ${IsServicePack} 2
MessageBox MB_OK $(CheckWindowsVersionMB) MessageBox MB_OK $(CheckWindowsVersionMB)
Quit Quit
...@@ -175,20 +166,6 @@ FunctionEnd ...@@ -175,20 +166,6 @@ FunctionEnd
;Recommend Upgrading Service Pack ;Recommend Upgrading Service Pack
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Function CheckWindowsServPack Function CheckWindowsServPack
${If} ${IsWinVista}
${AndIfNot} ${IsServicePack} 2
MessageBox MB_OK $(CheckWindowsServPackMB)
DetailPrint $(UseLatestServPackDP)
Return
${EndIf}
${If} ${IsWin2008}
${AndIfNot} ${IsServicePack} 2
MessageBox MB_OK $(CheckWindowsServPackMB)
DetailPrint $(UseLatestServPackDP)
Return
${EndIf}
${If} ${IsWin7} ${If} ${IsWin7}
${AndIfNot} ${IsServicePack} 1 ${AndIfNot} ${IsServicePack} 1
MessageBox MB_OK $(CheckWindowsServPackMB) MessageBox MB_OK $(CheckWindowsServPackMB)
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment