diff --git a/bucket/sysinternals-aarch64.json b/bucket/sysinternals-aarch64.json index ccede65..0c46e8d 100644 --- a/bucket/sysinternals-aarch64.json +++ b/bucket/sysinternals-aarch64.json @@ -1,5 +1,5 @@ { - "version": "2024.7.23", + "version": "2024.12.16", "description": "A set of utilities to manage, diagnose, troubleshoot, and monitor a Windows environment.", "homepage": "https://docs.microsoft.com/en-us/sysinternals/", "license": { @@ -8,10 +8,10 @@ }, "checkver": { "script": [ - "$resp = Invoke-WebRequest 'https://techcommunity.microsoft.com/plugins/custom/microsoft/o365/custom-blog-rss?board=Sysinternals-Blog'", - "$resp.Content -match '(\\d{1,2}) (\\w{3}) (\\d{4})'", - "$year = $Matches[3]; $month = $Matches[2]; $day = $Matches[1] ", - "$months = @{'Jan'='1';'Feb'='2';'Mar'='3';'Apr'='4';'May'='5';'Jun'='6';'Jul'='7';'Aug'='8';'Sep'='9';'Oct'='10';'Nov'='11';'Dec'='12'}", + "$resp = Invoke-WebRequest 'https://learn.microsoft.com/en-us/sysinternals/downloads/sysinternals-suite'", + "$resp.Content -match 'Updated: (\\w+) (\\d{1,2}), (\\d{4})

'", + "$year = $Matches[3]; $month = $Matches[1]; $day = $Matches[2] ", + "$months = @{'January'='1';'February'='2';'March'='3';'April'='4';'May'='5';'June'='6';'Jule'='7';'August'='8';'September'='9';'October'='10';'November'='11';'December'='12'}", "$month = $months.$month", "Write-Output $year $month $day" ],