Windows ipconfig /flushdns Macintosh OS X sudo dscacheutil -flushcache sudo killall -HUP mDNSResponder Linux (depend on distribution) /etc/rc.d/init.d/nscd restart /etc/init.d/nscd restart /etc/init.d/dnsmasq restart /etc/init.d/named restart
Windows
Using grep and kill on Windows!
If you are heavy Linux user, and you love “grep” command, and you need use this on Windows command the “findstr” command is right for you. For example we want to search what processes are actually run in Windows, and…
How set NTP fot Windows 2008
To point Windows 2008 manually to NTP servers: 1. Click Menu Start and open Command Prompt 2. Paste below commands using terminal one by one: C:\>net stop w32time C:\>w32tm /config /syncfromflags:manual /manualpeerlist:”0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org” C:\>w32tm /config /reliable:yes C:\>net start w32time…