
Master Your Workstation: 8 Hands-On Windows Terminal Tricks
, by Admin Account, 6 min reading time

, by Admin Account, 6 min reading time
Welcome to Learning Friday! Today, we are taking a deep dive into the Windows Command Prompt (CMD). You don't need to be an IT administrator to troubleshoot network hiccups, audit laptop battery degradation, recover forgotten Wi-Fi keys, or inspect critical system health files yourself.
Modern operating systems hide most of their diagnostic tools behind layers of graphical user interfaces (GUIs). While clicking through menus works fine for basic tasks, the command line offers direct, unfiltered access to hardware stats and network utilities.
By taking 10 minutes to learn a few native terminal commands, you can diagnose connectivity issues faster, verify system integrity without third-party software, and understand what is happening under the hood of your PC.
Some diagnostic commands require basic privileges, while others need administrator access to modify system files:
Windows Key + R, type cmd, and press Enter.Windows Key, type cmd, right-click Command Prompt, and choose Run as Administrator.
Instead of guessing if your Wi-Fi is failing or a specific website server is down, use the ping tool to send small data packets across the internet and measure round-trip response times.
ping google.com
time=XXms string. Response times under 50ms indicate a stable connection. If you see "Request timed out" or "Destination host unreachable," your connection to the gateway or remote server is dropping.
Ever wonder why a page loads slowly? The tracert (Trace Route) command displays every router (hop) your data passes through between your laptop and a destination web server.
tracert google.com
When websites fail to load after a DNS change or network switch, Windows might be holding outdated routing addresses. Flushing your DNS cache forces Windows to request a fresh address routing table immediately.
ipconfig /flushdns
Retrieve a full overview of your active IP address, Gateway IP (router address), Subnet Mask, and hardware MAC address without digging through nested Control Panel screens.
ipconfig /all
IPv4 Address and Default Gateway.Lithium-ion batteries degrade over time. Windows includes a hidden diagnostic engine that builds a detailed HTML report tracking your battery's original design capacity versus its current maximum charge holding ability.
powercfg /batteryreport
C:\Users\YourName\battery-report.html). Copy that path into your browser address bar to view your battery's full charge history and wear percentage.Need to connect a mobile device to a Wi-Fi network your laptop already knows, but forgot the password? You can pull stored security keys directly from your saved system profiles.
netsh wlan show profile name="YourWiFiNetworkName" key=clear
YourWiFiNetworkName with your actual Wi-Fi SSID. Look under the Security settings section for the Key Content line to view your network password in plain text.If your operating system feels slow, crashes unexpectedly, or displays odd errors, Windows can scan its system files against a clean master directory and automatically replace corrupted files. (Requires Administrator CMD)
sfc /scannow
Instead of installing third-party system inspector tools, use the built-in systeminfo command to generate a full inventory of your hardware specs, BIOS version, memory size, and OS build numbers.
systeminfo
Mastering basic command-line utilities gives you greater control over your workstation. Next time you encounter a network drop, a slow website, or a draining laptop battery, open terminal first and run these native diagnostic tools yourself!
Subscribe to our emails