mirror of
https://github.com/microsoft/calculator.git
synced 2025-03-12 04:35:52 -07:00
* Squashed commit of the following: commit a7d403386e3df430edf67d89ca23f81313022d2d Author: Tian Liao <tilia@microsoft.com> Date: Mon Aug 12 16:58:30 2024 +0800 remove pfx from ignore list commit 26ffa46d9a92dcbadc9d9d471715fdec10c6f013 Author: Tian Liao <tilia@microsoft.com> Date: Mon Aug 12 16:58:07 2024 +0800 Remove PFXs * fix yaml * fix gh action * fix gh action
34 lines
1.6 KiB
PowerShell
34 lines
1.6 KiB
PowerShell
#requires -RunAsAdministrator
|
|
param(
|
|
[Parameter(Position = 0, Mandatory = $true)][string]$AppToSign,
|
|
[string]$SignTool = "C:\Program Files (x86)\Windows Kits\10\bin\10.*\x64\signtool.exe"
|
|
)
|
|
|
|
$AppToSign = (Resolve-Path -Path $AppToSign)[-1]
|
|
Write-Host "AppToSign: $AppToSign"
|
|
$SignTool = (Resolve-Path -Path $SignTool)[-1]
|
|
Write-Host "SignTool: $SignTool"
|
|
if ((Test-Path -Path $SignTool -PathType Leaf) -ne $true) {
|
|
Write-Error "signtool is not found with the given argument: $SignTool" -ErrorAction Stop
|
|
}
|
|
|
|
$codeSignOid = New-Object -TypeName "System.Security.Cryptography.Oid" -ArgumentList @("1.3.6.1.5.5.7.3.3")
|
|
$oidColl = New-Object -TypeName "System.Security.Cryptography.OidCollection"
|
|
$oidColl.Add($codeSignOid) > $null
|
|
$publisher = "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
|
|
$certReq = New-Object -TypeName "System.Security.Cryptography.X509Certificates.CertificateRequest" `
|
|
-ArgumentList @($publisher, ([System.Security.Cryptography.ECDsa]::Create()), "SHA256")
|
|
$certReq.CertificateExtensions.Add((New-Object -TypeName "System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" `
|
|
-ArgumentList @($oidColl, $false)))
|
|
$now = Get-Date
|
|
$cert = $certReq.CreateSelfSigned($now, $now.AddHours(1))
|
|
|
|
$pfxFile = "$($env:TEMP)\$(New-Guid).pfx"
|
|
[System.IO.File]::WriteAllBytes($pfxFile, $cert.Export("Pfx"))
|
|
Write-Host "Exported PFX: $pfxFile"
|
|
|
|
& $SignTool sign /fd SHA256 /a /f $pfxFile $AppToSign
|
|
Write-Host "Certificate Thumbprint: $($cert.Thumbprint.ToLower())"
|
|
|
|
Import-PfxCertificate -CertStoreLocation 'Cert:\LocalMachine\TrustedPeople' -FilePath $pfxFile > $null
|