Network Configuration on Windows

> net user
> net share
> netsh wlan show
> ipconfig | clip	# Command copies the output to the Windows clipboard. 

Release and Renew IP Address

> ipconfig /release && ipconifg /renew 	# To release and renew your IP address on a Windows.
> ipconfig /registerdns			# To manually update a computer's DNS records and resolver cache.

Refresh hosts file without rebooting

edit C:\Windows\System32\drivers\etc\hosts

> ipconfig /displaydns	# The contents of the DNS client resolver cache, local Hosts files, and resource records for name lookups.
> ipconfig /flushdns	# Flushes and resets the contents of the DNS client resolver cache
> dnscmd /clearcache	# CClears the DNS cache memory of resource records on a specified DNS server. 
> tracert www.google.com

Find the WiFi Password

> netsh wlan show profile
> netsh wlan show profile name="WiFi name" key=clear
> ipconfig /release
> ipconfig /renew
> ipconfig /all
> tracert dillonxu.ddns.net
> tracert 10.20.30.40
comments powered by Disqus