home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / WIN_CE / PC / QTBCE / DATA.Z / Qtbce.load < prev    next >
Text File  |  1996-12-10  |  1KB  |  34 lines

  1. // The following regKeyCreate commands create the following registry keys:
  2. // - HKEY_CLASSES_ROOT\.htm
  3. // - HKEY_CLASSES_ROOT\piefile\DefaultIcon
  4. // - HKEY_CLASSES_ROOT\piefile\ShellOpenCommand
  5. // These keys are used to associate .htm files with the QTBCE application and gives
  6. // them a document icon.
  7.  
  8. regString ~ ~ 1 VersionNumber "1.0"
  9.  
  10. // Copy the files from the PC to the Pegasus
  11. // Usage: copy <source dir> <dest dir> <filename>
  12. //        copyShared <source dir> <dest dir> <filename>
  13.  
  14. copy . "\Program Files\Qtbce" Qtbce.exe
  15. copy . "\Program Files\Qtbce" Qtbce.htm
  16. copy . \Windows qtbce.htc
  17. copy . "\Program Files\Qtbce" qtbCEcon.htp
  18. copy . "\Program Files\Qtbce" qtbCEmen.htp
  19. copy . "\Program Files\Qtbce" qtbCEpro.htp
  20. copy . "\Program Files\Qtbce" qtbCEtip.htp
  21. copy . "\Program Files\Qtbce" qtbCEreg.htp
  22.  
  23. // Create the shortcuts.
  24. // One on the desktop and one to replace the one in the Communcation folder that points to
  25. // the old version.
  26. createShortcut \Windows\Desktop "Qtbce.lnk" "\Program Files\qtbce" Qtbce.exe
  27. createShortcut "\Program Files\Communication" "Qtbce.lnk" "\Program Files\Qtbce" Qtbce.exe
  28. createShortcut "\Windows\Programs\Communication" "Qtbce.lnk" "\Program Files\Qtbce" Qtbce.exe
  29.  
  30. // Exit the script
  31.  
  32. exit
  33.  
  34.