home *** CD-ROM | disk | FTP | other *** search
- ; Protection Encryption System (PES) Main Install Script
- ; $VER: PES Install Script v1.00
-
- (set @default-dest "SYS:")
-
- ; English language
-
- (set #Adventdocs-location
- (cat "Select location to put the Advent docs, a "
- "directory will NOT be created."
- ))
-
- (set #copying-files
- (cat "Copying files..."
- ))
-
- (set #help-askbool
- (cat "Please select Yes to install the file(s) "
- "or select No so they are not installed. "
- ))
-
- ;--------------------------------------------------
-
- (set dest1 (askdir (prompt #Adventdocs-location)
- (default @default-dest)
- (help @askdir-help)
- )
- )
-
- (set dest2 "Sys:WBStartup")
- (set dest3 "S:")
-
- (copyfiles
- (source "Install/Bin/")
- (dest dest2)
- (choices "Advent_v1.00")
- (infos)
- (help @copyfiles-help)
- )
-
- (copyfiles
- (source "Install/Data/")
- (dest dest3)
- (choices "Advent.gfx")
- (infos)
- (help @copyfiles-help)
- )
-
- (copyfiles
- (source "Install/Docs/")
- (dest dest1)
- (choices "Advent-Doc")
- (infos)
- (help @copyfiles-help)
- )
-
-