diff --git a/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md b/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md index cf84e18..e5210fc 100644 --- a/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md +++ b/content/posts/psa-microsoft-kb5022842-breaks-ws2022-secure-boot/index.md @@ -30,15 +30,16 @@ Microsoft released [a patch](https://msrc.microsoft.com/update-guide/releaseNote So yeah. That's, uh, *not great.* -If you've got any **Windows Server 2022** VMs with **Secure Boot** enabled on **ESXi 6.7/7.x**, you'll want to make sure they *do not* get **KB5022842** until this problem is resolved. +If you've got any **Windows Server 2022** VMs with **[Secure Boot](https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.vsphere.security.doc/GUID-898217D4-689D-4EB5-866C-888353FE241C.html)** enabled on **ESXi 6.7/7.x**, you'll want to make sure they *do not* get **KB5022842** until this problem is resolved. I put together a quick PowerCLI query to help identify impacted VMs in my environment: ```powershell $secureBoot2022VMs = foreach($datacenter in (Get-Datacenter)) { $datacenter | Get-VM | - Where {$_.Guest.OsFullName -Match 'Microsoft Windows Server 2022' -And $_.ExtensionData.Config.BootOptions.EfiSecureBootEnabled} | - Select @{N="Datacenter";E={$datacenter.Name}}, - Name, @{N="Running OS";E={$_.Guest.OsFullName}}, + Where-Object {$_.Guest.OsFullName -Match 'Microsoft Windows Server 2022' -And $_.ExtensionData.Config.BootOptions.EfiSecureBootEnabled} | + Select-Object @{N="Datacenter";E={$datacenter.Name}}, + Name, + @{N="Running OS";E={$_.Guest.OsFullName}}, @{N="Secure Boot";E={$_.ExtensionData.Config.BootOptions.EfiSecureBootEnabled}}, PowerState } diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index cc775e9..f897008 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -28,7 +28,7 @@ {{ markdownify $introDescription }}
- VMware vExpert + vExpert Badge
{{- if ( ne $s.introURL false ) }} {{- $r := T "read_more" }} @@ -37,11 +37,11 @@ {{- end }} {{ if .Site.Params.sidebardisclaimer }} -
-

Disclaimer

+
+

Disclaimer

{{ .Site.Params.disclaimerText }} -
- {{ end }} +
+ {{ end }} {{- $relatedInSidebar := true }} {{- if eq $s.showRelatedInSidebar false }}