From ff13b497878525698585b785ac6d50f346a8774f Mon Sep 17 00:00:00 2001 From: ant-kurt <209710463+ant-kurt@users.noreply.github.com> Date: Fri, 13 Feb 2026 01:05:28 -0800 Subject: [PATCH 1/3] feat(Anthropic.ClaudeCode): Add Windows ARM64 installer support Add win32-arm64 platform entry to fetch the ARM64 binary and checksum from the release manifest. --- Tasks/Anthropic.ClaudeCode/Script.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tasks/Anthropic.ClaudeCode/Script.ps1 b/Tasks/Anthropic.ClaudeCode/Script.ps1 index c7b43bc87a..c70abbaabf 100644 --- a/Tasks/Anthropic.ClaudeCode/Script.ps1 +++ b/Tasks/Anthropic.ClaudeCode/Script.ps1 @@ -13,6 +13,11 @@ $this.CurrentState.Installer += [ordered]@{ InstallerUrl = "${Prefix}$($this.CurrentState.Version)/win32-x64/claude.exe" InstallerSha256 = $Object2.platforms.'win32-x64'.checksum.ToUpper() } +$this.CurrentState.Installer += [ordered]@{ + Architecture = 'arm64' + InstallerUrl = "${Prefix}$($this.CurrentState.Version)/win32-arm64/claude.exe" + InstallerSha256 = $Object2.platforms.'win32-arm64'.checksum.ToUpper() +} switch -Regex ($this.Check()) { 'New|Changed|Updated' { From d22813a682f552f01c8141f21bfd99ba1ccff121 Mon Sep 17 00:00:00 2001 From: ant-kurt Date: Fri, 13 Feb 2026 15:43:11 -0800 Subject: [PATCH 2/3] Update Anthropic.ClaudeCode#Latest --- Tasks/Anthropic.ClaudeCode#Latest/Script.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tasks/Anthropic.ClaudeCode#Latest/Script.ps1 b/Tasks/Anthropic.ClaudeCode#Latest/Script.ps1 index fee8a8aafd..16e3c210cd 100644 --- a/Tasks/Anthropic.ClaudeCode#Latest/Script.ps1 +++ b/Tasks/Anthropic.ClaudeCode#Latest/Script.ps1 @@ -13,6 +13,11 @@ $this.CurrentState.Installer += [ordered]@{ InstallerUrl = "${Prefix}$($this.CurrentState.Version)/win32-x64/claude.exe" InstallerSha256 = $Object2.platforms.'win32-x64'.checksum.ToUpper() } +$this.CurrentState.Installer += [ordered]@{ + Architecture = 'arm64' + InstallerUrl = "${Prefix}$($this.CurrentState.Version)/win32-arm64/claude.exe" + InstallerSha256 = $Object2.platforms.'win32-arm64'.checksum.ToUpper() +} switch -Regex ($this.Check()) { 'New|Changed|Updated' { From fd9d195da9d0602184489e0be123793a4a67ba3b Mon Sep 17 00:00:00 2001 From: ant-kurt Date: Fri, 13 Feb 2026 15:43:34 -0800 Subject: [PATCH 3/3] Update Anthropic.ClaudeCode#GitHub --- Tasks/Anthropic.ClaudeCode#GitHub/Script.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tasks/Anthropic.ClaudeCode#GitHub/Script.ps1 b/Tasks/Anthropic.ClaudeCode#GitHub/Script.ps1 index 1e7e55fd1f..b49beeacf4 100644 --- a/Tasks/Anthropic.ClaudeCode#GitHub/Script.ps1 +++ b/Tasks/Anthropic.ClaudeCode#GitHub/Script.ps1 @@ -8,6 +8,10 @@ $this.CurrentState.Installer += [ordered]@{ Architecture = 'x64' InstallerUrl = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/$($this.CurrentState.Version)/win32-x64/claude.exe" } +$this.CurrentState.Installer += [ordered]@{ + Architecture = 'arm64' + InstallerUrl = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/$($this.CurrentState.Version)/win32-arm64/claude.exe" +} switch -Regex ($this.Check()) { 'New|Changed|Updated' { @@ -77,3 +81,4 @@ switch -Regex ($this.Check()) { } } } +