This library allows you to scan files for viruses by any .NET languages (C#, F#, VB...), PowerShell, F# Script, WSH (JScript, VBScript), and any COM IDispatch client.
From Package Manager Console,
PM> Install-Package AntiVirusScanner
or dotnet CLI.
> dotnet add package AntiVirusScanner
var scanner = new AntiVirus.Scanner();
var result = scanner.ScanAndClean(@"c:\some\file\path.txt");
Console.WriteLine(result); // console output is "VirusNotFound".
Donwload AntiVirusScanner.dll
from download page.
Enter commands in the PowerShell console, like this:
PS> [Reflection.Assembly]::LoadFrom("c:\some\folder\AntiVirusScanner.dll")
PS> $scanner = New-Object AntiVirus.Scanner
PS> $scanner.ScanAndClean("c:\some\file\path.txt")
VirusNotFound
AntiVirusScanner.dll
from download page.// sample.fsx
#I "c:\some\folder"
#r "AntiVirusScanner.dll"
let scanner = new AntiVirus.Scanner()
scanner.ScanAndClean(@"c:\some\file\path.txt")
|> printfn "%O" // console output is "VirusNotFound".
Donwload AntiVirusScanner.dll
from download page, and run Install as a COM server.bat
as adminstrator.
Write VBScript code like this, and run it.
rem sample.vbs
Set scanner = CreateObject("AntiVirus.Scanner")
Set result = scanner.ScanAndClean("c:\some\file\path.txt")
WScript.Echo result
' console output is 0, means "VirusNotFound". 1 is "VirusFound" (may be cleaned), 2 is "FileNotExist".
This library is a wrapper of an antivirus software product (such as "Microsoft Security Essentials") that you installed on your Windows OS.
Therefore, this library does not work if you do not install any antivirus software products on your Windows OS.
Windows OS provides the standard API to call the antivirus software installed (Of course, the installed antivirus software has to support that API).
However, the Windows OS provided API exposes only COM Interface style, not "IDispatch".
So, using that API from any .NET languages and script languages is too tricky.
The reason why this library developed is to make it easier to use that Windows OS API from any .NET languages and any script languages.