#* FileName: Get-RSS.ps1 #*============================================================================= #* FUNCTION LISTINGS #*============================================================================= #* Function: Get-RSS #* Created: [DATE_MDY] #* Author: Steven Murawski #* Arguments: URL of RSS Feed #*============================================================================= #* Purpose: Downloads and prints the title and link of entries in an RSS #* Feed #* #*============================================================================= function Get-RSS ($url = 'http://podcast.acoupleofadmins.com/media/ACOAPRSS.xml') { $xml = [xml](new-object net.webclient).downloadstring($url) $xml.rss.channel.item | Select-Object title, link }