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
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