Software to queue up av/as apps to run on files, also queue of scanning?

M

MitchellWmA

Is there anything out there to facilitate 2 things re anti-virus and
anti-spyware, etc., software:

1) that will access as many security apps as we need via context
menu?

i.e., that we can assign to the context menu so that when invoked,
will run in sequence whatever anti-virus, etc., apps we wish to run on
that file?

So instead of having to click on "Scan with AVG", "Scan with
a-squared", etc., etc., manually that we can just click on "Scan for
viruses" and all the apps take a turn in sequence type thing?

2) Same app or another, doesn't matter, that will line up of security
programs with which to scan our entire systems. So at a certain
scheduled time it'll come up and perhaps just prompt one before doing
a system scan then will go through each app we assign overnight doing
an AVG av scan, then all the rest?

*********
I had a bad abandonware freeware come out clean on my usu. 2 security
scans yet it unleashed some pretty powerful malware. First time in
all my computing days that's happened. So after reinstalling my XP,
since nothing could be installed after that, this got me to finally
doing more and stepping up the processes. I now have not just 2 apps
but 5 that I'm using to scan things. I know, I know, malware may
still get through of course, but in 8 years nothing had till that
clever bit of malware. That's the risk of using the net, eh. But
having some sort of program to facilitate things will speed things up
and will make things easier. thx
 
A

Ant

MitchellWmA said:
Is there anything out there to facilitate 2 things re anti-virus and
anti-spyware, etc., software:

This is the kind of custom operation you need to set up yourself.
1) that will access as many security apps as we need via context
menu?

i.e., that we can assign to the context menu so that when invoked,
will run in sequence whatever anti-virus, etc., apps we wish to run on
that file?

Involves editing the registry. Usual warings apply.

Create a new key here, e.g. scan:
HKLM\SOFTWARE\Classes\*\shell\scan

Set the default value for this key to be your context menu text,
e.g: Scan for viruses.

Create another key under that one called command:
HKLM\SOFTWARE\Classes\*\shell\scan\command

Set the default value for this key to be the name of a script or
batch file which will run the apps, e.g:
"c:\somedirectory\virscan.bat" "%1"

The quote marks are required and "%1" will be used to pass the file
name to the batch file and thence the apps. Your batch file will
contain something like this:

progname1 %1
progname2 %1
pause

The prognames are the names of your AV apps and obviously they must
be capable of accepting filenames as parameters. Check the docs for
any other params you might want and the position of the filename,
e.g. you might have to do:

progname1 -some_value %1

If you expect console output, make the scrollback buffer in the
default command prompt window large enough to view it. If your apps
are GUI and you expect no useful console output remove the pause.

If you don't want a batch file and console window you will probably
have to learn about scripts and the Windows Scripting Host.
2) Same app or another, doesn't matter, that will line up of security
programs with which to scan our entire systems. So at a certain
scheduled time it'll come up and perhaps just prompt one before doing
a system scan then will go through each app we assign overnight doing
an AVG av scan, then all the rest?

See help for the 'at' command.
 
A

Ant

I said:
Your batch file will contain something like this:

progname1 %1
progname2 %1
pause

The prognames are the names of your AV apps

I should add that the prognames should specify a full path and must
be quoted if the path contains spaces, e.g:
"C:\Program Files\anti virus app\avapp.exe" %1
 
M

MitchellWmA

This is the kind of custom operation you need to set up yourself.


Involves editing the registry. Usual warings apply.

Create a new key here, e.g. scan:
HKLM\SOFTWARE\Classes\*\shell\scan

Set the default value for this key to be your context menu text,
e.g: Scan for viruses.

Create another key under that one called command:
HKLM\SOFTWARE\Classes\*\shell\scan\command

Set the default value for this key to be the name of a script or
batch file which will run the apps, e.g:
"c:\somedirectory\virscan.bat" "%1"

The quote marks are required and "%1" will be used to pass the file
name to the batch file and thence the apps. Your batch file will
contain something like this:

progname1 %1
progname2 %1
pause

The prognames are the names of your AV apps and obviously they must
be capable of accepting filenames as parameters. Check the docs for
any other params you might want and the position of the filename,
e.g. you might have to do:

progname1 -some_value %1

If you expect console output, make the scrollback buffer in the
default command prompt window large enough to view it. If your apps
are GUI and you expect no useful console output remove the pause.

If you don't want a batch file and console window you will probably
have to learn about scripts and the Windows Scripting Host.


See help for the 'at' command.

Thanks. I think I can do all this. Will definitely give it a try.
Never thought of this type of solution. Pretty cool. :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top