This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-Location $PSScriptRoot | |
Write-Host "PFX Certificate Creator" | |
Write-Host "" | |
Write-Host "Create a PFX certificate for use with MSIX Package Signing." | |
Write-Host "" | |
$subjectName = Read-Host "Subject Name" | |
$friendlyName = Read-Host "Friendly Name" | |
$certificateKey = Read-Host "Certificate Key" -AsSecureString |