Skip to content

Instantly share code, notes, and snippets.

@pjperez
Created December 5, 2014 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pjperez/d1af6c697a6997d07ed3 to your computer and use it in GitHub Desktop.
Save pjperez/d1af6c697a6997d07ed3 to your computer and use it in GitHub Desktop.
PowerShell Whois Client
Param(
[string]$request
)
$uri = "http://whois.datasnitch.co.uk/$request"
$r = Invoke-WebRequest -Uri $uri
$r.Content
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment