Hello, This is a quick script to help you in your daily work, in fact a script to list entries of you hosts file 🙂 Function Get-HostFileEntry { $HostOutput = @() $HostFile = $env:windir + “\System32\drivers\etc\hosts” [regex]$r=”\S” Get-Content $HostFile | ? { (($r.Match($_)).value -ne “#”) -and ($_ -notmatch “^\s+$”) -and ($_.Length -gt 0) } |…