
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7330 212acab6-be3b-0410-9dea-997c60f758d6
823 lines
38 KiB
NSIS
823 lines
38 KiB
NSIS
####
|
|
#
|
|
# This massive script tests WinVer's version, SP, platform and server detection.
|
|
# It also tests comparison of version and SP with every other available version.
|
|
#
|
|
# To make this work on one computer, a script storing the result of GetVersionEx
|
|
# was executed on a number of different Windows versions. Using a hack in WinVer
|
|
# this script replaces this computer's results with the ones from the script and
|
|
# runs the tests for every stored result.
|
|
#
|
|
# To add a test for another version, use the following script.
|
|
#
|
|
# !include LogicLib.nsh
|
|
#
|
|
# OutFile WinVer.exe
|
|
# ShowInstDetails show
|
|
#
|
|
# Function PrintSysVersion
|
|
#
|
|
# System::Alloc 156
|
|
# Pop $0
|
|
# System::Call *$0(ir1)
|
|
# System::Call kernel32::GetVersionEx(pr0)i.R0
|
|
#
|
|
# DetailPrint 'StrCpy $2_RES $R0'
|
|
#
|
|
# System::Call '*$0(i.R0,i.R1,i.R2,i.R3,i.R4,&t128.R5,&i2.R6,&i2.R7,&i2.R8,&i1.R9,&i1)'
|
|
# DetailPrint 'StrCpy $2_CSD "$R5"'
|
|
# DetailPrint 'StrCpy $2_INIT "i $R0, i $R1, i $R2, i $R3, i $R4, &t128 s, &i2 $R6, &i2 $R7, &i2 $R8, &i1 $R9, &i1 0"'
|
|
#
|
|
# StrCpy $R0 $0
|
|
# IntOp $R1 $R0 + $1
|
|
# IntOp $R1 $R1 - 1
|
|
# StrCpy $R3 '# '
|
|
#
|
|
# ${For} $R2 $R0 $R1
|
|
#
|
|
# System::Call *$R2(&i1.R4)
|
|
# IntFmt $R4 %02x $R4
|
|
# StrCpy $R3 $R3$R4
|
|
#
|
|
# ${Next}
|
|
#
|
|
# DetailPrint $R3
|
|
#
|
|
# System::Free $0
|
|
#
|
|
# FunctionEnd
|
|
#
|
|
# Section
|
|
#
|
|
# DetailPrint "# OSVERSIONINFOEX"
|
|
#
|
|
# StrCpy $1 156
|
|
# StrCpy $2 "$$OSVERSIONINFOEX"
|
|
# Call PrintSysVersion
|
|
#
|
|
# DetailPrint ""
|
|
#
|
|
# DetailPrint "# OSVERSIONINFO"
|
|
#
|
|
# StrCpy $1 148
|
|
# StrCpy $2 "$$OSVERSIONINFO"
|
|
# Call PrintSysVersion
|
|
#
|
|
# SectionEnd
|
|
#
|
|
#
|
|
# EXPECTED RESULTS
|
|
#
|
|
# SUCCESS Windows 95 OSR B
|
|
# SUCCESS Windows 98
|
|
# SUCCESS Windows ME
|
|
# SUCCESS Windows NT4 SP1
|
|
# SUCCESS Windows NT4 SP6
|
|
# SUCCESS Windows 2000
|
|
# SUCCESS Windows 2000 SP4
|
|
# SUCCESS Windows XP SP2
|
|
# SUCCESS Windows XP SP3
|
|
# SUCCESS Windows XP x64 SP1
|
|
# SUCCESS Windows Vista
|
|
# SUCCESS Windows Server 2008
|
|
# Completed
|
|
#
|
|
####
|
|
|
|
Name winver
|
|
OutFile winver.exe
|
|
|
|
RequestExecutionLevel User
|
|
Unicode False
|
|
XPStyle on
|
|
ShowInstDetails show
|
|
|
|
Var OSVERSIONINFO_RES
|
|
Var OSVERSIONINFO_CSD
|
|
Var OSVERSIONINFO_INIT
|
|
Var OSVERSIONINFOEX_RES
|
|
Var OSVERSIONINFOEX_CSD
|
|
Var OSVERSIONINFOEX_INIT
|
|
Var WVSTATS_TESTS
|
|
Var WVSTATS_FAILS
|
|
|
|
!define __WinVer_GWV '!insertmacro __WinVerTest_GWV '
|
|
|
|
!include Util.nsh
|
|
!macro __WinVerTest_GWV_Imp ; This macro simulates the GetWinVer instruction
|
|
System::Store S
|
|
System::Call '*(&i999)p.r0'
|
|
Push $OSVERSIONINFO_CSD
|
|
System::Call '*$0($OSVERSIONINFO_INIT)'
|
|
${If} $OSVERSIONINFOEX_RES <> 0
|
|
Push $OSVERSIONINFOEX_CSD
|
|
System::Call '*$0($OSVERSIONINFOEX_INIT)'
|
|
${EndIf}
|
|
Pop $8
|
|
${If} $8 == Product
|
|
System::Call '*$0(i,i,i,i,i.r1,&t128,&i2,&i2,&i2,&i1.r2)'
|
|
StrCpy $9 0 ; W9x
|
|
${If} $1 U>= 2
|
|
StrCpy $9 $2
|
|
${IfThen} $9 = 0 ${|} StrCpy $9 4 ${|}
|
|
${EndIf}
|
|
${ElseIf} $8 == NTDDIMajMin
|
|
System::Call '*$0(i,i.r1,i.r2)'
|
|
IntOp $9 $1 << 8
|
|
IntOp $9 $9 | $2
|
|
${ElseIf} $8 == Build
|
|
System::Call '*$0(i,i,i,i.r9)'
|
|
${ElseIf} $8 == ServicePack
|
|
System::Call '*$0(i,i,i,i,i,&t128.r1,&i2.r9,&i2,&i2,&i1)'
|
|
StrCpy $2 $1 1
|
|
${If} $9 = 0
|
|
${AndIf} $2 != ""
|
|
StrCpy $9 $1 "" 13
|
|
${If} $2 != "S"
|
|
StrCpy $2 $1 1 1
|
|
StrCmp $2 "" +3
|
|
IntFmt $2 "%#x" 0x$2
|
|
IntOp $9 $2 - 9 ; W9x
|
|
${EndIf}
|
|
${EndIf}
|
|
${Else}
|
|
MessageBox mb_iconstop "Unknown: $8"
|
|
Quit
|
|
${EndIf}
|
|
System::Free $0
|
|
Push $9
|
|
System::Store L
|
|
!macroend
|
|
!macro __WinVerTest_GWV outvar field
|
|
Push "${field}"
|
|
${CallArtificialFunction} __WinVerTest_GWV_Imp
|
|
Pop ${outvar}
|
|
!macroend
|
|
|
|
!macro __WinVer_Call_GetVersionEx STRUCT_SIZE
|
|
|
|
!if ${STRUCT_SIZE} == ${OSVERSIONINFO_SIZE}
|
|
|
|
StrCpy $3 $OSVERSIONINFO_RES
|
|
Push $OSVERSIONINFO_CSD
|
|
System::Call '*$0($OSVERSIONINFO_INIT)'
|
|
|
|
!endif
|
|
|
|
!if ${STRUCT_SIZE} == ${OSVERSIONINFOEX_SIZE}
|
|
|
|
StrCpy $3 $OSVERSIONINFOEX_RES
|
|
Push $OSVERSIONINFOEX_CSD
|
|
System::Call '*$0($OSVERSIONINFOEX_INIT)'
|
|
|
|
!endif
|
|
|
|
!macroend
|
|
|
|
!include WinVer.nsh
|
|
!insertmacro __WinVer_DeclareVars
|
|
|
|
!macro TestWinVerDiff NAME VER V_
|
|
|
|
!if ${VER} != ${V_}
|
|
|
|
${If} ${IsWin${V_}}
|
|
|
|
DetailPrint "Version detection failed for ${NAME}"
|
|
DetailPrint " Expected: ${VER}"
|
|
DetailPrint " Got: ${V_}"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
!endif
|
|
|
|
!macroend
|
|
|
|
!define ORDER_95 0
|
|
!define ORDER_NT4 0
|
|
!define ORDER_98 1
|
|
!define ORDER_ME 2
|
|
!define ORDER_2000 3
|
|
!define ORDER_XP 4
|
|
!define ORDER_2003 5
|
|
!define ORDER_Vista 6
|
|
!define ORDER_2008 7
|
|
!define ORDER_7 8
|
|
!define ORDER_2008R2 9
|
|
|
|
!macro TestWinVerOrder NAME VER V_
|
|
|
|
!if ${ORDER_${VER}} >= ${ORDER_${V_}}
|
|
|
|
${IfNot} ${AtLeastWin${V_}}
|
|
|
|
DetailPrint "Version comparison failed for ${NAME}"
|
|
DetailPrint " Expected: ${VER} >= ${V_}"
|
|
DetailPrint " Got: ${VER} < ${V_}"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
!endif
|
|
|
|
!if ${ORDER_${VER}} <= ${ORDER_${V_}}
|
|
|
|
${IfNot} ${AtMostWin${V_}}
|
|
|
|
DetailPrint "Version comparison failed for ${NAME}"
|
|
DetailPrint " Expected: ${VER} <= ${V_}"
|
|
DetailPrint " Got: ${VER} > ${V_}"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
!endif
|
|
|
|
!macroend
|
|
|
|
!macro TestWinVer NAME VER SP SERVER PLATFORM
|
|
|
|
StrCpy $R0 "SUCCESS"
|
|
|
|
StrCpy $__WINVERV ""
|
|
StrCpy $__WINVERSP ""
|
|
|
|
# test version equality
|
|
|
|
${IfNot} ${IsWin${VER}}
|
|
${OrIfNot} ${AtLeastWin${VER}}
|
|
${OrIfNot} ${AtMostWin${VER}}
|
|
|
|
DetailPrint "Version detection failed for ${NAME}"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} 95
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} 98
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} ME
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} NT4
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} 2000
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} XP
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} 2003
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} Vista
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} 2008
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} 7
|
|
!insertmacro TestWinVerDiff "${NAME}" ${VER} 2008R2
|
|
|
|
# test version comparison
|
|
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} 95
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} 98
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} ME
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} NT4
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} 2000
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} XP
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} 2003
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} Vista
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} 2008
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} 7
|
|
!insertmacro TestWinVerOrder "${NAME}" ${VER} 2008R2
|
|
|
|
# test service pack equality
|
|
|
|
IntOp $0 ${SP} - 1
|
|
IntOp $1 ${SP} + 1
|
|
|
|
${IfNot} ${IsServicePack} ${SP}
|
|
${OrIf} ${IsServicePack} $0
|
|
${OrIf} ${IsServicePack} $1
|
|
|
|
${WinVerGetServicePackLevel} $2
|
|
|
|
DetailPrint "Service pack detection failed for ${NAME}"
|
|
DetailPrint " Expected: ${SP}"
|
|
DetailPrint " Got: $2"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
# test service pack comparison
|
|
|
|
${IfNot} ${AtLeastServicePack} ${SP}
|
|
${OrIfNot} ${AtLeastServicePack} $0
|
|
${OrIfNot} ${AtMostServicePack} ${SP}
|
|
${OrIfNot} ${AtMostServicePack} $1
|
|
|
|
DetailPrint "Service pack comparison failed for ${NAME}"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
|
|
# test server detection
|
|
|
|
StrCpy $0 "client"
|
|
${If} ${IsServerOS}
|
|
StrCpy $0 "server"
|
|
${EndIf}
|
|
|
|
${If} ${SERVER} != $0
|
|
|
|
DetailPrint "Server detection failed for ${NAME}"
|
|
DetailPrint " Expected: ${SERVER}"
|
|
DetailPrint " Got: $0"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
# test platform
|
|
|
|
StrCpy $0 "9x"
|
|
${If} ${IsNT}
|
|
StrCpy $0 "nt"
|
|
${EndIf}
|
|
|
|
${If} ${PLATFORM} != $0
|
|
|
|
DetailPrint "Platform detection failed for ${NAME}"
|
|
DetailPrint " Expected: ${PLATFORM}"
|
|
DetailPrint " Got: $0"
|
|
|
|
StrCpy $R0 "FAILURE"
|
|
IntOp $WVSTATS_FAILS $WVSTATS_FAILS + 1
|
|
|
|
${EndIf}
|
|
IntOp $WVSTATS_TESTS $WVSTATS_TESTS + 1
|
|
|
|
DetailPrint "$R0 ${NAME}"
|
|
|
|
!macroend
|
|
|
|
###############################################################
|
|
###############################################################
|
|
###############################################################
|
|
|
|
Section
|
|
|
|
#### WINDOWS 95 OSR B [4.00.950 B]
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 0
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 0, i 0, i 0, i 0, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD " B"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 4, i 0, i 67109975, i 1, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 94000000040000000000000057040004010000002042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 95 OSR B" 95 2 client 9x
|
|
|
|
#### WINDOWS 98
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 0
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 0, i 0, i 0, i 0, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD " "
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 4, i 10, i 67766222, i 1, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 94000000040000000a000000ce070a04010000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 98" 98 0 client 9x
|
|
|
|
#### WINDOWS 98 SE
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD " A "
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 4, i 10, i 67766446, i 1, &t128 s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 9c000000040000000a000000ae080a040100000020412000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD " A "
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 4, i 10, i 67766446, i 1, &t128 s, &i2 64, &i2 40960, &i2 8544, &i1 68, &i1 0"
|
|
# 94000000040000000a000000ae080a04010000002041200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 98 SE" 98 1 client 9x
|
|
|
|
#### WINDOWS ME
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD " "
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 4, i 90, i 73010104, i 1, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 9c000000040000005a000000b80b5a040100000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD " "
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 4, i 90, i 73010104, i 1, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 94000000040000005a000000b80b5a04010000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows ME" ME 0 client 9x
|
|
|
|
#### WINDOWS NT4 SP1 (Client/Server unspecified)
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 0
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 0, i 0, i 0, i 0, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 4, i 0, i 1381, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 940000000400000000000000650500000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows NT4 SP1" NT4 1 client nt ; Server can only be detected by reading the registry, cannot be performed in test environment.
|
|
DetailPrint "NOTE: NT4 SP1 client/server test is inaccurate"
|
|
|
|
#### WINDOWS NT4 SP6 Server
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 6"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 4, i 0, i 1381, i 2, &t128s, &i2 6, &i2 0, &i2 0, &i1 3, &i1 0"
|
|
# 9c0000000400000000000000650500000200000053657276696365205061636b20360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000300
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 6"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 4, i 0, i 1381, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 940000000400000000000000650500000200000053657276696365205061636b2036000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows NT4 SP6" NT4 6 server nt
|
|
|
|
#### WINDOWS 2000 SP0
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 0, i 2195, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 1, &i1 0"
|
|
# 9c0000000500000000000000930800000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD ""
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 0, i 2195, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 94000000050000000000000093080000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 2000 SP0" 2000 0 client nt
|
|
|
|
#### WINDOWS 2000 SP1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 0, i 2195, i 2, &t128 s, &i2 1, &i2 0, &i2 0, &i1 1, &i1 0"
|
|
# 9c0000000500000000000000930800000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000011e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 0, i 2195, i 2, &t128 s, &i2 0, &i2 0, &i2 7, &i1 20, &i1 0"
|
|
# 940000000500000000000000930800000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 2000 SP1" 2000 1 client nt
|
|
|
|
#### WINDOWS 2000 SP2
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 0, i 2195, i 2, &t128 s, &i2 2, &i2 0, &i2 0, &i1 1, &i1 0"
|
|
# 9c0000000500000000000000930800000200000053657276696365205061636b2032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000011e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 0, i 2195, i 2, &t128 s, &i2 0, &i2 0, &i2 5, &i1 20, &i1 0"
|
|
# 940000000500000000000000930800000200000053657276696365205061636b2032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 2000 SP2" 2000 2 client nt
|
|
|
|
#### WINDOWS 2000 SP3
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 3"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 0, i 2195, i 2, &t128 s, &i2 3, &i2 0, &i2 0, &i1 1, &i1 0"
|
|
# 9c0000000500000000000000930800000200000053657276696365205061636b2033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000011e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 3"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 0, i 2195, i 2, &t128 s, &i2 0, &i2 0, &i2 7, &i1 20, &i1 0"
|
|
# 940000000500000000000000930800000200000053657276696365205061636b2033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 2000 SP3" 2000 3 client nt
|
|
|
|
#### WINDOWS 2000 SP4
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 4"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 0, i 2195, i 2, &t128s, &i2 4, &i2 0, &i2 0, &i1 1, &i1 0"
|
|
# 9c0000000500000000000000930800000200000053657276696365205061636b20340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 4"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 0, i 2195, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 940000000500000000000000930800000200000053657276696365205061636b2034000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 2000 SP4" 2000 4 client nt
|
|
|
|
#### WINDOWS XP PRO SP1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 1, i 2600, i 2, &t128 s, &i2 1, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000500000001000000280a00000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000001011e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 1, i 2600, i 2, &t128 s, &i2 93, &i2 0, &i2 26, &i1 20, &i1 0"
|
|
# 940000000500000001000000280a00000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows XP Pro SP1" XP 1 client nt
|
|
|
|
#### WINDOWS XP PRO SP2
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 1, i 2600, i 2, &t128s, &i2 2, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000500000001000000280a00000200000053657276696365205061636b20320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000010100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 1, i 2600, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 940000000500000001000000280a00000200000053657276696365205061636b2032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows XP Pro SP2" XP 2 client nt
|
|
|
|
#### WINDOWS XP PRO SP3
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 3"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 1, i 2600, i 2, &t128s, &i2 3, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000500000001000000280a00000200000053657276696365205061636b20330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000010100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 3"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 1, i 2600, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 940000000500000001000000280a00000200000053657276696365205061636b2033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows XP Pro SP3" XP 3 client nt
|
|
|
|
#### WINDOWS XP x64 SP1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 2, i 3790, i 2, &t128s, &i2 1, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000500000002000000ce0e00000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000001011e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 2, i 3790, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 940000000500000002000000ce0e00000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows XP x64 SP1" XP 1 client nt
|
|
|
|
#### WINDOWS SERVER 2003 STANDARD EDITION SP0
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 2, i 3790, i 2, &t128 s, &i2 0, &i2 0, &i2 272, &i1 3, &i1 0"
|
|
# 9c0000000500000002000000ce0e00000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010300
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD ""
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 2, i 3790, i 2, &t128 s, &i2 0, &i2 0, &i2 7, &i1 20, &i1 0"
|
|
# 940000000500000002000000ce0e0000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Server 2003 SP0" 2003 0 server nt
|
|
|
|
#### WINDOWS SERVER 2003 STANDARD EDITION SP1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 2, i 3790, i 2, &t128 s, &i2 1, &i2 0, &i2 272, &i1 3, &i1 0"
|
|
# 9c0000000500000002000000ce0e00000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000001001031e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 2, i 3790, i 2, &t128 s, &i2 0, &i2 0, &i2 44, &i1 20, &i1 0"
|
|
# 940000000500000002000000ce0e00000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Server 2003 SP1" 2003 1 server nt
|
|
|
|
#### WINDOWS SERVER 2003 STANDARD EDITION SP2
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 2, i 3790, i 2, &t128 s, &i2 2, &i2 0, &i2 272, &i1 3, &i1 0"
|
|
# 9c0000000500000002000000ce0e00000200000053657276696365205061636b2032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000001001031e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 2, i 3790, i 2, &t128 s, &i2 93, &i2 0, &i2 20, &i1 20, &i1 0"
|
|
# 940000000500000002000000ce0e00000200000053657276696365205061636b2032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Server 2003 SP2" 2003 2 server nt
|
|
|
|
#### WINDOWS SERVER 2003 R2
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 5, i 2, i 3790, i 2, &t128 s, &i2 2, &i2 0, &i2 274, &i1 3, &i1 0"
|
|
# 9c0000000500000002000000ce0e00000200000053657276696365205061636b2032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000001201031e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 2"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 5, i 2, i 3790, i 2, &t128 s, &i2 0, &i2 0, &i2 44, &i1 20, &i1 0"
|
|
# 940000000500000002000000ce0e00000200000053657276696365205061636b2032000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Server 2003 x64 R2" 2003 2 server nt
|
|
|
|
#### WINDOWS VISTA ULTIMATE SP0
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 0, i 6000, i 2, &t128s, &i2 0, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000600000000000000701700000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD ""
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 0, i 6000, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 94000000060000000000000070170000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Vista SP0" Vista 0 client nt
|
|
|
|
#### WINDOWS VISTA ULTIMATE SP1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 0, i 6001, i 2, &t128 s, &i2 1, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000600000000000000711700000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000001011e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 0, i 6001, i 2, &t128 s, &i2 114, &i2 118, &i2 43684, &i1 202, &i1 0"
|
|
# 940000000600000000000000711700000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Vista SP1" Vista 1 client nt
|
|
|
|
#### WINDOWS VISTA x64 SP1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 0, i 6001, i 2, &t128 s, &i2 1, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000600000000000000711700000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000001011e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 0, i 6001, i 2, &t128 s, &i2 10402, &i2 0, &i2 5938, &i1 49, &i1 0"
|
|
# 940000000600000000000000711700000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Vista x64 SP1" Vista 1 client nt
|
|
|
|
#### WINDOWS 2008 SERVER SP1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 0, i 6001, i 2, &t128s, &i2 1, &i2 0, &i2 272, &i1 3, &i1 0"
|
|
# 9c0000000600000000000000711700000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000001001031e
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD "Service Pack 1"
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 0, i 6001, i 2, &t128s, &i2 0, &i2 0, &i2 0, &i1 0, &i1 0"
|
|
# 940000000600000000000000711700000200000053657276696365205061636b2031000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows Server 2008" 2008 1 server nt
|
|
|
|
#### WINDOWS 7 RC1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 1, i 7100, i 2, &t128 s, &i2 0, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000600000001000000bc1b00000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD ""
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 1, i 7100, i 2, &t128 s, &i2 28503, &i2 0, &i2 953, &i1 255, &i1 0"
|
|
# 940000000600000001000000bc1b0000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 7" 7 0 client nt
|
|
|
|
#### WINDOWS 7 x64 RC1
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 1, i 7100, i 2, &t128 s, &i2 0, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000600000001000000bc1b00000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD ""
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 1, i 7100, i 2, &t128 s, &i2 22455, &i2 0, &i2 31205, &i1 95, &i1 0"
|
|
# 940000000600000001000000bc1b0000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 7 x64" 7 0 client nt
|
|
|
|
#### WINDOWS 7 Enterprise x64 RTM
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 1, i 7600, i 2, &t128 s, &i2 0, &i2 0, &i2 256, &i1 1, &i1 0"
|
|
# 9c0000000600000001000000b01d00000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD ""
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 1, i 7600, i 2, &t128 s, &i2 0, &i2 0, &i2 19720, &i1 113, &i1 0"
|
|
# 940000000600000001000000b01d0000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 7 Enterprise x64" 7 0 client nt
|
|
|
|
#### WINDOWS 2008 R2 x64
|
|
|
|
# OSVERSIONINFOEX
|
|
StrCpy $OSVERSIONINFOEX_RES 1
|
|
StrCpy $OSVERSIONINFOEX_CSD ""
|
|
StrCpy $OSVERSIONINFOEX_INIT "i 156, i 6, i 1, i 7100, i 2, &t128 s, &i2 0, &i2 0, &i2 272, &i1 3, &i1 0"
|
|
# 9c0000000600000001000000bc1b00000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010300
|
|
|
|
# OSVERSIONINFO
|
|
StrCpy $OSVERSIONINFO_RES 1
|
|
StrCpy $OSVERSIONINFO_CSD ""
|
|
StrCpy $OSVERSIONINFO_INIT "i 148, i 6, i 1, i 7100, i 2, &t128 s, &i2 37797, &i2 0, &i2 9341, &i1 83, &i1 0"
|
|
# 940000000600000001000000bc1b0000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
!insertmacro TestWinVer "Windows 2008 R2 x64" 2008R2 0 server nt
|
|
|
|
SectionEnd
|
|
|
|
Section "-Results"
|
|
IntOp $0 $WVSTATS_TESTS - $WVSTATS_FAILS
|
|
StrCpy $1 "Passed $0 of $WVSTATS_TESTS tests"
|
|
${If} $0 <> $WVSTATS_TESTS
|
|
Abort $1
|
|
${Else}
|
|
DetailPrint $1
|
|
${EndIf}
|
|
SectionEnd
|