a07813a754
Adding files related to scanning a Windows system for damaged system files.
11 lines
219 B
Markdown
11 lines
219 B
Markdown
# Check the System Files
|
|
|
|
Run the following commands from an elevated PowerShell prompt.
|
|
|
|
```shell
|
|
DISM.exe /Online /Cleanup-image /Restorehealth
|
|
sfc /scannow
|
|
```
|
|
|
|
These commands should repair any damaged system files.
|