W11 LZX Global Compression and Selected Decompression


AlexViktor

Member
Local time
7:19 AM
Posts
9
OS
11
I used this script to compress the entire drive

@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 My Computer

At a glance

11
OS
11
If the program (compact.exe) displays a list of files on the screen while running

 

My Computer My Computer

At a glance

Microsoft Windows 11 HomeIntel Core i5-13490F2 x 16 Patriot Memory (PDP Systems) PSD516G56...GIGABYTE GeForce RTX 4070 WINDFORCE OC 12G (G...
OS
Microsoft Windows 11 Home
Computer type
PC/Desktop
Manufacturer/Model
MSI MS-7D98
CPU
Intel Core i5-13490F
Motherboard
MSI B760 GAMING PLUS WIFI
Memory
2 x 16 Patriot Memory (PDP Systems) PSD516G560081 6400MT (32-37-37-74); 1.35V)
Graphics Card(s)
GIGABYTE GeForce RTX 4070 WINDFORCE OC 12G (GV-N4070WF3OC-12GD)
Sound Card
Bluetooth Аудио
Monitor(s) Displays
INNOCN 15K1F
Screen Resolution
1920 x 1080
Hard Drives
WD_BLACK SN770 250GB
KINGSTON SNV2S1000G (ELFK0S.6)
PSU
Thermaltake Toughpower GF3 1000W
Case
CG560 - DeepCool
Cooling
ID-COOLING SE-224-XTS / 2 x 140Mm Fan - rear and top; 3 x 120Mm - front
Keyboard
Corsair K70 RGB TKL
Mouse
Corsair KATAR PRO XT
Internet Speed
100 Mbps
Browser
Firefox
Antivirus
Microsoft Defender Antivirus
Other Info
https://www.userbenchmark.com/UserRun/66553205
the basic thought is;
- compress everything
- obtain file names with path and extensions of frequently used files
- decompress frequently used files
(ideally once in a while automatically)
 

My Computer My Computer

At a glance

11
OS
11
i am unsure how to decompress, could need some help here
 

My Computer My Computer

At a glance

11
OS
11
Back
Top Bottom