Jun 11, 2025
This lecture covers essential network troubleshooting commands in Windows, explaining how to obtain system information, test connectivity, analyze network paths, and manage user accounts and shared resources.
ipconfig to display a computer's IP address, subnet mask, default gateway, and adapter details.ipconfig /all command provides extended info, including DNS servers, DHCP status, and hostname.netstat to view active network connections, showing protocol, local and foreign addresses, and connection state.netstat -a lists all active and listening ports; netstat -b shows the executable involved (requires administrator privileges).netstat -n to display numerical IP addresses instead of resolving DNS names.ping command checks if a device is reachable on the network by sending ICMP packets.tracert (trace route) displays the path packets take through routers to a destination.nslookup to query DNS servers for IP addresses or domain names and troubleshoot name resolution issues.net view \\<servername> to list shared resources on a server.net use H: \\<servername>\<sharename> maps a network share to a local drive letter.net user <username> /domain displays details about a user, including group memberships and account status.pathping combines features of ping and tracert, first mapping the route and then computing loss and latency statistics for each hop.ipconfig, ping, tracert, netstat, nslookup, net view, net use, net user, and pathping.