Public/Clear-Arp.ps1
function Clear-Arp { <# .SYNOPSIS -Taylor Lee Modified 05292019 .DESCRIPTION Clears the local arp table .Link Clear-DNSClientCache Get-DNSClientCache Get-NetIPConfiguration Get-NetworkStatistics Get-PublicIP Resolve-DNSName Test-Netconnection #> #Check For Admin Privleges Get-Elevation netsh.exe interface ip delete arpcache } |