Hi to all,
I'm totally new to NSIS... I went through the manual & forums but I could not find what I need.
My installer needs to be multilingual (that'll be for later) and to install files in several directories. The hard part is that files are different if target OS is XP, 98, 2000... I've found several posts speaking of that, got the GetWindowsVersion script and found the Quick script generator.
But I still can't figure out how to write the script...
Any pointers ? Hints ?
Thanks in advance !
Ciegalo
Newbie : other package ort file list depending on windows Ver
3 posts
Use LogicLib.
See Examples\LogicLib
-Stu
See Examples\LogicLib
-Stu
Quick Setup Script Generator could not help you on that. You have to write the code manually :-)
Using LogicLib would be the easiest way. For example:
Get the results from GetWindowsVersion
${If} ; is win 98 install these files
${ElseIf} ; is win 2000 install those
etc. See the included LogicLib example.
regards
Using LogicLib would be the easiest way. For example:
Get the results from GetWindowsVersion
${If} ; is win 98 install these files
${ElseIf} ; is win 2000 install those
etc. See the included LogicLib example.
regards