home *** CD-ROM | disk | FTP | other *** search
/ Hand Held Organizer Toolkit / walnutcreekcdrom-handheldorganizertoolkit-march1998.iso / WinCE / games / CometDefenseSetup.exe / CometDefense.load < prev    next >
Text File  |  1997-10-11  |  512b  |  21 lines

  1. // copy the executable file
  2.  
  3. // mkdir is taken care of by Load...
  4. copy . . "CometDefense.exe"
  5.  
  6. // if you have a help file, you could copy it to the Windows directory as follows:
  7. //copy . \Windows "myapp Help.htc"
  8.  
  9. // register the icon
  10. regString ~ ~ 1 VersionNumber "1.0"
  11.  
  12. // create some shortcuts on the HPC device
  13.  
  14. createShortcut \Windows\Desktop "Comet Defense!.lnk" . "CometDefense.exe"
  15. createShortcut \Windows\Programs "Comet Defense!.lnk" . "CometDefense.exe"
  16.  
  17.  
  18. // Exit the script
  19.  
  20. exit
  21.