home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Games Machine 28
/
XENIATGM28.iso
/
win95
/
temi
/
rtp95.exe
/
Install.bat
next >
Wrap
DOS Batch File
|
1996-01-05
|
2KB
|
77 lines
@echo off
cls
if (%1) == () goto help
if (%2) == () goto auto
if exist %1%2\desktop\*.* goto manual
goto help
:auto
if not exist %1\windows\desktop\*.* goto help
echo Windows 95 directory found, hit a key to begin installation.
pause >nul
md %1\windows\Ranma95
attrib -r -h c:\logo.sys
if not exist c:\logo.bak copy c:\logo.sys c:\logo.bak
copy logo.sys c:\
if not exist %1\windows\logo?.bak copy %1\windows\logo?.sys %1\windows\*.bak
copy logow.sys %1\windows
copy logos.sys %1\windows
copy *.BMP %1\windows
copy *.ANI %1\windows\Ranma95
copy *.CUR %1\windows\Ranma95
copy *.ICO %1\windows\Ranma95
copy *.WAV %1\windows\Ranma95
copy *.TXT %1\windows\Ranma95
copy *.scr %1\windows
if exist %1\progra~1\Plus!\Themes\*.* copy *.the %1\progra~1\Plus!\Themes
if not exist %1\progra~1\Plus!\themes\*.* echo *** The themes directory is not found ***
if not exist %1\progra~1\Plus!\themes\*.* pause
goto end
:manual
if not exist %1%2\desktop\*.* goto help
echo Windows 95 directory found, hit a key to begin installation.
pause >nul
md %1%2\Ranma95
attrib -r -h c:\logo.sys
if not exist c:\logo.bak copy c:\logo.sys c:\logo.bak
copy logo.sys c:\
if not exist %1%2\logo?.bak copy %1%2\logo?.sys %1%2\*.bak
copy logow.sys %1%2
copy logos.sys %1%2
copy *.scr %1%2
copy *.BMP %1%2
copy *.ANI %1%2\Ranma95
copy *.CUR %1%2\Ranma95
copy *.ICO %1%2\Ranma95
copy *.WAV %1%2\Ranma95
copy *.TXT %1%2\Ranma95
if exist %1%3\themes\*.* copy *.the %1%3\Themes
if not exist %1%3\themes\*.* echo *** The themes directory is not found ***
if not exist %1%3\themes\*.* pause
goto end
:help
echo Ranma 1/2 Theme Pack for Windows 95 Version 2
echo.
echo Installing the Ranma 1/2 Theme Pack is simple, just type in:
echo INSTALL [drive:] [Windows 95 directory] [Plus! directory]
echo.
echo (ex - INSTALL c: \Windows \progra~1\Plus!)
echo.
echo If your Plus! pack and Windows are installed at the
echo directories shown above, you can leave the directory
echo parameters blank. So you only need to type (INSTALL C:).
echo.
echo If the theme pack directory is not found, please move the
echo *.THEME files to your "Plus!\Themes" directory manually
echo through the Windows Explorer.
echo.
echo.
echo.
goto end
:end