1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!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,How To,Tutorial,i12betro">
- <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">
- <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>
-
|