From dfd0e8d087d181a0535021fc413c65f5b5434825 Mon Sep 17 00:00:00 2001 From: Luis Lavena Date: Tue, 11 May 2021 17:26:55 +0200 Subject: [PATCH] Correct WireGuard arm64 and x64 ProductCode (#12479) Per conversation in microsoft/winget-pkgs#12457, the previous version `ProductCode` references were used. This uses the correct ones. Codes obtained using PowerShell: PS C:\> Get-AppLockerFileInformation -Path ".\wireguard-amd64-0.3.14.msi" | select -ExpandProperty Publisher | Select BinaryName BinaryName ---------- {DF1A0F7C-F116-4906-BEF6-EF24AA79969E} PS C:\> Get-AppLockerFileInformation -Path ".\wireguard-arm64-0.3.14.msi" | select -ExpandProperty Publisher | Select BinaryName BinaryName ---------- {890F22D7-5BA8-4D6B-B285-CEC84BAA2DCC} PS C:\> Get-AppLockerFileInformation -Path ".\wireguard-x86-0.3.14.msi" | select -ExpandProperty Publisher | Select BinaryName BinaryName ---------- {1C5E1A8C-C43C-4647-AB9E-EF63F820805B} --- .../WireGuard/0.3.14/WireGuard.WireGuard.installer.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/w/WireGuard/WireGuard/0.3.14/WireGuard.WireGuard.installer.yaml b/manifests/w/WireGuard/WireGuard/0.3.14/WireGuard.WireGuard.installer.yaml index d752f01ca..955d86437 100644 --- a/manifests/w/WireGuard/WireGuard/0.3.14/WireGuard.WireGuard.installer.yaml +++ b/manifests/w/WireGuard/WireGuard/0.3.14/WireGuard.WireGuard.installer.yaml @@ -19,7 +19,7 @@ Installers: InstallerType: msi InstallerUrl: https://download.wireguard.com/windows-client/wireguard-arm64-0.3.14.msi InstallerSha256: 5ba0ce5530bea43a450883c931fe4e4f46ff791d9e9ad76d73ee49ab192b99dd - ProductCode: "{B0B80126-A192-4EA5-B491-14F6B1E30944}" + ProductCode: "{890F22D7-5BA8-4D6B-B285-CEC84BAA2DCC}" Scope: machine InstallerLocale: en-US UpgradeBehavior: install @@ -27,7 +27,7 @@ Installers: InstallerType: msi InstallerUrl: https://download.wireguard.com/windows-client/wireguard-x86-0.3.14.msi InstallerSha256: 82981689570b14e605af91f45c6c3b613db59b40cfc355d5d1fc01688c4e3f4c - ProductCode: "{C6E512B7-BEFF-479E-AECC-C93257899E91}" + ProductCode: "{1C5E1A8C-C43C-4647-AB9E-EF63F820805B}" Scope: machine InstallerLocale: en-US UpgradeBehavior: install