PowerShell 技能连载 - 检测已安装的防病毒产品
这行 PowerShell 代码可以帮助您识别 Windows 系统中安装的防病毒产品:
1 | PS> Get-CimInstance -Namespace root/SecurityCenter2 -ClassName AntiVirusProduct |
添加 -ComputerName
参数以查询远程系统。
请注意,此行仅返回正确注册的防病毒产品。结果看起来类似这样,并为您提供了防病毒产品和安装位置:
1 | displayName : Windows Defender |
PowerShell 技能连载 - 检测已安装的防病毒产品
http://blog.vichamp.com/2020/09/03/identifying-installed-antivirus-product/