home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / util / symantec / install.dat < prev    next >
Text File  |  1995-08-22  |  2KB  |  82 lines

  1. /*
  2.  * Project: Symantec Win95 Utilites Demo
  3.  * Version: 1.0
  4.  */
  5.  
  6. @DefineProject
  7.     @Name = "Symantec Windows 95 Utilites Demo"
  8.     @Version = "1.0"
  9.     @Subdir = "\\SYM95DEM"
  10.     @OutDrive = C
  11. @EndProject
  12.  
  13. @Display
  14.     @If (@WinScreenCaps (12) < 8)
  15. Your monitor is not set to display 256 or more colors.
  16. Most of the New Interactive Sampler Demos were designed
  17. to run using 256 colors.  You can continue to install
  18. the Sampler, but the demos will not appear as they should.
  19.     @Pause
  20.     @EndIf
  21. @EndDisplay
  22.  
  23. DriveLoop:
  24.  
  25. @GetOutDrive
  26.     @Suppress (0, 21)
  27.     @Cls
  28. On which disk drive do you wish to install @Name?
  29.  
  30. @EndOutDrive
  31.  
  32. @Display
  33.     @If (@DiskFree (@OutDrive) < 150K)
  34. The @Name requires at least 150 KB free
  35. disk space.  Please choose another drive
  36.         @Pause
  37.         @Goto DriveLoop
  38.     @EndIf
  39. @EndDisplay
  40.  
  41. DirLoop:
  42.  
  43. @GetSubdir
  44.     @Cls
  45. In which subdirectory do you wish to install @Name?
  46.  
  47. @EndSubdir
  48.  
  49. // Delete the old windows group, if any
  50.  
  51. @If (@Platform == 3)        // windows
  52.    @ProgramManager ("[DeleteGroup(@Name)]")
  53. @EndIf
  54.  
  55.  
  56. @DefineDisk
  57.     @Label = "Disk #1"
  58.  
  59.     @File README.WRI @Out @OutDrive:@SubDir\\README.WRI
  60. @EndDisk
  61.  
  62.  
  63. @DefineVars
  64.     @QString @demo1 = "@StartupDrive:@StartupDir\\SYM95DEM\\SYM95DEM.EXE,@Name @Version"
  65. @EndVars
  66.  
  67.     @ProgramManager ("[CreateGroup(@Name)]")
  68.     @ProgramManager ("[AddItem(WRITE @OutDrive:@SubDir\\README.WRI,@Name Information)]")
  69.  
  70.     @ProgramManager ("[AddItem(@demo1)]")
  71.  
  72.  
  73. @Finish
  74. Installation of @Name is now finished.  To run the demo,
  75. double click on the @Name @Version
  76. icon in the @Name Program Manager group.
  77.  
  78.     @Pause
  79.     @Exit
  80. @EndFinish
  81.  
  82.