IMPORTANT Issue to be aware of if you use BitLocker on your OS drive


My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
Would definitely be the simpler option - hardly ever use / need recovery environment so wouldn't be a great loss to disable it especially on existing machines. And then on new machines will ensure they have a 2000mb recovery partition rather than 500mb so never have these issues again!
seems a reasonable plan. I often replace the standard winre with my own much bigger and more capable version.

or add any extra bootable wim file with a separate bcd entry .

It is quite easy just need to point bcd entries at the sdifile and the wim file. It is simplest to put the sdifile in the same folder as the bootable wim.
Can get a copy of boot.sdi from \Windows\Boot\DVD\PCAT\boot.sdi

In this example there is a folder on P called win11-iso. Inside that folder put the bootable wim ( this one is called boot.wim ) and in the same folder is the sdi file ( boot.sdi )

win11-iso.jpg
then point at it like below:

Code:
@ECHO OFF
rem set variables
set pedrive=P:
set pewimpath=\win11-iso\boot.wim
set mydescription=whatevername
set sdipath=\win11-iso\boot.sdi
set wloader=winload.efi
set LCAL=en-US
rem create device option
echo.
for /f "tokens=2 delims={}" %%g in ('BCDEDIT /create /device') do set newramdiskguid=%%g
echo.
echo new ramdisk guid is %newramdiskguid%
echo.
bcdedit.exe /set {%newramdiskguid%} ramdisksdidevice partition=%PEDRIVE%
bcdedit.exe /set {%newramdiskguid%} ramdisksdipath %SDIPATH%
bcdedit.exe /set {%newramdiskguid%} description "%mydescription%"
echo.
rem create loader
for /f "tokens=2 delims={}" %%g in ('BCDEDIT /create /application osloader') do set newloaderguid=%%g
echo.
echo new loader guid is %newloaderguid%
echo.
    bcdedit.exe /set {%newloaderguid%} path \Windows\system32\%WLOADER%
    bcdedit.exe /set {%newloaderguid%} locale %LCAL%
    bcdedit.exe /set {%newloaderguid%} systemroot \Windows
    bcdedit.exe /set {%newloaderguid%} detecthal Yes
    bcdedit.exe /set {%newloaderguid%} winpe Yes
    bcdedit.exe /set {%newloaderguid%} osdevice ramdisk=[%PEDRIVE%]%PEWIMPATH%,{%newramdiskguid%}
    bcdedit.exe /set {%newloaderguid%} device ramdisk=[%PEDRIVE%]%PEWIMPATH%,{%newramdiskguid%}
    bcdedit.exe /set {%newloaderguid%} description "%mydescription%"
    bcdedit.exe /displayorder {%newloaderguid%} /addlast
echo done
pause
 
Last edited:

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450
bcd entries just created look like this

device-option.jpg



loader.jpg
 
Last edited:

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450
By removing some unneeded content (for those interested I will detail later what I have removed and how) from the winre.wim I have managed to get the size of the updated file down enough so that it will fit on an existing 500mb recovery partition.

Since all our machines are running indentical images / same versions (build) of Windows I therefore can deploy this same file across all the machines now without having to follow the lengthy steps on each machine, and as I have psremoting enabled across all machines I can do this all remotely sitting on my ar$£ thankfully and thanks to above without having the hassle of partition resizing etc.

So my steps from a powershell admin prompt would be roughly as below - and I can then make this into a script to run across multiple machines automatically with logging / error handling etc.

1) enter-pssession {computer_name}

2) reagentc /disable

3) Copy-Item -Path "\\server\share\winre.wim" -Destination "c:\windows\system32\Recovery\

4) reagentc /enable

5) exit

Probably not the perfect solution but it works - I can boot into the recovery environment fine, all the tools work, and it has been patched - problem resolved for now - until Microsoft throw us another curve ball.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
By removing some unneeded content (for those interested I will detail later what I have removed and how) from the winre.wim I have managed to get the size of the updated file down enough so that it will fit on an existing 500mb recovery partition.

Since all our machines are running indentical images / same versions (build) of Windows I therefore can deploy this same file across all the machines now without having to follow the lengthy steps on each machine, and as I have psremoting enabled across all machines I can do this all remotely sitting on my ar$£ thankfully and thanks to above without having the hassle of partition resizing etc.

So my steps from a powershell admin prompt would be roughly as below - and I can then make this into a script to run across multiple machines automatically with logging / error handling etc.

