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

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

Secure Home | Search | About
 Anti-Virus Software    Post an article   get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content add this group's latest topics to your Google content
Subject Author Date
Software to queue up av/as apps to run on files, also queue of scanning? MitchellWmA 01-12-2008
Posted by MitchellWmA on January 12, 2008, 10:24 am
If you were  Registered and logged in, you could reply and use other advanced thread options
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


Posted by Ant on January 13, 2008, 11:59 am
If you were  Registered and logged in, you could reply and use other advanced thread options
"MitchellWmA" wrote:

> 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.



Posted by Ant on January 13, 2008, 12:57 pm
If you were  Registered and logged in, you could reply and use other advanced thread options
I wrote:
> 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



Posted by MitchellWmA on January 19, 2008, 10:05 am
If you were  Registered and logged in, you could reply and use other advanced thread options

>"MitchellWmA" wrote:
>
>> 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.

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

Similar ThreadsPosted
Software to queue up av/as apps to run on files, also queue of scanning? January 13, 2008, 5:38 am
Virus scanning apps that can be started from the DOS prompt? July 5, 2007, 4:57 am
Scanning inside multi-part rar and zip files, unpack files January 29, 2008, 1:23 am
AVG scanning (or not) of Office files August 13, 2006, 6:48 pm
Scanning spyware infested install files September 10, 2005, 11:34 pm
A question about virus scanning of client email files August 1, 2006, 9:42 am
speech recognition software and AV scanning July 21, 2005, 11:25 pm
Symantec software deletes PC files (Financial Times) May 19, 2007, 5:05 am
Malware Evolving Too Fast for Antivirus Apps January 1, 2008, 2:50 pm
Catalog of free windows software including security software January 31, 2006, 11:12 am

The site map in XML format XML site map

Contact Us | Privacy Policy