Hi,
I am trying to indicate the presence of autorun.inf in the root of the c drive (conficker virus and others...). Has anybody has done that before? any way to get this done?
i thought of using a simple batch file like:
@echo off
dir c:\ /ah |find "autorun.inf"
if errorlevel=1 goto notfound
***** echo yes >??? ***** here is where I get stuck!!! how to pass this info back to the application?
:notfound
exit
Thank you