Showing tag results for PowerShell 3

Sep 23, 2012
Post comments count0
Post likes count0

Weekend Scripter: Use a File When Making a SOAP Request via PowerShell

Doctor Scripto

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 of fun. One of the things I enjoy doing is working with web services. Windows PowerShell&nbs...

Scripting Guy!Windows PowerShellWeekend Scripter
Sep 22, 2012
Post comments count0
Post likes count0

PowerTip: Cast an RSS Feed into XML with PowerShell

Doctor Scripto

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] type accelerator:            ...

Scripting Guy!Windows PowerShellPowerTip
Sep 22, 2012
Post comments count0
Post likes count0

Weekend Scripter: Use PowerShell to Explore an RSS Feed from a Blog

Doctor Scripto

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 User Group. The Scripting Wife and I will be there on October 2, 2012. For registration in...

Scripting Guy!Windows PowerShellWeekend Scripter
Sep 21, 2012
Post comments count0
Post likes count0

Use PowerShell to Download Web Page Links from a Blog

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, shows how to use Windows PowerShell 3.0 to easily download web page links from a blog. Microsoft Scripting Guy, Ed Wilson, is here. Today the weather outside is beautiful here in Charlotte, North Carolina in the United States. I opened the windows around the scripting house, and from my office, I am...

Scripting Guy!Windows PowerShellPowerShell 3
Sep 20, 2012
Post comments count0
Post likes count0

PowerTip: Redirect PowerShell Warning Messages to a Text File

Doctor Scripto

Summary: Use the warning redirection operator to redirect Windows PowerShell warning messages to a text file.  How can you prevent warning messages from displaying to the Windows PowerShell host, but instead capture them in a text file?  Use the warning message redirection operator: $WarningPreference = "continue"  Write-Warning "t...

Scripting Guy!Windows PowerShellPowerTip