home *** CD-ROM | disk | FTP | other *** search
/ IBM CD-ROM Sampler / IBM_CD-ROM_Multimedia_Sampler_IBM_1995.iso / install.dat < prev    next >
Text File  |  1995-07-06  |  2KB  |  104 lines

  1.      //To Install the IBM Multimedia CD-ROM Sampler
  2. @DefineProject
  3.     @Name = "IBM CD SAMPLER"
  4.     @Version = "1.0"
  5.     @OutDrive = C
  6.     @Subdir = "\\IBMMSHD"
  7.  
  8.     
  9. @EndProject
  10.  
  11.     //Install????
  12. @Display
  13.     Would you like to install 
  14.     the @Name ?
  15.     
  16.     You should RESTART Windows at the end of
  17.     this process.
  18.  
  19.     Please read the README.TXT for the latest
  20.     information on the @Name.
  21.  
  22.     @pause
  23. @EndDisplay
  24.  
  25. @Display
  26.     The @Name Installer will be placing files onto
  27.     your hard drive as well as installing QuickTime
  28.     for Windows 2.0.1 and Video for Windows 1.1.
  29.  
  30.              Sampler = 3Mb
  31.            QuickTime = 1Mb
  32.        Video for Windows = 1Mb
  33.     @pause
  34. @EndDisplay
  35.     //What Drive? LINE 23
  36. @GetOutDrive
  37.     Which drive would you like to install the 
  38.     @Name onto?
  39.     @Suppress(0,1)
  40.     @Suppress(0,16)
  41.     @suppress(@InDrive)
  42.  
  43.  
  44.  
  45. @EndOutDrive
  46.  
  47.     //Not On Floppy or CD-ROM
  48. @If (@Removable(@OutDrive))
  49.     @Display
  50.         You can NOT use this drive!
  51.  
  52.         @Pause
  53.         @Abort
  54.     @EndDisplay
  55. @EndIf
  56.  
  57.     //Name that path! LINE 45
  58. @GetSubdir
  59.     Which directory would you like to install 
  60.     @Name to?
  61.     @Prompt = "Which directory ([Enter] = @Subdir)?"
  62. @EndSubdir
  63.  
  64.     //Copy those Files
  65.  
  66. @DefineDisk
  67.     @Label = "IBMMSCD"
  68.  
  69.     @File PROJECT.EXE
  70.     @File README.TXT 
  71.     @File FILEIO.DLL 
  72.     @File LINGO.INI
  73.     @File MainMenu.EXE
  74.     @File Sampler.exe
  75.     @File Sampler.ini
  76.     @File nextdemo
  77.     @File docsheet.wri
  78.     @File complain.wri
  79.     @File phonbook.crd
  80.  
  81.  
  82.  
  83. @EndDisk
  84. //LINE 65
  85.  
  86. @DefineVars
  87.  
  88.     @QString @Item1 = "@OutDrive:\\@SubDir\\sampler.EXE"
  89.     @QString @Item2 = "@InDrive:\\vfw\\install.exe"
  90.     @QString @Item3 = "@InDrive:\\QTW\\SETUP.exe"
  91.     @QString @Item4 = "@OutDrive:\\@SubDir\\README.TXT"
  92.     @QString @Item5 = "@WinDrive:\\windows\\notepad.exe"
  93.     @QString @Item7 = "Sampler Read Me"
  94. @EndVars
  95.  
  96.  
  97. @Finish
  98.     @ProgramManager ("[CreateGroup (@Name)][AddItem (@Item1, @Name)][AddItem (@Item5 @Item4, @Item7)]")
  99.     @WinExec ("@Item3", 1, (-1))
  100.     @WinExec ("@Item2", 1, (-1))
  101.     @ChDrive (@OutDrive)
  102.     @ChDir ("\\@SubDir")
  103.  
  104. @EndFinish