Skip to content

Commit

Permalink
Merge pull request #41 from akunzai/ms-defender
Browse files Browse the repository at this point in the history
Rename Windows Defender to Microsoft Defender
  • Loading branch information
akunzai authored Jan 13, 2023
2 parents 4cadbce + 3d88e3f commit 952c51a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Sample output

## Antivirus

- [x] Installed: Windows Defender 4.18.2211.5
- [x] Installed: Microsoft Defender 4.18.2211.5
- [x] Updated Status: 2023-01-03T09:30:00+08:00 - 1.381.1994.0

## Default Account
Expand Down
2 changes: 1 addition & 1 deletion README.zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ git pull

## 防毒軟體

- [x] 已安裝: Windows Defender 4.18.2211.5
- [x] 已安裝: Microsoft Defender 4.18.2211.5
- [x] 更新狀態: 2023-01-03T09:30:00+08:00 - 1.381.1994.0

## 預設帳號
Expand Down
2 changes: 1 addition & 1 deletion rules/Antivirus.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Test($config) {
$product = Get-MpComputerStatus -ErrorAction SilentlyContinue
if ($null -ne $product) {
Write-Output "`n## $($i18n.Antivirus)`n"
Write-CheckList $product.AntivirusEnabled "$($i18n.Installed): Windows Defender $($product.AMProductVersion)"
Write-CheckList $product.AntivirusEnabled "$($i18n.Installed): Microsoft Defender $($product.AMProductVersion)"
Write-CheckList (-not $product.DefenderSignaturesOutOfDate) ("$($i18n.UpdatedStatus): {0:yyyy-MM-dd'T'HH:mm:ssK} - $($product.AntivirusSignatureVersion)" -f $product.AntivirusSignatureLastUpdated)
return
}
Expand Down

0 comments on commit 952c51a

Please sign in to comment.