Forum Discussion
strokz95
Nov 26, 2024Copper Contributor
Unable to fix CVE-2024-38163
Have been trying to fix CVE-2024-38163 and have ran out of options. I understand that the WinRE version needs to be updated to fix this but couldnt update it yet after trying mounting, patching and o...
MichelleLikesComputers
Apr 02, 2025Copper Contributor
Hi there. I have found that deploying the below script is effective. Let me know of your experience!
$PolicyBinary = $env:windir+"\System32\SecureBootUpdates\SkuSiPolicy.p7b"
$MountPoint = 'C:\EFIMount'
$EFIDestinationFolder = "$MountPoint\EFI\Microsoft\Boot"
$EFIPartition = (Get-Partition | Where-Object IsSystem).AccessPaths[0]
if (-Not (Test-Path $MountPoint)) { New-Item -Path $MountPoint -Type Directory -Force }
mountvol $MountPoint $EFIPartition
if (-Not (Test-Path $EFIDestinationFolder)) { New-Item -Path $EFIDestinationFolder -Type Directory -Force }
Copy-Item -Path $PolicyBinary -Destination $EFIDestinationFolder -Force
mountvol $MountPoint /D