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.
このライブラリは任意の.NET言語 (C#, F#, VB), PowerShell, F# Script, 及び WSH (JScript, VBScript) 等の任意の COM IDispatch クライアントから、ファイルのウィルススキャンを可能にします。
- Download and add reference of this library to your C# project from "NuGet",
From Package Manager Console,
PM> Install-Package AntiVirusScanner
or dotnet CLI.
> dotnet add package AntiVirusScanner
- After installed this library, you can scan a file like this C# code:
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 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
- Donwload
AntiVirusScanner.dll
from download page. - Write F# Script code like this, and run it.
// 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 runInstall 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".
- Windows OS (7 ~)
- .NET Framework (3.5 Client Profile ~) - or - .NET Core (2.0 ~)
- Any anti virus application which supported IAttachmentExecute API. / IAttachmentExecute API に対応したウィルス対策ソフトウェア
- "Microsoft Security Essentials" on Win7Pro (x64)
- "ESET NOD32 AntiVirus 4.0" on Win7Pro (x86)
- "Windows Defender" on Win10Pro (x64)
This library is a wrapper of anti virus software product (such as "Microsoft Security Essentials") which you installed on your Windows OS.
Therefore, this library does not work if you do not install any anti virus software products on your Windows OS.
このライブラリは、あなたの Windows OS にあなたがインストールしたウィルス対策ソフトウェア("Microsoft Security Essentials" のような)のラッパーに過ぎません。
実際にウィルススキャンを行うのは、そのウィルス対策ソフトウェア製品です。
そのため、何らかのウィルス対策ソフトウェア製品があなたの Windows OS にインストールされていない場合は、このライブラリは機能しません。
Windows OS provides the common API to calling the anti virus software which is installed (Of course, the anti virus software required support the API).
However, the API to calling the anti virus software provide only COM Interface style, not supported IDispatch.
So, calling this API is too difficult from any .NET languages and script languages.
Windows OS は、インストールされているウィルス対策ソフトウェアを呼び出すための共通の API を提供しています(もちろん、インストールされているウィルス対策ソフトウェアがこの API に対応している必要があります)。
しかしこの API は COM インターフェースとしてのみ公開されており、COM の IDispatch インターフェースにすら対応していません。
そのため、各種 .NET 言語やスクリプト言語から呼び出すのが極めて困難です。
そこで、.NET のアセンブリとして、この API のラッパーを作ることで、各種 .NET 言語やスクリプト言語からこの API を容易に利用可能にしました。