Skip to content

Instantly share code, notes, and snippets.

@zhangyuan
Created July 3, 2014 15:56
Show Gist options
  • Select an option

  • Save zhangyuan/621798183e95cb64c4bc to your computer and use it in GitHub Desktop.

Select an option

Save zhangyuan/621798183e95cb64c4bc to your computer and use it in GitHub Desktop.
Send Delete Request with PowerShell 2.x
Function SendDeleteRequest($url) {
try {
$request = [Sytem.Net.WebRequest]::Create("$url")
$request.Method = "DELETE"
$request.GetResponse()
}
catch
{
Write-Host "Fail to send DELETE request to $url"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment