Browse Source

Update 'Compression.ps1'

nathan 1 year ago
parent
commit
42f18c6496
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Compression.ps1

+ 3
- 3
Compression.ps1 View File

12
     # compact.exe uses advanced compression algorithms to compress the files and folders
12
     # compact.exe uses advanced compression algorithms to compress the files and folders
13
     # The compression level determines which algorithm is used and how much space is saved
13
     # The compression level determines which algorithm is used and how much space is saved
14
     # The pros and cons of each compression level are as follows:
14
     # The pros and cons of each compression level are as follows:
15
-    # low: Quick compression, uses XPRESS4K, saves some space, fast and low CPU usage
16
-    # medium: Default compression, uses XPRESS8K, saves more space, moderate speed and CPU usage
17
-    # high: Low compression, uses XPRESS16K, saves even more space, slow and high CPU usage
15
+    # low: Low compression, uses XPRESS4K, saves some space, fast and low CPU usage
16
+    # medium: Medium compression, uses XPRESS8K, saves more space, moderate speed and CPU usage
17
+    # high: High compression, uses XPRESS16K, saves even more space, slow and high CPU usage
18
     # max: Maximum compression, uses LZX, saves the most space, very slow and very high CPU usage
18
     # max: Maximum compression, uses LZX, saves the most space, very slow and very high CPU usage
19
     compact /C /S /A /I /EXE:$level $recursive $folder
19
     compact /C /S /A /I /EXE:$level $recursive $folder
20
 }
20
 }

Powered by TurnKey Linux.