15 lines
199 B
NSIS
15 lines
199 B
NSIS
![]() |
Name winver
|
||
|
OutFile winver.exe
|
||
|
|
||
|
!include WinVer.nsh
|
||
|
|
||
|
# basic winver fun & games to make sure it compiles
|
||
|
|
||
|
Section
|
||
|
|
||
|
${If} ${IsWin2000}
|
||
|
${If} ${AtLeastServicePack} 4
|
||
|
${EndIf}
|
||
|
${EndIf}
|
||
|
|
||
|
SectionEnd
|