1.1 KiB
1.1 KiB
Lab OS-1: System Inventory
Domain:
- 1.0 Operating Systems
Works on:
- Windows
- Linux
Does not require:
- macOS
Goal
Build the habit of collecting basic system identity information before troubleshooting.
Windows Steps
Run:
winver
systeminfo
hostname
whoami
wmic os get caption,version,buildnumber,osarchitecture
msinfo32
tpm.msc
Record:
- Windows edition:
- Version/build:
- Architecture:
- Host name:
- Current user:
- Total RAM:
- BIOS mode:
- Secure Boot state:
- TPM status/version:
Linux Steps
Run:
cat /etc/os-release
uname -a
hostname
whoami
free -h
Record:
- Distribution:
- Kernel:
- Architecture:
- Host name:
- Current user:
- Memory:
What You Should Learn
winveris a quick Windows version check.systeminfois a fuller Windows inventory command.hostnameidentifies the machine.whoamiidentifies the current user.cat /etc/os-releaseidentifies the Linux distribution.uname -ashows kernel and architecture details.msinfo32shows detailed Windows system and firmware information.tpm.mscchecks TPM status and version.