Posted On October 8, 2020

MAC: Setting Google DNS to Bypass ISP Slower Name Resolution

kimconnect 0 comments
blog.KimConnect.com >> Windows >> MAC: Setting Google DNS to Bypass ISP Slower Name Resolution

Open System Preferences > Network > DNS > click + (plus sign) under DNS Servers > input 8.8.8.8 > set that as top item > click OK

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Quick and Dirty Script to Watch and Start / Restart Windows Service

// powershell.exe// -ExecutionPolicy Bypass c:\scripts\serviceCheck.ps1$serviceName = '[input-service-name-here]'$arrService = Get-Service -Name $serviceNamewhile ($arrService.Status -ne 'Running'){ Start-Service…

PowerShell: How To Configure Static IP Address

$nicName='NIC1' $ipaddress='192.168.0.222' $cidrPrefix=24 $defaultGateway='192.168.0.1' $dnsServers=@('8.8.8.8','4.4.2.2') $disableIpv6=$true function setNic($nicName,$ipAddress,$cidrPrefix,$defaultGateway,$dnsServers,$disableIpv6=$true ){ $ifIndex=(get-netadapter|?{$_.Name -eq $nicName}).ifIndex New-NetIPAddress -InterfaceIndex $ifIndex…

Maximum Ram for Windows 32 bit

Enable 4GB RAM Usage for Windows XP Right-click "My Computer" >> Properties >> Advanced >>…