home *** CD-ROM | disk | FTP | other *** search
/ Bell Atlantic.net / bellatlantic.iso / pc / LAUNCH.INI < prev    next >
INI File  |  1998-03-31  |  1KB  |  36 lines

  1. ; This file is used to configure a setup launcher.
  2. ; Each section represents an OS that can be detected.
  3. ; Each section can have either a
  4. ;   command=foobar   foobar gets appended to the path where
  5. ;                     this setup.exe exist.  Do not lead with backslash.
  6. ;                     This command is then execute through WinExec()
  7. ;                     and this app terminates.
  8. ;   postError=My error message saying OS not supported
  9. ;                     This message will be posted.  Message caption will
  10. ;                    be the Caption item in Error Messages section
  11.                
  12.  
  13. [Error Messages]
  14. ; This is the caption that will appear in any error message generated
  15. Caption=Setup Launcher
  16.  
  17. [Windows 16]
  18. PostError=This program requires Windows 95 or Windows NT 4.0!
  19. command=nsetup16\nsetup16.exe
  20.  
  21. [Windows 95]
  22. PostError=Detected Windows 95
  23. command=nsetup32\nsetup32.exe
  24.  
  25. [Windows NT Original GUI]
  26. PostError=This program requires Windows 95 or Windows NT 4.0
  27.  
  28.  
  29. [Windows NT New GUI]
  30. PostError=Detected Windows NT version 4.0 or newer
  31. command=nsetup32\nsetup32.exe
  32.  
  33. [OS UNDEFINED]
  34. PostError=Undefined Operating System detected.  Unable to install application
  35.  
  36.