Skip to content

Commit

Permalink
Merge pull request #3 from wisemanny/update_systinternals
Browse files Browse the repository at this point in the history
Update systinternals-aarch64 to new version and update version parsing script
  • Loading branch information
ghishadow authored Dec 24, 2024
2 parents 373d625 + 4f6d034 commit 89e5751
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bucket/sysinternals-aarch64.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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})</p>'",
"$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"
],
Expand Down

0 comments on commit 89e5751

Please sign in to comment.