I think I am doing some major screwup. I want on .dll to be installed only if its Win98, Win2K or WinMP. I use the following script.
Section "System Files (98 Only)" SecWin98
File "..\lib\gdiplus.dll"
SectionEnd
Section "System Files (ME Only)" SecWinME
File "..\lib\gdiplus.dll"
SectionEnd
Section "System Files (ME Only)" SecWin2K
File "..\lib\gdiplus.dll"
SectionEnd Still it installs gdiplus.dll on WinXP box too! I know I am doing something stupid 🙁BTW, I have 2 more questions:
1.) Is there any way to specify to install gdiplus.dll if the OS is not WinXP and Win2003?
2.) Is there anyway to stop installation after showing a message if the OS is Win95?
Thanks.