System Tools

Windows administration runs on commands with long, unforgiving switch lists and on logs that are easier to export than to read. The tools here take the two worst parts of that: building a command you will actually trust in production, and turning an event log export into something you can reason about.

The builders are not wrappers that hide the command. They show you the exact line they produce, so you can read it, understand it, and paste it into a script that someone else will maintain.

Tools in this category

  • ROBOCOPY Command builder — assemble a copy, mirror or backup command with the right retry, logging and exclusion switches, and see what each one does before you run it.
  • Windows Event Log Analyzer — paste an event log export and get grouped, counted and sorted results instead of scrolling a raw dump.
  • nltest Command Builder — build domain controller discovery, secure channel and trust queries without re-reading the syntax every time.
  • Windows 11 registry tweak generator — produce a ready .reg file for common Windows 11 behaviour changes, with the undo entry included.

Where these get used

ROBOCOPY is the clearest case. A migration copy that runs for six hours and then fails on one locked file is a wasted night, and the difference between a good run and a bad one is three or four switches: retry count, wait time, restartable mode, and a log file you can actually read afterwards. The builder puts those in front of you instead of leaving them to memory.

The event log analyzer earns its place during an incident review. You export a few thousand events from a server, and the question is never what happened at 14:32 but which error repeated, how often, and starting when. Grouping and counting answers that in a minute; scrolling does not.


Related guides


Other tool categories