home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows CE - The Ultimate Companion
/
ROMMAN_CE.iso
/
Files
/
Games
/
ESportsCard
/
eSportsCard.load
< prev
next >
Wrap
Text File
|
1997-11-03
|
2KB
|
47 lines
// Load for eSportsCard
// The following regKeyCreate commands create the following registry keys:
// - HKEY_CLASSES_ROOT\.sdl
// - HKEY_CLASSES_ROOT\sdlfile\DefaultIcon
// - HKEY_CLASSES_ROOT\sdlfile\ShellOpenCommand
// These keys are used to associate .sdl files with the eSportsCard application
// and gives them a document icon.
regKeyCreate HKEY_CLASSES_ROOT .sdl 1
regKeyCreate HKEY_CLASSES_ROOT sdlfile 1
regKeyCreate HKEY_CLASSES_ROOT sdlfile\DefaultIcon 1
// regKeyCreate HKEY_CLASSES_ROOT sdlfile\Shell\Open\Command 1
// The following regString commands create the data in the above keys that are
// required to complete the associations.
regString HKEY_CLASSES_ROOT .sdl 1 Default "sdlfile"
regString HKEY_CLASSES_ROOT sdlfile 1 Default "Sports Schedule"
regString HKEY_CLASSES_ROOT sdlfile\DefaultIcon 1 Default "%P\eSportsCard.exe,-2001"
// regString HKEY_CLASSES_ROOT sdlfile\Shell\Open\Command 1 Default "\"%P\eSportsCard.exe\" %1"
// adds a version #
regString ~ ~ 1 VersionNumber "1.0"
regInt ~ ~ 0 XYZZY 1
// copy the files
copy . . "eSportsCard.exe"
copy . \Windows "eSportsCard Help.htc"
copy . \Windows sc_tips.htp
copy . \Windows sc_howto.htp
copy . \Windows sc_purchase.htp
copy . \Windows sc_disclaimer.htp
copy . "\My Documents" NFL1997.sdl
copy . "\My Documents" NBA1997.sdl
copy . "\My Documents" NHL1997.sdl
copy . "\My Documents" DivIAFB97.sdl
copy . "\My Documents" DivIBB97A.sdl
copy . "\My Documents" DivIBB97B.sdl
copy . "\My Documents" DivIBB97C.sdl
// create a shell link
createShortcut \Windows\Desktop "eSportsCard.lnk" . "eSportsCard.exe"
createShortcut \Windows\Programs "eSportsCard.lnk" . "eSportsCard.exe"
exit