1.1 KiB
1.1 KiB
Lab OS-2: Recovery and Disk Information
Domain:
- 1.0 Operating Systems
Works on:
- Windows
- Linux
Does not require:
- macOS
Goal
Practice safe commands that help identify recovery status, file corruption, boot configuration, and disk layout.
Windows Steps
Run:
reagentc /info
sfc /scannow
bcdedit
Optional repair command:
DISM /Online /Cleanup-Image /RestoreHealth
Record:
- Is Windows RE enabled?
- Did SFC find integrity violations?
- What boot loader description appears in
bcdedit? - Did DISM complete successfully, if you ran it?
Do not edit BCD settings in this lab.
Linux Steps
Run:
lsblk
df -h
Record:
- Main disk name:
- Root filesystem:
- Root filesystem free space:
- Any mounted removable drives:
What You Should Learn
reagentc /infochecks Windows Recovery Environment status.sfc /scannowchecks and repairs protected Windows system files.DISM /Online /Cleanup-Image /RestoreHealthrepairs the Windows image/component store.bcdeditdisplays boot configuration.lsblkshows disks and partitions.df -hshows mounted filesystem usage.