Skip to content

Instantly share code, notes, and snippets.

View nelsonlaquet's full-sized avatar

Nelson LaQuet nelsonlaquet

  • Amazon Web Services
  • Palo Alto, CA
View GitHub Profile
@markembling
markembling / hosts.ps1
Created August 24, 2009 13:38
Powershell script for adding/removing/viewing entries to the hosts file.
#
# Powershell script for adding/removing/showing entries to the hosts file.
#
# Known limitations:
# - does not handle entries with comments afterwards ("<ip> <host> # comment")
#
$file = "C:\Windows\System32\drivers\etc\hosts"
function add-host([string]$filename, [string]$ip, [string]$hostname) {