home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Interactive Cookbook
/
L1_JS_101199.ISO
/
signup
/
DUN
/
chkdun.bat
next >
Wrap
DOS Batch File
|
1999-11-05
|
596b
|
24 lines
@echo off
set userprof="%USERPROFILE%"
REM 95
set filename1=%windir%\start menu\programs\accessories\dial-up networking.lnk
REM 98
set filename2=%windir%\start menu\programs\accessories\communications\dial-up networking.lnk
REM NT
set filename3=%userprof%\start menu\programs\accessories\dial-up networking.lnk
:checkfile
if exist "%filename1%" goto lab2
if exist "%filename2%" goto lab2
if exist "%filename3%" goto lab2
:lab1
REM File not found.
notepad dun.txt
goto end
:lab2
REM File found.
notepad my.txt
goto end
:end