CMD commando's
1 hour ago by Jinu in Plain Text
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<title>Windows CMD Probleemoplossing & Optimalisatie</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background: #f4f6ff;
color: #1a1a1a;
line-height: 1.6;
}
h1, h2, h3 {
font-weight: 700;
}
h1 {
color: #3C5AFF;
border-bottom: 4px solid #8A3FFC;
padding-bottom: 10px;
}
h2 {
color: #8A3FFC;
margin-top: 40px;
}
h3 {
color: #3C5AFF;
}
.section {
background: white;
padding: 25px;
margin-bottom: 25px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
code {
background: #e9e9ff;
padding: 5px 10px;
border-radius: 5px;
display: block;
margin: 10px 0;
border-left: 4px solid #8A3FFC;
}
</style>
</head>
<body>
<h1>Windows CMD Probleemoplossing & Optimalisatie Gids</h1>
<div class="section">
<h2>1. DISM – Component Store Reparatie</h2>
<h3>1.1 DISM /CheckHealth</h3>
<p>Voert een snelle scan uit naar bekende corruptie.</p>
<code>DISM /Online /Cleanup-Image /CheckHealth</code>
<h3>1.2 DISM /ScanHealth</h3>
<p>Diepe diagnose van Windows componenten.</p>
<code>DISM /Online /Cleanup-Image /ScanHealth</code>
<h3>1.3 DISM /RestoreHealth</h3>
<p>Herstelt corrupte systeembestanden via Windows Update.</p>
<code>DISM /Online /Cleanup-Image /RestoreHealth</code>
<h3>1.4 RestoreHealth via ISO (geavanceerd)</h3>
<code>DISM /Online /Cleanup-Image /RestoreHealth /Source:wim:D:\sources\install.wim:1 /LimitAccess</code>
</div>
<div class="section">
<h2>2. SFC – System File Checker</h2>
<h3>SFC /scannow</h3>
<p>Controleert en herstelt automatisch beschadigde systeembestanden.</p>
<code>sfc /scannow</code>
</div>
<div class="section">
<h2>3. CHKDSK – Schijfcontrole</h2>
<h3>CHKDSK /f /r</h3>
<p>Herstelt fouten en zoekt slechte sectoren.</p>
<code>chkdsk C: /f /r</code>
</div>
<div class="section">
<h2>4. Netwerk & DNS Herstel</h2>
<h3>DNS Flush</h3>
<code>ipconfig /flushdns</code>
<h3>Winsock Reset</h3>
<code>netsh winsock reset</code>
<h3>TCP/IP Reset</h3>
<code>netsh int ip reset</code>
<h3>IP vernieuwen</h3>
<code>ipconfig /release<br>ipconfig /renew</code>
</div>
<div class="section">
<h2>5. Systeemoptimalisatie</h2>
<h3>Schijfopruiming (geavanceerd)</h3>
<code>cleanmgr /sageset:1</code>
<code>cleanmgr /sagerun:1</code>
<h3>Tijdelijke bestanden verwijderen</h3>
<code>del /q/f/s %TEMP%\*</code>
<h3>Prefetch opschonen</h3>
<code>del /q/f/s C:\Windows\Prefetch\*.*</code>
</div>
<div class="section">
<h2>6. Services & Opstart</h2>
<h3>MSCONFIG</h3>
<code>msconfig</code>
<h3>Windows Update Services Herstellen</h3>
<code>
sc config wuauserv start= auto<br>
sc config bits start= auto<br>
sc config cryptsvc start= auto<br>
sc config trustedinstaller start= auto
</code>
</div>
</body>
</html>