From 0566371f79d9a903ec4be73a8a2d9d38b5999537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pl=C3=ADnio=20Larrubia?= Date: Mon, 30 Oct 2023 15:36:32 -0300 Subject: [PATCH] Disable reserved storage - Gives more storage space --- src/scripts/Optimize-Performance.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/scripts/Optimize-Performance.ps1 b/src/scripts/Optimize-Performance.ps1 index a720ccb9..1b6e774e 100644 --- a/src/scripts/Optimize-Performance.ps1 +++ b/src/scripts/Optimize-Performance.ps1 @@ -147,6 +147,11 @@ function Optimize-Performance() { Set-ItemPropertyVerified -Path "$PathToLMMultimediaSystemProfileOnGameTasks" -Name "GPU Priority" -Type DWord -Value 8 # Default: 8 Set-ItemPropertyVerified -Path "$PathToLMMultimediaSystemProfileOnGameTasks" -Name "Priority" -Type DWord -Value 6 # Default: 2 Set-ItemPropertyVerified -Path "$PathToLMMultimediaSystemProfileOnGameTasks" -Name "Scheduling Category" -Type String -Value "High" # Default: "Medium" + + # Details: https://winbuzzer.com/2020/08/18/how-to-enable-or-disable-windows-10-reserved-storage-xcxwbt/ + Write-Section "Storage Tweaks" + Write-Status -Types "-", $TweakType -Status "Disabling Reserved Storage (Windows 10 1903+)..." + DISM /Online /Set-ReservedStorageState /State:Disabled | Out-Host } If (!$Revert) {