Here’s a small cmdlet I wrote today to pull the Office 365 roadmap information with PowerShell.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
Function Get-Office365Roadmap { <# .Synopsis Get-Office365Roadmap .DESCRIPTION Get-Office365Roadmap retrieves Office 365 information .EXAMPLE Get-Office365Roadmap Retrieves the complete Office 365 roadmap information .EXAMPLE Get-Office365Roadmap -Stats Count Name ----- ---- 203 In development 191 Launched 17 Previously released 61 Rolling out 3 Cancelled .PARAMETER Stats Shows the total number of features grouped by deployment status #> [CmdletBinding()] Param( [switch]$Stats ) Begin{} Process{ $roadmapfeatures = Invoke-WebRequest -Uri https://roadmap-api.azurewebsites.net/api/features $features = $roadmapfeatures.Content $rm = ($features) -join "`n" | ConvertFrom-Json } End{ If ($Stats -eq $true) { $rm | Group-Object Status | Select-Object Count,Name } Else { $rm } } } |
Hey, this roadmap URI no longer works, have you heard anything about why? Tried looking around for it, but haven’t found out any info on why.
URI: https://roadmap-api.azurewebsites.net/api/features