Guides and articles

Practical guides for system administrators — Windows, PowerShell, Active Directory, networking, and infrastructure.

ROBOCOPY exit codes explained

Robocopy does not use a standard pass/fail exit code. It uses a bitmask — a number where each bit represents a different outcome, and multiple bits can be set at the same time. This means a non-zero exit code does…

NETSTAT command in Windows

When a port is unreachable, a service is not responding, or something is holding a connection open, netstat is the first command to run. It shows exactly what is listening on which port, which connections are established, which processes own…

Git and GitHub for System Administrators: A Practical Guide

Git is version control software that tracks changes in files over time. System administrators use it to manage PowerShell scripts, configuration files, infrastructure documentation, and runbooks — anything that changes and needs a history. Without version control, you rely on…