Forum Discussion
Cumulative update KB5001330 fails to install
Jauhar I was suffer with exact same situation.
It happens if you're using UEFI and your OS disk doesn't have EFI and MSR partition.
You have to recreate both of partition.
before you create it, you have to secure at lease 500MB from OS disk.
Open command>
diskpart
select disk 0(your OS installed disk)
create partition efi size=300
format quick fs=fat32 label="system"
create partition msr size=128
hope it will help
I'm having the same issue and wonder if I need to do the same. In your above command, what're the size 300 & 128 in, KB, MB, GB? Thanks.
Below is the output of my Diskpart info, please tell me if you observe the issue too:
Microsoft Windows [Version 10.0.19042.685]
(c) 2020 Microsoft Corporation. All rights reserved.
C:\WINDOWS\system32>diskpart
Microsoft DiskPart version 10.0.19041.610
Copyright (C) Microsoft Corporation.
On computer: STAR
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 931 GB 0 B *
Disk 1 Online 57 GB 0 B
DISKPART> select disk 0
Disk 0 is now the selected disk.
DISKPART> list volume
Volume ### Ltr Label Fs Type Size Status Info
---------- --- ----------- ----- ---------- ------- --------- --------
Volume 0 D DVD-ROM 0 B No Media
Volume 1 C Windows NTFS Partition 909 GB Healthy Boot
Volume 2 SYSTEM FAT32 Partition 260 MB Healthy System
Volume 3 WinRE_DRV NTFS Partition 1000 MB Healthy Hidden
Volume 4 LENOVO_PART NTFS Partition 20 GB Healthy Hidden
Volume 5 E DBAN-1_0_7 FAT32 Removable 57 GB Healthy
- Johnny_KimApr 15, 2021Copper Contributor
Hi Ken
It's MB. Here is my Disk Status.
DISKPART> select disk 0
Disk 0 is now the selected disk.
DISKPART> list partition
Partition ### Type Size Offset
------------- ---------------- -------- --------
Partition 1 Primary 953 GB 32 KB
Partition 2 System 300 MB 953 GB --> EFI Partition
Partition 3 Reserved 128 MB 953 GB --> MSR Partition
it works your partition style should be GPT.
you can find out your partition style from input 'Get-Disk | ft -auto' in Windows PowerShell.- Ken94110Apr 15, 2021Copper Contributor