2014-03-02 49 views

回答

1

看一看這樣的:

!include WinVer.nsh 
!include LogicLib.nsh 

Function .onInit 
    ${If} ${IsWinXP} ; or use ${AtMostWinXP} instead 
     MessageBox MB_OK "Does not work on XP" 
     Quit 
    ${Else} 
     MessageBox MB_OK "Looking good, sir!" 
    ${EndIf} 
FunctionEnd 
+0

謝謝Idleberg :-) –