+965 9914 1024 Sat-Thu: 9:30AM-1PM & 5PM-8PM | Fri: Closed
Windows 11 Network Technician Cheat Sheet: Shortcuts, Commands & Troubleshooting Tips
Windows Tips & Tricks  September 10, 2026  Admin  10 views

Windows 11 Network Technician Cheat Sheet: Shortcuts, Commands & Troubleshooting Tips

🔧 1. Essential Windows Run Commands

Press Win + R, type the command, and press Enter.

Run command

What it opens

Useful for

ncpa.cpl

Network Connections

Enable/disable adapters and check network configuration

devmgmt.msc

Device Manager

Check network adapters and drivers

cmd

Command Prompt

Run network troubleshooting commands

powershell

PowerShell

Run advanced network and administration commands

ms-settings:network

Windows Network Settings

Configure network and Internet settings

inetcpl.cpl

Internet Properties

Proxy and LAN settings

firewall.cpl

Windows Firewall

Basic firewall settings

wf.msc

Windows Defender Firewall with Advanced Security

Manage firewall rules

services.msc

Services

Start, stop, or restart Windows services

eventvwr.msc

Event Viewer

Investigate Windows and network-related errors

compmgmt.msc

Computer Management

Access Windows administration tools

mstsc

Remote Desktop Connection

Connect to another Windows PC

sysdm.cpl

System Properties

Computer name, domain and system settings

control printers

Devices and Printers

Troubleshoot local and network printers

Quick example

To troubleshoot a network adapter:

Win + R → ncpa.cpl → Enter

To check the adapter driver:

Win + R → devmgmt.msc → Enter

To manage Windows services:

Win + R → services.msc → Enter


🌐 2. Most Useful CMD Network Commands

Command Prompt remains one of the most useful tools for diagnosing Windows network problems.

Check IP Address

ipconfig

For detailed information:

ipconfig /all

Look for:

  • IPv4 Address
  • Subnet Mask
  • Default Gateway
  • DNS Servers
  • DHCP Server
  • Physical/MAC Address

The /all option is particularly useful because it provides much more information about the network adapter and how the computer received its configuration.


🔄 3. Renew an IP Address

If a computer is not receiving the correct IP address from DHCP, try:

ipconfig /release

Then:

ipconfig /renew

/release releases the current DHCP-assigned address, while /renew requests a new address from the DHCP server.

When is this useful?

Use these commands when:

  • The computer has no valid IP address
  • The computer received an incorrect IP configuration
  • DHCP appears to be having problems
  • The computer cannot communicate with other devices on the network

🧹 4. Clear the DNS Cache

If websites or internal servers are not resolving correctly, clear the local DNS cache:

ipconfig /flushdns

This removes cached DNS entries from the computer and forces Windows to perform new DNS lookups.

Also useful

To view the current DNS cache:

ipconfig /displaydns


🔍 5. Check Network Connectivity

Start with an Internet IP address:

ping 8.8.8.8

Then test a hostname:

ping google.com

Quick diagnosis

Result

What it may indicate

8.8.8.8 works, google.com fails

DNS is a likely area to investigate

Both fail

Check gateway, LAN/Wi-Fi, router, ISP or firewall

Gateway fails

Investigate local network connectivity

Gateway works, 8.8.8.8 fails

Investigate Internet connection, routing or firewall

Important: A failed ping to a website does not necessarily mean the website is down. Some servers block or ignore ICMP ping requests.


🧭 6. Find Where the Connection Is Failing

When troubleshooting a network problem, don't immediately reset everything. Work from the computer outward.

Check the Default Gateway

First run:

ipconfig

Find the Default Gateway.

Then ping it:

ping 192.168.1.1

Replace 192.168.1.1 with the actual gateway shown on the computer.

If the gateway responds, the computer can communicate with the local router or network.

If it does not respond, investigate the Ethernet/Wi-Fi connection, network adapter, cable, switch, VLAN, or gateway.


Trace the Network Route

Use:

tracert google.com

tracert shows the network hops between your computer and the destination.

It can help identify where traffic appears to stop or where routing problems may be occurring.

For a more detailed route and packet-loss analysis, use:

pathping google.com

pathping combines features of ping and tracert and can provide packet-loss and latency information for individual network hops.


🔎 7. DNS Troubleshooting

Find the IP Address of a Domain

nslookup google.com

To query a specific DNS server:

nslookup google.com 8.8.8.8

This is particularly useful when comparing your company's DNS server with a public DNS server.

For example, if the company's DNS server fails to resolve a name but a public DNS server succeeds, DNS configuration or the internal DNS server may need investigation.

View DNS Cache

ipconfig /displaydns

Clear the cache with:

ipconfig /flushdns


🔌 8. Check Network Connections and Ports

View Active Connections

netstat -ano

This displays active connections, listening ports and associated process IDs.

Show listening ports

netstat -ano | findstr LISTENING

Find a particular port

For example, to look for HTTPS:

netstat -ano | findstr :443

