Apps/Get-MicrosoftVisualStudio.ps1
Function Get-MicrosoftVisualStudio { <# .SYNOPSIS Returns the current version of Microsoft Visual Studio and the download URL for Microsoft Visual Studio boot strapper. .NOTES Site: https://stealthpuppy.com Author: Aaron Parker Twitter: @stealthpuppy #> [OutputType([System.Management.Automation.PSObject])] [CmdletBinding(SupportsShouldProcess = $False)] param ( [Parameter(Mandatory = $False, Position = 0)] [ValidateNotNull()] [System.Management.Automation.PSObject] $res = (Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1]), [Parameter(Mandatory = $False, Position = 1)] [ValidateNotNull()] [System.String] $Filter ) # Resolve the update feed from the initial URI $ResolvedUrl = (Resolve-SystemNetWebRequest -Uri $res.Get.Update.Uri).ResponseUri.AbsoluteUri If ($ResolvedUrl) { try { # Get details from the update feed $updateFeed = Invoke-RestMethodWrapper -Uri $ResolvedUrl } catch { Throw "$($MyInvocation.MyCommand): Failed to resolve update feed: $ResolvedUrl." } finally { # Build the output object/s $items = $updateFeed.channelItems | Where-Object { $_.id -eq $res.Get.Update.MatchFilter } ForEach ($item in $items) { $PSObject = [PSCustomObject] @{ Version = $updateFeed.info.buildVersion Sha256 = $item.payloads[0].Sha256 Size = $item.payloads[0].size URI = $item.payloads[0].url } Write-Output -InputObject $PSObject } } } } |