View Single Post
Old 10-06-2000, 06:36 PM   #7
bob
Member (12 bit)
Premium Member
 
bob's Avatar
 
Join Date: Mar 1999
Location: LA, CA
Posts: 2,225
Things to try inside bat file


Rem start of file....commands are grouped

C:
cd\
cd windows


rem or better yet

C:
cd\
cd %windir%
If %windir% == C:\WINNT exit
echo Your windows directory is %windir%





rem "both must be true"

if exist win.com if exist system.ini ren system.DA0 system.tmp

rem

if not exist win.com exit

Rem end


Just for fun at the command line type

dir \ /s | find /I "bytes"



echo %temp%



bob is offline   Reply With Quote