From 2da07fe6c4c125dc3b3869925d120109e3dd4490 Mon Sep 17 00:00:00 2001 From: APP32Piotr <125262404+APP32Piotr@users.noreply.github.com> Date: Thu, 5 Feb 2026 15:57:53 +0100 Subject: [PATCH] Corrected PK terminology from "private key" to "Platform Key" The current documentation incorrectly refers to PK as a "private key" in Example 1 and its description. According to the UEFI specification, PK stands for Platform Key --- docset/winserver2019-ps/SecureBoot/Format-SecureBootUEFI.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docset/winserver2019-ps/SecureBoot/Format-SecureBootUEFI.md b/docset/winserver2019-ps/SecureBoot/Format-SecureBootUEFI.md index 78dd62027c..c1610c0319 100644 --- a/docset/winserver2019-ps/SecureBoot/Format-SecureBootUEFI.md +++ b/docset/winserver2019-ps/SecureBoot/Format-SecureBootUEFI.md @@ -42,7 +42,7 @@ This cmdlet this runs on both UEFI and BIOS (non-UEFI) computers. ## EXAMPLES -### Example 1: Format a private key +### Example 1: Format a platform key ``` PS C:\> Format-SecureBootUefi -Name PK -SignatureOwner 12345678-1234-1234-1234-123456789abc -CertificateFilePath PK.cer -SignableFilePath GeneratedFileToSign.bin -Time 2011-11-01T13:30:00Z | Format-List Name : PK @@ -51,7 +51,7 @@ AppendWrite : False Content : {232, 102, 87, 60...} ``` -This command formats the private key in PK.cer that is later piped to the Set-SecureBootUEFI cmdlet. +This command formats the platform key in PK.cer that is later piped to the Set-SecureBootUEFI cmdlet. ### Example 2: Format a hash ```