1) enter-pssession {computer_name}

2) reagentc /disable

3) Copy-Item -Path "\\server\share\winre.wim" -Destination "c:\windows\system32\Recovery\

4) reagentc /enable

5) exit

Probably not the perfect solution but it works - I can boot into the recovery environment fine, all the tools work, and it has been patched - problem resolved for now - until Microsoft throw us another curve ball.
What have you removed ?
 

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450
As per previous post the items I removed from my winre.wim to get the size down so it would fit back on my existing 500mb partition after applying updates were as follows:-

1) Deleted

\windows\speech\Engines\tts

2) \windows\winsxs\

Deleted all folders in here with accessed / modified dates older than the date I had applied the updates using DISM /Add-Package - most of these were dated the date the ISO / WIM was originally created and some later ones dated 9/4/21, from hours of painstakingly removing a folder or two at a time and then testing it would still boot into recovery environment each time. This just left it containing folders and 1 file which are dated 13/01/23 which is the date I applied the update.

Finally I found two large folders in here which after much testing / internet research I deemed not needed in a RE environment so I removed them

amd64_microsoft-windows-i..dsetup-rejuvenation_31bf3856ad364e35_10.0.19041.1616_none_c72eb202c611e510
amd64_microsoft-windows-i..dsetup-rejuvenation_31bf3856ad364e35_10.0.19041.2486_none_c74b55c6c5fb5bb6

--

These were all removed by taking ownership / adding permissions to the parent folders by running Explorer as TrustedInstaller with NSudo - couldn't delete them without doing this first.
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
Last edited:

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450
I think the rejuv package is needed for reset and refresh.
Yes I thought so too, which is not something we would need (or could use anyway) as we have custom images deployed to all our machines
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
Just out of curiosity, why not simply write a script to increase the size of the recovery partition, or is it that space is at a premium?
 

My Computers

System One System Two

  • OS
    Win11 Pro 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Self-built
    CPU
    Intel i7 11700K
    Motherboard
    ASUS Prime Z590-A MB
    Memory
    64GB (Waiting for warranty replacement of another 64GB for 128GB total)
    Graphics Card(s)
    No GPU - Built-in Intel Graphics
    Sound Card
    Integrated
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe SSD
    1 x 2TB NVMe SSD
    1 x 4TB NVMe SSD
    3 x 512GB 2.5" SSD
    1 x 4TB 2.5" SSD
    5 x 8TB Seagate Barracuda HDD
    PSU
    Corsair HX850i
    Case
    Corsair iCUE RGB 5000X mid tower case
    Cooling
    Noctua NF-S12A chromax.black.swap case fans (Qty. 7) & Home Computer Specifications, Configuration, and Usage Notes General Specifications ASUS Prime Z590-A motherboard, serial number M1M0KC222467ARP Intel Core i7-11700K CPU (11th Gen Rocket Lake / LGA 1200 Socket) 128GB Crucial Ballistix RGB DDR4 3200 MHz DRAM (4 x 32GB) Corsair iCUE RGB 5000X mid tower case Noctua NH-D15 chromax.black CPU cooler Noctua NF-S12A chromax.black.swap case fans (Qty. 7) & Corsair LL-120 RGB Fans (Qty. 3)
    Keyboard
    Corsair K70 Max RGB Magnetic Keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    The five 8TB drives and three 512GB SSDs are part of a DrivePool using StableBit DrivePool software. The three SSDs are devoted purely to caching for the 8TB drives. All of the important data is stored in triplicate so that I can withstand simultaneous failure of 2 disks.

    Networking: 2.5Gbps Ethernet and WiFi 6e
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
I have cobbled together a small (ish) pe which also doesn't have rejuv, just the other recenv functions.

I have included explorer and diskmgmt etc so it comes out at 504mb for x64 only version.

x64only-size1.jpg

x64only-size.jpg


x64only-sys32andwnsxs.jpg
 
Last edited:

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450
Just out of curiosity, why not simply write a script to increase the size of the recovery partition, or is it that space is at a premium?
A lot of the computers only have 128gb SSD drives so space at a premium, and even on the ones with 256/512gb SSD drives it wasn't always letting me shrink the windows partition even though plenty of free space - kept getting "The specified shrink size is too big and will cause the volume to be smaller than the minimum volume size." error, even on computers where C: / windows partition had 150Gb free space and I was only trying to shrink it by 500mb!
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
I have cobbled together a small (ish) pe which also doesn't have rejuv, just the other recenv functions.

