Apps/Get-TableauDesktop.ps1
$URL64 = (Resolve-Uri -Uri 'https://www.tableau.com/downloads/desktop/pc64').Uri if ($URL64 -match '((?:\d+-)+\d+)\.exe$') { [PSCustomObject]@{ Version = $matches[1].Replace('-','.') Architecture = 'x64' URI = $URL64 } } |