home *** CD-ROM | disk | FTP | other *** search
- (if (= @language "deutsch")
- (
- (SET Intro "Wilkommen zum Installer-Script für DashBoard")
- (SET PLace "Wohin soll das DashBoard-Paket hinkopiert werden ?")
- )
- )
- (if (= @language "english")
- (
- (SET Intro "Welcome to the installer-script for DashBoard")
- (SET Place "Where do you want to place the DashBoard-package. A drawer, called DashBoard will ce created")
- )
- )
-
- (MESSAGE Intro)
-
- (SET PackDir
- (ASKDIR
- (PROMPT Place)
- (HELP "")
- (DEFAULT "sys:")
- )
- )
-
- (SET XDest (tackon PackDir "DashBoard"))
-
- (RUN (CAT "makdir \""XDest"\""))
-
- (COPYFILES
- (SOURCE ":System/Performance/DashBoard/")
- (DEST XDest)
- (ALL)
- (INFOS)
- )
-