The last number is the PID (Process ID).

You can then identify the process:

tasklist | findstr 1234

Replace 1234 with the actual PID.

This can be useful when investigating which Windows application is using a particular network connection or port.


🔌 9. Advanced Network Diagnostics

View the ARP Table

arp -a

Displays the computer's ARP cache, showing IP addresses and their corresponding MAC addresses on the local network.

Useful for investigating local-network communication and checking how Windows has mapped local IP addresses to MAC addresses.

View the Routing Table

route print

Displays Windows routing entries, gateways and network interfaces.

This is particularly useful when troubleshooting:

  • Multiple network adapters
  • VPN connections
  • Incorrect gateways
  • Unusual routing problems
  • Systems with more than one network path

🛜 10. Wi-Fi Technician Commands

Windows provides several netsh commands that are useful when troubleshooting wireless connections.

Show Saved Wi-Fi Networks

netsh wlan show profiles

Displays wireless network profiles saved on the computer.

Show Current Wi-Fi Information

netsh wlan show interfaces

Shows information about the current Wi-Fi connection, including:

  • SSID
  • Signal strength
  • Radio type
  • Channel
  • Authentication
  • Connection state

Show Wi-Fi Driver Information

netsh wlan show drivers

Displays detailed information about the installed wireless adapter and its supported capabilities.

Generate a Wi-Fi Report

netsh wlan show wlanreport

Creates a detailed Windows Wi-Fi report containing recent wireless connection events and troubleshooting information.

This can be particularly useful when diagnosing intermittent Wi-Fi connections, repeated disconnections, or wireless authentication problems.


🧰 11. Windows Network Reset Commands

When networking is badly misbehaving, these commands are commonly used during troubleshooting.

Reset Winsock:

netsh winsock reset

Reset the TCP/IP stack:

netsh int ip reset

Clear the DNS cache:

ipconfig /flushdns

Restart Windows afterward.

⚠️ Don't reset everything immediately

Network reset commands should generally not be your first troubleshooting step.

First determine whether the problem is related to:

  • Network adapter
  • DHCP
  • IP configuration
  • Default gateway
  • DNS
  • Routing
  • Firewall
  • Wi-Fi
  • Application-specific connectivity

Resetting network components without identifying the problem can make troubleshooting more difficult.


12. PowerShell Network Commands

PowerShell provides more detailed networking information and is especially useful for IT technicians.

Show IP Configuration

Get-NetIPConfiguration

Displays network configuration information for the computer.

Show Network Adapters

Get-NetAdapter

Shows network adapters and their status.

Show Detailed Adapter Information

Get-NetAdapter | Format-List

Displays more detailed information about the network adapters.

Test Network Connectivity

Test-NetConnection google.com

Useful for testing connectivity to a destination.

Test a Specific TCP Port

Test-NetConnection servername -Port 443

This is one of the most useful PowerShell commands for technicians because it can test whether a particular TCP service is reachable.

For example, to test SMB:

Test-NetConnection 192.168.1.50 -Port 445

This can help determine whether SMB connectivity is available between two systems.


🖥️ 13. Useful Windows Technician Shortcuts

Shortcut

Use

Win + R

Open Run and launch diagnostic tools

Win + X

Quick access to Terminal, Device Manager and other tools

Ctrl + Shift + Esc

Open Task Manager

Win + I

Open Settings

Win + A

Open Quick Settings and network controls

Win + K

Open wireless display/audio connections

Win + L

Lock the workstation

Win + V

Open Clipboard History

Win + Shift + S

Capture a screenshot for troubleshooting information


🚨 14. A Simple Windows Network Troubleshooting Sequence

When someone says:

“The Internet isn't working.”

Don't immediately reset the router, change random settings, or reinstall network drivers.

Instead, work through the problem step by step.

The goal is to identify where the connection is failing.


Step A - Check the Physical or Wi-Fi Connection

Start with the basics:

  • Is the Ethernet cable connected?
  • Is the network adapter enabled?
  • Is Wi-Fi connected to the correct network?
  • Does Windows show an active network connection?
  • Are other devices experiencing the same problem?

Use:

ncpa.cpl

This opens Network Connections, where you can check the status of Ethernet and Wi-Fi adapters.


Step B - Check the Computer's IP Configuration

Run:

ipconfig /all

Check whether the computer has:

  • A valid IP address
  • Subnet mask
  • Default gateway
  • DNS server
  • DHCP information

Watch for 169.254.x.x

If the computer has an address such as:

169.254.x.x

it may not have received an IP address from the DHCP server.

Investigate the network connection, DHCP service, adapter, cable, Wi-Fi or network configuration.


Step C - Ping the Default Gateway

Find the Default Gateway from:

ipconfig /all

Then run:

ping <gateway>

For example:

ping 192.168.1.1

What this tells you

If the gateway responds, the computer can communicate with the local router/network.

