home *** CD-ROM | disk | FTP | other *** search
- // The following regKeyCreate commands create the following registry keys:
- // - HKEY_CLASSES_ROOT\.htm
- // - HKEY_CLASSES_ROOT\piefile\DefaultIcon
- // - HKEY_CLASSES_ROOT\piefile\ShellOpenCommand
- // These keys are used to associate .htm files with the QTBCE application and gives
- // them a document icon.
-
- regString ~ ~ 1 VersionNumber "1.0"
-
- // Copy the files from the PC to the Pegasus
- // Usage: copy <source dir> <dest dir> <filename>
- // copyShared <source dir> <dest dir> <filename>
-
- copy . "\Program Files\Qtbce" Qtbce.exe
- copy . "\Program Files\Qtbce" Qtbce.htm
- copy . \Windows qtbce.htc
- copy . "\Program Files\Qtbce" qtbCEcon.htp
- copy . "\Program Files\Qtbce" qtbCEmen.htp
- copy . "\Program Files\Qtbce" qtbCEpro.htp
- copy . "\Program Files\Qtbce" qtbCEtip.htp
- copy . "\Program Files\Qtbce" qtbCEreg.htp
-
- // Create the shortcuts.
- // One on the desktop and one to replace the one in the Communcation folder that points to
- // the old version.
- createShortcut \Windows\Desktop "Qtbce.lnk" "\Program Files\qtbce" Qtbce.exe
- createShortcut "\Program Files\Communication" "Qtbce.lnk" "\Program Files\Qtbce" Qtbce.exe
- createShortcut "\Windows\Programs\Communication" "Qtbce.lnk" "\Program Files\Qtbce" Qtbce.exe
-
- // Exit the script
-
- exit
-
-