PowerShell でアンチウィルスの種類を取得する

PowerShell でアンチウィルス(ウィルス対策ソフト)の種類を取得する

Powershell

PowerShell でアンチウィルス(ウィルス対策ソフト)の種類を取得するサンプルコードです。

コマンド:


$antiVirus = @{}
$antiVirusProduct = Get-WmiObject -Namespace "root/SecurityCenter2" -Query "SELECT * FROM AntiVirusProduct"

$antiVirus["AntiVirusDisplayName"] = $antiVirusProduct.displayName

Write-Output $antiVirus


実行例:




Name Value
---- -----
AntiVirusDisplayName {Windows Defender, ウイルスバスター クラウド}



コマンドサンプル一覧