AntiVirusScanner 1.0.1
See the version list below for details.
dotnet add package AntiVirusScanner --version 1.0.1
NuGet\Install-Package AntiVirusScanner -Version 1.0.1
<PackageReference Include="AntiVirusScanner" Version="1.0.1" />
<PackageVersion Include="AntiVirusScanner" Version="1.0.1" />
<PackageReference Include="AntiVirusScanner" />
paket add AntiVirusScanner --version 1.0.1
#r "nuget: AntiVirusScanner, 1.0.1"
#addin nuget:?package=AntiVirusScanner&version=1.0.1
#tool nuget:?package=AntiVirusScanner&version=1.0.1
Anti Virus Scanner for .NET (and COM) 
Project Description / 概要
This library allows you to virus-scanning a file 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 クライアントから、ファイルのウィルススキャンを可能にします。
Quick Start / クイックスタート
C#
- Download and add reference of this library to your C# project from "NuGet",
form 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".
PowerShell
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
F# Script
- 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".
VBScript
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".
System Requirements / システム要件
- Windows OS (7 ~)
- .NET Framework (3.5 Client Profile ~) - or - .NET Core (2.0 ~)
- Any anti virus application which supported IAttachmentExecute API. / IAttachmentExecute API に対応したウィルス対策ソフトウェア
Known list / 既知のリスト
- "Microsoft Security Essentials" on Win7Pro (x64)
- "ESET NOD32 AntiVirus 4.0" on Win7Pro (x86)
- "Windows Defender" on Win10Pro (x64)
Who virus-scan a file? / 誰がウィルススキャンを行うのか?
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 produsts on your Windows OS.
このライブラリは、あなたの Windows OS にあなたがインストールしたウィルス対策ソフトウェア("Microsoft Security Essentials" のような)のラッパーに過ぎません。
実際にウィルススキャンを行うのは、そのウィルス対策ソフトウェア製品です。
そのため、何らかのウィルス対策ソフトウェア製品があなたの Windows OS にインストールされていない場合は、このライブラリは機能しません。
Why need this library? / なぜこのライブラリが必要なのか?
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 を容易に利用可能にしました。
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net35 is compatible. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 3.5
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v.1.0.1
- Add .NET Core support.
v.1.0.0
- 1st release.