I have included explorer and diskmgmt etc so it comes out at 517mb for x64 only version. .

View attachment 49945
My final WIM after the changes I made above was 418mb
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
A lot of the computers only have 128gb SSD drives so space at a premium, and even on the ones with 256/512gb SSD drives it wasn't always letting me shrink the windows partition even though plenty of free space - kept getting "The specified shrink size is too big and will cause the volume to be smaller than the minimum volume size." error, even on computers where C: / windows partition had 150Gb free space and I was only trying to shrink it by 500mb!
Ahh, ok. That makes sense. Wow, what a pain in the backside.

I updated all my Windows editions on my ISOs so that anytime I install fresh I will at least have the new WinRE.wim right out of the gate.

But, to be honest, I starting to think about ditching these silly recovery partitions altogether and just not even having one on my machines.
 

My Computers

System One System Two

  • OS
    Win11 Pro 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Self-built
    CPU
    Intel i7 11700K
    Motherboard
    ASUS Prime Z590-A MB
    Memory
    64GB (Waiting for warranty replacement of another 64GB for 128GB total)
    Graphics Card(s)
    No GPU - Built-in Intel Graphics
    Sound Card
    Integrated
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe SSD
    1 x 2TB NVMe SSD
    1 x 4TB NVMe SSD
    3 x 512GB 2.5" SSD
    1 x 4TB 2.5" SSD
    5 x 8TB Seagate Barracuda HDD
    PSU
    Corsair HX850i
    Case
    Corsair iCUE RGB 5000X mid tower case
    Cooling
    Noctua NF-S12A chromax.black.swap case fans (Qty. 7) & Home Computer Specifications, Configuration, and Usage Notes General Specifications ASUS Prime Z590-A motherboard, serial number M1M0KC222467ARP Intel Core i7-11700K CPU (11th Gen Rocket Lake / LGA 1200 Socket) 128GB Crucial Ballistix RGB DDR4 3200 MHz DRAM (4 x 32GB) Corsair iCUE RGB 5000X mid tower case Noctua NH-D15 chromax.black CPU cooler Noctua NF-S12A chromax.black.swap case fans (Qty. 7) & Corsair LL-120 RGB Fans (Qty. 3)
    Keyboard
    Corsair K70 Max RGB Magnetic Keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    The five 8TB drives and three 512GB SSDs are part of a DrivePool using StableBit DrivePool software. The three SSDs are devoted purely to caching for the 8TB drives. All of the important data is stored in triplicate so that I can withstand simultaneous failure of 2 disks.

    Networking: 2.5Gbps Ethernet and WiFi 6e
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor
Ahh, ok. That makes sense. Wow, what a pain in the backside.

I updated all my Windows editions on my ISOs so that anytime I install fresh I will at least have the new WinRE.wim right out of the gate.

But, to be honest, I starting to think about ditching these silly recovery partitions altogether and just not even having one on my machines.
Agreed, the whole thing has been a complete pain - typcial Microsoft!

Good thought! - better than waiting for MS to release updated ISOs

I had thought about just disabling RE completely - not sure you can completely get rid of partition - I thought you had to have it for bitlocker to function? perhaps not?
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
Agreed, the whole thing has been a complete pain - typcial Microsoft!

Good thought! - better than waiting for MS to release updated ISOs

I had thought about just disabling RE completely - not sure you can completely get rid of partition - I thought you had to have it for bitlocker to function? perhaps not?
I've just always assumed I could ditch it. I'm going to try it on a VM.
 

My Computers

