Summary : Use Windows PowerShell to help you stay up-to-date with the 2013 Scripting Games. How can I use Windows PowerShell to obtain an RSS feed of all 2013 Scripting Games content from the Scripting Guys? Use the Invoke-RestMethod cmdlet in Windows...
Summary : Microsoft Scripting Guy, Ed Wilson, shows how to use a text file when making a SOAP request via Windows PowerShell 3.0. Microsoft Scripting Guy, Ed Wilson, is here. Today, I spent the day playing around with Windows PowerShell 3.0. It is a lot...
Summary : Use Windows PowerShell to cast an RSS feed to an XML document. How can you navigate an RSS feed as if it was an XML document by using Windows PowerShell? When retrieving an RSS feed, ensure that you cast it to an XML document by using the [xml...
Summary : Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to explore an RSS feed from the Hey, Scripting Guy! Blog. Microsoft Scripting Guy, Ed Wilson, is here. It is just a few days until I speak at the Central Ohio Windows PowerShell...
Summary : Learn how to use Windows PowerShell regular expressions to parse an RSS feed. Hey, Scripting Guy! How can I find patterns in text with regular expressions when I am unsure of where line breaks will occur in the text I am reading? —TT Hello...
A lot of data these days is wrapped as XML, and up until now, handling XML data wasn't a piece of cake. PowerShell makes handling XML a lot easier. This is the first part of a little series about XML and PowerShell. We start with accessing XML documents and reading data. Getting XML Data Let's...
# Write-RSSStream.ps1 # This sample shows how to use the XMLTextWriter # Based on Halr's content, but extended. # Thomas Lee - tfl@psp.co.uk # Define output $path = " c:\foo\file.xml " # Create encoding, and create xml writer $encoding = [System.Text.Encoding] :: UTF8 $writer = New - Object...