Last active
December 15, 2024 06:11
-
-
Save mikefrobbins/8d2e208f6a5729d1cf90a052eaa1d443 to your computer and use it in GitHub Desktop.
Select and open PowerShell podcast episode webpage with PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install the Microsoft.PowerShell.ConsoleGuiTools module | |
Install-Module -Name Microsoft.PowerShell.ConsoleGuiTools | |
# Select and open PowerShell podcast episode webpage with PowerShell | |
Invoke-RestMethod -Uri https://feed.podbean.com/powershellpodcast/feed.xml | | |
Select-Object -Property @{ | |
label='title';expression={$_.title[0]}}, @{ | |
label='date';expression={Get-Date -Date $_.pubDate -Format d}}, | |
duration, | |
link | | |
Out-ConsoleGridView -OutputMode Single | | |
Foreach-Object { | |
Start-Process -FilePath $_.link | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment