Still waiting …
EDIT: We found out this evening that it was suppose to ship tomorrow, but isn’t going to anymore because they heard about a (possible) bug and are delaying release to investigate (and fix it). while($true){ $items = Invoke-Http get http://www.microsoft.com/downloads/Results.aspx {freetext="powershell"; nr=50; sortCriteria="date"} | Receive-Http xml "//*[id=‘results’]/table/tr/td/p/a" | where {$_."#text"} [...]
Using REST API’s from PowerShell with the Dream SDK
Awhile back I wrote a Get-Web script, which I later converted to a compiled Get-Web cmdlet and module (pssnapin) ... adding support for POST forms. At the time, it seemed like GET and POST with some string variables pretty much covered what I’d ever want to do with web pages, however I found a few [...]