name "使用头文件判断操作系统" outfile '使用头文件判断操作系统.exe' !include "MUI.nsh" !include "WinVer.nsh" !insertmacro MUI_LANGUAGE "simpchinese" Section SectionEnd Function .onInit ${If} ${AtLeastWinVista} MessageBox MB_OK "系统为 Vista 或 Vista 以上系统!" ${EndIf} ${If} ${IsWin2000} ${OrIf} ${IsWinXP} MessageBox MB_OK "系统为 2000 或 XP!" ${EndIf} ${If} ${AtMostWinXP} MessageBox MB_OK "系统版本为 XP 或更低版本的系统!" ${EndIf} FunctionEnd |
name "使用头文件判断操作系统" outfile '使用头文件判断操作系统.exe' !include "MUI.nsh" !include "WinVer.nsh" !insertmacro MUI_LANGUAGE "simpchinese" Section SectionEnd Function .onInit ${Unless} ${ISWinXP} MessageBox MB_OK "本程序只能安装在 Windows XP 系统上!" Abort ${EndIf} FunctionEnd |
最新的WinVer.nsh下载(下载后置于\NSIS\Inclued中):