System One System Two

  • OS
    Win11 Pro 24H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Self-built
    CPU
    Intel i7 11700K
    Motherboard
    ASUS Prime Z590-A MB
    Memory
    64GB (Waiting for warranty replacement of another 64GB for 128GB total)
    Graphics Card(s)
    No GPU - Built-in Intel Graphics
    Sound Card
    Integrated
    Monitor(s) Displays
    HP Envy 32
    Screen Resolution
    2560 x 1440
    Hard Drives
    1 x 1TB NVMe SSD
    1 x 2TB NVMe SSD
    1 x 4TB NVMe SSD
    3 x 512GB 2.5" SSD
    1 x 4TB 2.5" SSD
    5 x 8TB Seagate Barracuda HDD
    PSU
    Corsair HX850i
    Case
    Corsair iCUE RGB 5000X mid tower case
    Cooling
    Noctua NF-S12A chromax.black.swap case fans (Qty. 7) & Home Computer Specifications, Configuration, and Usage Notes General Specifications ASUS Prime Z590-A motherboard, serial number M1M0KC222467ARP Intel Core i7-11700K CPU (11th Gen Rocket Lake / LGA 1200 Socket) 128GB Crucial Ballistix RGB DDR4 3200 MHz DRAM (4 x 32GB) Corsair iCUE RGB 5000X mid tower case Noctua NH-D15 chromax.black CPU cooler Noctua NF-S12A chromax.black.swap case fans (Qty. 7) & Corsair LL-120 RGB Fans (Qty. 3)
    Keyboard
    Corsair K70 Max RGB Magnetic Keyboard
    Mouse
    Logitech MX Master 3
    Internet Speed
    1Gb Up / 1 Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    The five 8TB drives and three 512GB SSDs are part of a DrivePool using StableBit DrivePool software. The three SSDs are devoted purely to caching for the 8TB drives. All of the important data is stored in triplicate so that I can withstand simultaneous failure of 2 disks.

    Networking: 2.5Gbps Ethernet and WiFi 6e
  • Operating System
    Win11 Pro 23H2
    Computer type
    Laptop
    Manufacturer/Model
    Lenovo ThinkBook 13x Gen 2
    CPU
    Intel i7-1255U
    Memory
    16 GB
    Graphics card(s)
    Intel Iris Xe Graphics
    Sound Card
    Realtek® ALC3306-CG codec
    Monitor(s) Displays
    13.3-inch IPS Display
    Screen Resolution
    WQXGA (2560 x 1600)
    Hard Drives
    2 TB 4 x 4 NVMe SSD
    PSU
    USB-C / Thunderbolt 4 Power / Charging
    Mouse
    Buttonless Glass Precision Touchpad
    Keyboard
    Backlit, spill resistant keyboard
    Internet Speed
    1Gb Up / 1Gb Down
    Browser
    Edge
    Antivirus
    Windows Defender
    Other Info
    WiFi 6e / Bluetooth 5.1 / Facial Recognition / Fingerprint Sensor / ToF (Time of Flight) Human Presence Sensor

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450
I've just always assumed I could ditch it. I'm going to try it on a VM.
Be interesting to know your results - make sure you also test bitlocker with preboot authentication and then also pressing esc and testing supplying recovery key as that is perhaps point it might need / use the recovery partition maybe?
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
yes, but I included a lot of fancy stuff like explorer.
cool, can I ask how - is this a winbuilder / pebakery type customization or something else?
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell
    CPU
    Intel(R) Core(TM) i7-10700 CPU @ 2.90GHz 2.90 GHz
    Memory
    32Gb
    Browser
    Google Chrome
    Antivirus
    AVG Internet Security
This implies that a separate recov partition isn't needed:

The hard disk must be partitioned with at least two drives:


  • The operating system drive (or boot drive) contains the operating system and its support files. It must be formatted with the NTFS file system.
  • The system drive contains the files that are needed to load Windows after the firmware has prepared the system hardware. BitLocker isn't enabled on this drive. For BitLocker to work, the system drive must not be encrypted, must differ from the operating system drive, and must be formatted with the FAT32 file system on computers that use UEFI-based firmware or with the NTFS file system on computers that use BIOS firmware. It's recommended that the system drive be approximately 350 MB in size. After BitLocker is turned on, it should have approximately 250 MB of free space.
 

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450
cool, can I ask how - is this a winbuilder / pebakery type customization or something else?
same sort of idea, I usually make my own pe which is a bit laborious. The end result is probably not massively different from using a builder
 

My Computers

System One System Two

  • OS
    Win7,Win11
    Computer type
    PC/Desktop
    CPU
    i5-8400
    Motherboard
    gigabyte b365m ds3h
    Memory
    2x8gb 3200mhz
    Monitor(s) Displays
    benq gw2480
    PSU
    bequiet pure power 11 400CM
    Cooling
    cryorig m9i
  • Operating System
    win7,win11
    Computer type
    PC/Desktop
    CPU
    pentium g5400
    Motherboard
    gigabyte b365m ds3h
    Memory
    1x8gb 2400
    PSU
    xfx pro 450

Latest Support Threads

Back
Top Bottom