13 lines
440 B
PowerShell
13 lines
440 B
PowerShell
# WizardKit: Check Antivirus
|
|
|
|
#Requires -Version 3.0
|
|
if (Test-Path Env:\DEBUG) {
|
|
Set-PSDebug -Trace 1
|
|
}
|
|
$Host.UI.RawUI.WindowTitle = "WizardKit: Check Antivirus"
|
|
$Host.UI.RawUI.BackgroundColor = "black"
|
|
$Host.UI.RawUI.ForegroundColor = "white"
|
|
$ProgressPreference = "SilentlyContinue"
|
|
|
|
# Main
|
|
Get-CimInstance -Namespace "root\SecurityCenter2" -ClassName AntivirusProduct | select displayName,productState | ConvertTo-Json
|