Apps/Get-MicrosoftPowerBIDesktop.ps1
$Version = (Invoke-WebRequest 'https://www.microsoft.com/download/details.aspx?id=58494' -UseBasicParsing).Content | Get-Version -Pattern 'Version:\s+</div><p>((?:\d+\.)+\d+)' $URL32,$URL64 = Get-Link -Uri 'https://www.microsoft.com/en-us/download/confirmation.aspx?id=58494' -MatchProperty href -Pattern 'PBIDesktopSetup\.exe$','PBIDesktopSetup_x64\.exe$' New-NevergreenApp -Version $Version -Uri $URL32 -Architecture 'x86' New-NevergreenApp -Version $Version -Uri $URL64 -Architecture 'x64' |