forked from i12bretro/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0100.html
49 lines (44 loc) · 2.36 KB
/
0100.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!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>