Jul 18, 2013
06:26 AM
Thanks dude, So it means if I just wanna install on said operating systems and prevent future ones my code is also correct?
... View more
Jul 17, 2013
05:00 AM
Hi, I have an old VB6 Install Script project and I want to allow setup to run only on the following operating systems: Windows XP, Windows Server 2003 Windows Vista, Windows Server 2008 Windows 7, Windows Server 2008 R2 Windows 8, Windows Server 2012 Windows 8.1, Windows Server 2012 R2 Since the newer Windows versions are not listed there, I have wrote a code, is this correct? ------------- Before Move Data > On Begin ------------- BOOL osAccept; osAccept = FALSE; if (SYSINFO.nOSMajor = 5) then if (SYSINFO.nOSMinor = 1) || (SYSINFO.nOSMinor = 2) then osAccept = TRUE; endif; endif; if (SYSINFO.nOSMajor = 6) then if (SYSINFO.nOSMinor = 0) || (SYSINFO.nOSMinor = 1) || (SYSINFO.nOSMinor = 2) || (SYSINFO.nOSMinor = 3) then osAccept = TRUE; endif; endif; if osAccept = FALSE then MessageBox("Application is not compatible with the current operating system.", SEVERE); abort; endif;
... View more
Labels
- Labels:
-
InstallShield 2010
Jul 15, 2013
12:57 PM
Is this correct? ------------- Before Move Data > On Begin ------------- BOOL osAccept; osAccept = FALSE; if (SYSINFO.nOSMajor = 5) then if (SYSINFO.nOSMinor = 1) || (SYSINFO.nOSMinor = 2) then osAccept = TRUE; endif; endif; if (SYSINFO.nOSMajor = 6) then if (SYSINFO.nOSMinor = 0) || (SYSINFO.nOSMinor = 1) || (SYSINFO.nOSMinor = 2) || (SYSINFO.nOSMinor = 3) then osAccept = TRUE; endif; endif; if osAccept = FALSE then MessageBox("Application is not compatible with the current operating system.", SEVERE); abort; endif;
... View more
Jul 15, 2013
09:06 AM
Hi, I have an old VB6 Install Script project and I want to allow setup to run only on the following operating systems: Windows XP, Windows Server 2003 Windows Vista, Windows Server 2008 Windows 7, Windows Server 2008 R2 Windows 8, Windows Server 2012 Windows 8.1, Windows Server 2012 R2 Since the newer Windows versions are not listed there, how can I do it? Thanks 🙂
... View more
Labels
- Labels:
-
InstallShield 2009
Latest posts by us-vpn
Subject | Views | Posted |
---|---|---|
1053 | Jul 18, 2013 06:26 AM | |
3256 | Jul 17, 2013 05:00 AM | |
470 | Jul 15, 2013 12:57 PM | |
2696 | Jul 15, 2013 09:06 AM |
Activity Feed
- Posted Re: InstallScript Question on InstallShield Forum. Jul 18, 2013 06:26 AM
- Posted InstallScript Question on InstallShield Forum. Jul 17, 2013 05:00 AM
- Posted Re: InstallScript Question on InstallShield Forum. Jul 15, 2013 12:57 PM
- Posted InstallScript Question on InstallShield Forum. Jul 15, 2013 09:06 AM