12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Shave ~3GB From Windows OS Drive</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Microsoft,Windows,Compress,Storage,Operating System,Trick,Space,Disk,Save,I12betro,Compact,Free Up Storage Space,Free Up Disk Space,Windows 11,Windows 10,Reduce Windows Disk Usage,System Maintenance,System Administrator,Shrink Windows Installation,Hard Disk,Hard Drive,IT Toolbox,Disk Space,Disk Cleanup,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Shave ~3GB From Windows OS Drive">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="04/03/2022 12:23:22 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Shave ~3GB From Windows OS Drive</h1>
- </div>
- <div></div>
- <div id="content">
- <p>This is a great trick to save a few gigabytes of space on the OS, especially if you have a smaller mSata SSD for the boot drive.</p>
- <ol>
- <li>Right click the Start button > Command Prompt (Admin)</li>
- <li>Run the following command to compress OS files
- <div class="codeBlock">Compact.exe /CompactOS:always</div>
- </li>
- <li>The command takes about 10 minutes to complete depending on your hard drive and will free about 3 GB of space</li>
- </ol>
- <h2>Reverting the Compression</h2>
- <p>If for some reason you want to undo this change you can use the steps below to decompress the OS files</p>
- <ol>
- <li>Right click the Start button > Command Prompt (Admin)</li>
- <li>Run the following command to compress OS files
- <div class="codeBlock"><span class="codeBlock">Compact.exe /CompactOS:never</span></div>
- </li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|