Created
July 3, 2014 15:56
-
-
Save zhangyuan/621798183e95cb64c4bc to your computer and use it in GitHub Desktop.
Send Delete Request with PowerShell 2.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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