In the "Project Settings" dialog, "Platforms" tab, I select Windows 2000 and Windows XP as the target platforms for my setup, and all file groups have been set to XP/2K.
However, the setup still runs on a 9X platform. What I expect to see is "This product only runs on 2K/XP" type of message at startup.
Am I missing something?
Thanks,
Rick
This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.

Prevent installation if not 2K/XP
Started by
rhoward99
, Feb 11 2003 21:49
2 replies to this topic
Posted 12 February 2003 - 11:58
You will have to write this into your script yourself. Display a MassageBox based on SYSINFO.
Stefan Krüger
InstallSite.org twitter facebook
Posted 10 April 2003 - 21:01
Try something like this at the begining of your script:
IF !(SYSINFO.WINNT.bWin2000 || SYSINFO.WINNT.bWinXP) then
MessageBox("Unsupported Platform!",SEVERE);
abort;
endif;
IF !(SYSINFO.WINNT.bWin2000 || SYSINFO.WINNT.bWinXP) then
MessageBox("Unsupported Platform!",SEVERE);
abort;
endif;