If it doesn't respond, investigate:

  • Ethernet cable
  • Wi-Fi connection
  • Network adapter
  • Switch
  • VLAN
  • Local network
  • Gateway/router

Step D - Ping an Internet IP Address

Run:

ping 8.8.8.8

This tests Internet connectivity without depending on DNS name resolution.

Possible results

Gateway works + 8.8.8.8 works

Internet connectivity is probably available.

Gateway works + 8.8.8.8 fails

Investigate the router, ISP connection, routing or firewall.


Step E - Test DNS

Run:

nslookup google.com

This checks whether DNS can resolve the domain name.

If 8.8.8.8 responds to ping but nslookup google.com fails, investigate DNS configuration or the DNS server.


Step F - Test a Domain Name

Run:

ping google.com

This tests both name resolution and network connectivity to the resolved address.

If:

ping 8.8.8.8

works but:

ping google.com

fails, DNS is a likely area to investigate.

Note: A failed ping to a website does not necessarily mean the website is unavailable. Some servers block or ignore ICMP ping requests.


Step G - Trace the Route

Run:

tracert google.com

tracert shows the network hops between your computer and the destination.

It can help identify where traffic appears to stop or where routing problems may be occurring.


🔄 Quick Network Diagnostic Flow

When troubleshooting a basic Internet connection, work through the following sequence:

Physical / Wi-Fi connection

         

     ipconfig /all

         

     Ping gateway

         

     ping 8.8.8.8

         

     nslookup google.com

         

     ping google.com

         

     tracert google.com

The purpose is to move from local connectivity → IP configuration → gateway → Internet → DNS → destination → routing.


📊 What the Results Can Tell You

Test

If it fails

Possible area to investigate

Physical/Wi-Fi

No connection

Cable, Wi-Fi, adapter, switch

ipconfig /all

No valid IP/gateway

DHCP, adapter, network configuration

ping

Gateway unreachable

Local network, cable, Wi-Fi, router

ping 8.8.8.8

Internet IP unreachable

Router, ISP, routing, firewall

nslookup google.com

DNS resolution fails

DNS server/configuration

ping google.com

Domain test fails

DNS or ICMP filtering

tracert google.com

Route appears to stop

Routing or upstream connectivity


Technician Cheat Sheet

Useful Windows Network Commands for Network Technicians

Command

What it does

ipconfig /all

Shows detailed network configuration, including IP address, subnet mask, default gateway, DNS servers, MAC address, DHCP status and adapter information.

ipconfig /release

Releases the computer's current DHCP-assigned IP address. Useful when troubleshooting IP address or DHCP problems.

ipconfig /renew

Requests a new IP address from the DHCP server.

ipconfig /flushdns

Clears the local DNS cache. Useful when a website or server name is resolving to an old or incorrect IP address.

ping

Tests whether another device or server is reachable and measures response time.

tracert

Shows the network path between your computer and a destination.

pathping

Combines ping and tracert functionality and provides packet-loss and latency information for network hops.

nslookup

Queries DNS servers to troubleshoot domain-name resolution.

netstat -ano

Displays active connections, listening ports and associated process IDs.

arp -a

Displays IP-to-MAC address mappings stored in the ARP cache.

route print

Displays the Windows routing table and helps troubleshoot routing and gateway problems.

netsh wlan show interfaces

Shows detailed information about the current Wi-Fi connection.

netsh wlan show wlanreport

Creates a detailed Windows Wi-Fi report for investigating wireless connection problems.

Test-NetConnection

Tests network connectivity and can test specific TCP ports.

Get-NetAdapter

Displays network adapter information and status through PowerShell.


🛠️ Five Most Useful Windows Run Commands for Technicians

Run command

What it does

ncpa.cpl

Opens Network Connections for checking and managing Ethernet and Wi-Fi adapters.

devmgmt.msc

Opens Device Manager for checking hardware and network adapter drivers.

wf.msc

Opens Windows Defender Firewall with Advanced Security for managing firewall rules and profiles.

eventvwr.msc

Opens Event Viewer for investigating system, application, hardware and network-related events.

services.msc

Opens the Services console for starting, stopping, restarting and configuring Windows services.


💡 Final Technician Tip

When troubleshooting a Windows network problem, don't start by changing everything.

Start with the simplest question:

Where does communication stop?

Check the computer's configuration, then the local gateway, then Internet connectivity, then DNS, and finally the destination and route.

This approach makes troubleshooting faster, more systematic, and easier to document.

Keep this page bookmarked as a quick reference whenever you need to diagnose a Windows 11 network problem.

 

Share: WhatsApp Facebook Twitter

Related Articles

Windows 11 Keyboard Shortcuts & Useful Run Commands

Windows 11 Keyboard Shortcuts & Useful Run Commands

Sep 10, 2026
Restart the Print Spooler through Command Prompt and Windows Services

Restart the Print Spooler through Command Prompt and Windows Services

Sep 10, 2026
Essential Windows Batch Commands for IT Administrators

Essential Windows Batch Commands for IT Administrators

Jul 16, 2026