home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
pcc
/
v08n03
/
lockup.exe
/
FAKEDOS1.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-12-01
|
472b
|
20 lines
@echo off
cls
if "==%1" goto Nodriv
echo This program will install FakeDoS(c) on drive %1
pause
mkdir %1\fakedos
copy *.* %1\fakedos\*.*
echo ******* Installation procedure complete. *******
echo -
echo You can now edit pwrds.lst to include your own passwords.
echo -
goto end
:nodriv
echo *****
echo ***** No drive letter specified --- Operation terminated.
echo ***** Enter instalation destination in form of: install c:
echo *****
goto End
:End