Welcome to AspAdvice Sign in | Join | Help

AzamSharp

Some day I will know everything I hope that day never comes

Syndication

Tags

Navigation

Windows PowerShell

Windows PowerShell is a new and a more powerful released by Microsoft. The cool thing about PowerShell is its integration with the rest of the .NET framework. Below is a good example of powershell in which I have retrieved the rss feeds from a url. Here is a link of a very good book about power shell.

Windows PowerShell in Action

by Bruce Payette (Author)

function GetRss($url)

{

$wc = New-Object net.webclient

$xml = [xml](New-Object net.webclient).DownloadString($url)

$xml.rss.channel.item| select-object title,link

}

Reference: Windows PowerShell in Action

Published Tuesday, February 27, 2007 10:13 PM by azamsharp

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# Article Feed » Windows PowerShell @ Wednesday, February 28, 2007 2:24 AM

PingBack from http://www.articlefeed.net/windows-powershell/

Article Feed » Windows PowerShell

Leave a Comment

(required) 
required 
(required) 
Enter the code you see below