Build a management console and record the direct route to twelve settings

short · 30 min · Objective 1.2

Task

Assemble a custom management console from snap-ins, and build a personal reference of direct commands for the settings you will actually use. The deliverable outlives any particular version of Windows, which is the point: click paths describe one release and the commands have been stable for twenty years.

Steps

  1. Open an empty management console, add at least five snap-ins, and save it into your lab directory. Record the snap-ins in lab/console/snapins.csv with header snapin,what_it_shows,remote_capable.
  2. Write lab/console/commands.csv with header setting,direct_command,surface giving the direct command for at least twelve settings, marking whether each lives in Settings or Control Panel.
  3. Open at least four of them using the command rather than the menu, and mark those rows with a verified column value of yes.
  4. Write lab/console/eventview.md describing the custom Event Viewer view you created -- which logs, which levels, which time range -- and how many events it showed.
  5. Write lab/console/remote.md naming which of your snap-ins can be pointed at another computer and what that requires.

Verify

awk -F, 'NR>1 && NF>=3 {n++} END {print n" snap-in(s)"}' lab/console/snapins.csv
awk -F, 'NR>1 && NF>=3 {n++} END {print n" setting(s)"}' lab/console/commands.csv
awk -F, 'NR>1 && $4 ~ /yes/ {n++} END {print n" verified route(s)"}' lab/console/commands.csv
grep -Eic 'error|critical|warning' lab/console/eventview.md
grep -Eic 'remote|another computer|target' lab/console/remote.md

Five snap-ins, twelve settings, four verified directly. A command you have not run is a command you copied, and the ones that have been renamed between versions are exactly the ones you will reach for under pressure.

Notes

Save the console into somewhere you will find it again. A .msc file with the five snap-ins you use, pointed at the machine you support most, is a genuinely useful artefact rather than an exercise.

This is an independent study companion for CompTIA A+ Core 2 220-1202 and is not produced by or endorsed by CompTIA.