home *** CD-ROM | disk | FTP | other *** search
- //To Install the IBM Multimedia CD-ROM Sampler
- @DefineProject
- @Name = "IBM CD SAMPLER"
- @Version = "1.0"
- @OutDrive = C
- @Subdir = "\\IBMMSHD"
-
-
- @EndProject
-
- //Install????
- @Display
- Would you like to install
- the @Name ?
-
- You should RESTART Windows at the end of
- this process.
-
- Please read the README.TXT for the latest
- information on the @Name.
-
- @pause
- @EndDisplay
-
- @Display
- The @Name Installer will be placing files onto
- your hard drive as well as installing QuickTime
- for Windows 2.0.1 and Video for Windows 1.1.
-
- Sampler = 3Mb
- QuickTime = 1Mb
- Video for Windows = 1Mb
- @pause
- @EndDisplay
- //What Drive? LINE 23
- @GetOutDrive
- Which drive would you like to install the
- @Name onto?
- @Suppress(0,1)
- @Suppress(0,16)
- @suppress(@InDrive)
-
-
-
- @EndOutDrive
-
- //Not On Floppy or CD-ROM
- @If (@Removable(@OutDrive))
- @Display
- You can NOT use this drive!
-
- @Pause
- @Abort
- @EndDisplay
- @EndIf
-
- //Name that path! LINE 45
- @GetSubdir
- Which directory would you like to install
- @Name to?
- @Prompt = "Which directory ([Enter] = @Subdir)?"
- @EndSubdir
-
- //Copy those Files
-
- @DefineDisk
- @Label = "IBMMSCD"
-
- @File PROJECT.EXE
- @File README.TXT
- @File FILEIO.DLL
- @File LINGO.INI
- @File MainMenu.EXE
- @File Sampler.exe
- @File Sampler.ini
- @File nextdemo
- @File docsheet.wri
- @File complain.wri
- @File phonbook.crd
-
-
-
- @EndDisk
- //LINE 65
-
- @DefineVars
-
- @QString @Item1 = "@OutDrive:\\@SubDir\\sampler.EXE"
- @QString @Item2 = "@InDrive:\\vfw\\install.exe"
- @QString @Item3 = "@InDrive:\\QTW\\SETUP.exe"
- @QString @Item4 = "@OutDrive:\\@SubDir\\README.TXT"
- @QString @Item5 = "@WinDrive:\\windows\\notepad.exe"
- @QString @Item7 = "Sampler Read Me"
- @EndVars
-
-
- @Finish
- @ProgramManager ("[CreateGroup (@Name)][AddItem (@Item1, @Name)][AddItem (@Item5 @Item4, @Item7)]")
- @WinExec ("@Item3", 1, (-1))
- @WinExec ("@Item2", 1, (-1))
- @ChDrive (@OutDrive)
- @ChDir ("\\@SubDir")
-
- @EndFinish