How to use HTTP GET in PowerShell? [duplicate]
Possible Duplicate: Get $webclient.downloadstring to write to text file in Powershell Powershell http post with .cer for auth I have an SMS system that provide me the ability to send SMS from an HTTP GET request: http://smsserver/SNSManager/msgSend.jsp?uid&to=smartsms:*+001XXXXXX&msg="text of the message"&encoding=windows-1255 I want to enter the details to the text from PowerShell and just surf to this URL. How can I do it? Keith Hill In PowerShell v3, have a look at the Invoke-WebRequest and Invoke-RestMethod e.g.: $msg = Read-Host -Prompt "Enter message" $encmsg = [System.Web.HttpUtility]: