home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windoware
/
WINDOWARE_1_6.iso
/
winutil
/
hshl10
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1991-10-07
|
326b
|
17 lines
@echo off
echo.
echo Half-Shell 1.0 INSTALL
If "%1"=="" goto error
echo Installing Half-Shell and SwapShell...
copy halfshel.exe %1 >nul
copy halfshel.ini %1 >nul
copy swapshel.exe %1 >nul
echo Done!
echo.
goto done
:error
echo Usage: INSTALL (Windows-directory)
echo Example: INSTALL c:\windows
echo.
:done