home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if (%3)==() goto ERR
- goto START
-
- :ERR
- echo The batch requires Microsoft Windows!
- pause
- goto END
-
- :START
- md %2 >NUL
- md %2\TMP >NUL
- echo Copy files...
- copy kye.bin %2\TMP >NUL
- %1 >NUL
- cd %2 >NUL
- echo Y | del . >NUL
- ren TMP\kye.bin kye.exe >NUL
- TMP\kye
- del TMP\kye.exe
- rd TMP
- set DDD=%3
- if (%3)==(3) set DDD=1
- ren pcimg%DDD%.dll pcimage.dll >NUL
- set DDD=
-
- :END