Start a Conversation

Unsolved

This post is more than 5 years old

607

December 3rd, 2014 10:00

some posh example to launch my advent calendar pages :-)

want to run my calendar from powershell ?

$Url = "https://community.emc.com/blogs/bottk/feeds/posts"

$blog = [xml](new-object System.Net.WebClient).DownloadString($Url)

$blog.rss.channel.item |  where {$_.title -match "geekvent" -and $_.title -Match "door"} | Select-Object link  | foreach {$ie = new-object -com "InternetExplorer.Application";$ie.Navigate($_.link); $ie.Visible}

No Responses!
No Events found!

Top