Welcome, Jane! Hereβs a quick starter guide.
1. View IP Configuration
ipconfig /all
This shows every adapter's IP address, subnet mask, default gateway, and DNS servers.
2. Change IP Settings (GUI)
- Open Settings > Network & Internet.
- Select your adapter (WiβFi/Ethernet) and click Properties.
- Toggle IP assignment to Manual and enter your static IP info.
3. PowerShell Cmdlets
# Get adapter info
Get-NetAdapter
# View IP address
Get-NetIPConfiguration
# Set a static IPv4 address
New-NetIPAddress -InterfaceAlias "Ethernet" -IPAddress 192.168.1.100 -PrefixLength 24 -DefaultGateway 192.168.1.1
# Set DNS servers
Set-DnsClientServerAddress -InterfaceAlias "Ethernet" -ServerAddresses ("8.8.8.8","8.8.4.4")
4. DNS & DHCP
Windows acts as both a client and server for these services. For a client, the DNS servers assigned by the router are used automatically. To view the DNS cache:
ipconfig /displaydns
5. Troubleshooting Commands
ping <host>
β test connectivity.
tracert <host>
β view route hops.
nslookup <domain>
β query DNS records.
netsh int ip reset
β reset TCP/IP stack.
Feel free to ask followβup questions or share your own scripts!