Skip to content

Instantly share code, notes, and snippets.

@kayasax
Created May 21, 2015 06:30
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 kayasax/b7c41a919bc140f2cdf9 to your computer and use it in GitHub Desktop.
Save kayasax/b7c41a919bc140f2cdf9 to your computer and use it in GitHub Desktop.
équivalent de invoke-webrequest pour powershell V2.
$string="http://server/app/index.php?var=val1&var2={0}" -f $event.providerName
(New-Object System.Net.WebClient).DownloadString("$string");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment