Could someone help me out. He is my problem: I'm trying to make a certain program run, in dos, as soon as my virus check is done. I now that i have to fix this up in either the "autoexec.sys" file or the "config.sys" file. The problem is that I don't know what to type in.
R.A.S.A.P
Thanks
Comments
don't know how to do it? you can use any text
editor such as EDIT for DOS to edit this file
and you just use any DOS command in this file
,ex., CD,COPY,DIR
hope this help
: Could someone help me out. He is my problem: I'm trying to make a certain program run, in dos, as soon as my virus check is done. I now that i have to fix this up in either the "autoexec.sys" file or the "config.sys" file. The problem is that I don't know what to type in.
: R.A.S.A.P
: Thanks
Al you would need to add a line similar to this
in your autoexec.bat file:
rem when virus scan is done
rem start certain program
cd programcertain
...
rem is short for remark used to place comments, which dos ignores, in batch files.
cd - means change directory
Hope this is of some help
Norm