AlexViktor
New member
- Local time
- 10:31 AM
- Posts
- 5
- OS
- 11
I used this script to compress the entire drive
do you know of software that outputs a clean .txt file containing any filepaths with their name and extension for the monitoring duration the application is running?
and then; once i have that list, to run these files through decompression of LZX back to windows' standard XPRESS4K to again have a faster OS.
@echo off
set /p a= "Do you want to compress drive to save space? (Y/N) [Default = Y] "
SetLocal EnableDelayedExpansion
taskkill /f /im explorer.exe
powercfg.exe -h off
DISM /Online /Set-ReservedStorageState /State:Disabled
reg add "HKLM\SYSTEM\ControlSet001\Control\Session Manager\Memory Management" /v "PagingFiles" /t REG_MULTI_SZ /d "" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager" /v "MiscPolicyInfo" /t REG_DWORD /d "2" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager" /v "PassedPolicy" /t REG_DWORD /d "0" /f
Reg.exe add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ReserveManager" /v "ShippedWithReserves" /t REG_DWORD /d "0" /f
if %a%==N goto exit
if %a%==n goto exit
compact.exe /c /s /a /i /exe:lzx "C:\*"
:exit
shutdown /r /f /t 5 /c "Finished"
DEL "%~f0"
exit
do you know of software that outputs a clean .txt file containing any filepaths with their name and extension for the monitoring duration the application is running?
and then; once i have that list, to run these files through decompression of LZX back to windows' standard XPRESS4K to again have a faster OS.
- Windows Build/Version
- Version 24H2 (OS Build 26100.3194), W11 Pro
My Computer
System One
-
- OS
- 11