home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem ------------------------------------------------------
- rem V3SOS Disk Create Utility Ver. 1.1 for Windows 9X/ME
- rem ------------------------------------------------------
-
- chcp 949
- echo.
- echo V3SOS Disk Create Utility for Windows 9X/ME
- echo.
- echo Insert blank disk into your floppy drive.
- echo And press any key to start making V3SOS disk.
- echo.
- echo A: オ蠍フコソ。 コ オコトマタサ ウヨー
- echo セニケォナーウェ エゥク」ク V3SOS オコナゥ ククオ魍箍。 ステタロオヒエマエル.
- echo.
- pause > nul
-
- if exist no$$$ del no$$$
- echo. > no$$$
- echo n >> no$$$
- echo. >> no$$$
-
- if exist ver$$$ del ver$$$
- ver | find /i "4.90.3000" > ver$$$
-
- if exist same$$$ del same$$$
- copy ver$$$ same$$$ > nul
-
- if not exist same$$$ goto make9x
- if exist same$$$ goto makeme
- goto error
-
- :ferror
- echo Can't Find FORMAT.COM
- echo FORMAT.COM ニトタマタサ テ」タサ シ セタエマエル.
- goto error
-
- :herror
- echo Can't Find HIMEM.SYS
- echo HIMEM.SYS ニトタマタサ テ」タサ シ セタエマエル.
- goto error
-
- :eerror
- echo Can't Find EMM386.EXE
- echo EMM386.EXE ニトタマタサ テ」タサ シ セタエマエル.
- goto error
-
- :verror
- echo Can't Find V3 Files
- echo V3 ニトタマタサ テ」タサ シ セタエマエル.
- goto error
-
- :error
- echo.
- echo V3SOS Disk create fail.
- echo V3SOS オコナゥ ククオ魍篋ヲ スヌニミヌ゚スタエマエル.
- echo.
- goto end
-
- :make9x
- if not exist %windir%\command\format.com goto ferror
- %windir%\command\format.com a: /q /s /v:V3SOS < no$$$
-
- if not exist a:\drvspace.bin goto make9x-1
- %windir%\command\attrib.exe -s -h -r a:drvspace.bin > NUL
- del a:\drvspace.bin > NUL
-
- :make9x-1
-
- echo.
- echo Copy system files.
- echo ステスコナロ ニトタマタサ コケサ酩マエツ チ゚タヤエマエル.
-
- if not exist %windir%\himem.sys goto herror
- copy %windir%\himem.sys a:\ > NUL
- if not exist %windir%\emm386.exe goto eerror
- copy %windir%\emm386.exe a:\ > NUL
-
- echo.
- echo Copy V3 files.
- echo V3 ニトタマタサ コケサ酩マエツ チ゚タヤエマエル.
-
- if not exist .\v3.exe goto verror
- copy .\v3.exe a:\ > NUL
- if not exist .\v3warpd.v3d goto verror
- copy .\v3warpd.v3d a:\ > NUL
- if not exist .\v3warpn.v3d goto verror
- copy .\v3warpn.v3d a:\ > NUL
- if not exist .\v3warpa.v3d goto verror
- copy .\v3warpa.v3d a:\ > NUL
- echo v3.exe c: /a > a:\autoexec.bat
- echo device = a:\himem.sys > a:\config.sys
- echo device = a:\emm386.exe noems >> a:\config.sys
- echo dos = umb, high >> a:\config.sys
- goto finish
-
- :makeme
- if not exist %windir%\command\format.com goto ferror
- %windir%\command\format.com a: /q /v:V3SOS < no$$$
-
- echo.
- echo Copy system files.
- echo ステスコナロ ニトタマタサ コケサ酩マエツ チ゚タヤエマエル.
-
- if not exist %windir%\command\ebd\io.sys goto error
- copy %windir%\command\ebd\io.sys a:\ > NUL
- if not exist %windir%\command\ebd\command.com goto error
- copy %windir%\command\ebd\command.com a:\ > NUL
- if not exist %windir%\himem.sys goto herror
- copy %windir%\himem.sys a:\ > NUL
- if not exist %windir%\emm386.exe goto eerror
- copy %windir%\emm386.exe a:\ > NUL
-
- echo.
- echo Copy V3 files.
- echo V3 ニトタマタサ コケサ酩マエツ チ゚タヤエマエル.
-
- if not exist .\v3.exe goto verror
- copy .\v3.exe a:\ > NUL
- if not exist .\v3warpd.v3d goto verror
- copy .\v3warpd.v3d a:\ > NUL
- if not exist .\v3warpn.v3d goto verror
- copy .\v3warpn.v3d a:\ > NUL
- if not exist .\v3warpa.v3d goto verror
- copy .\v3warpa.v3d a:\ > NUL
- echo ;W98EBD > a:\msdos.sys
- echo v3.exe c: /a > a:\autoexec.bat
- goto finish
-
- :finish
- echo.
- echo V3SOS Disk create succeed.
- echo V3SOS オコナゥ ククオ魍箍。 ウ。ウオスタエマエル.
- goto end
-
- :end
- if exist ver$$$ del ver$$$
- if exist same$$$ del same$$$
- if exist no$$$ del no$$$
- exit
-