Giter Site home page Giter Site logo

Comments (3)

SpecterShell avatar SpecterShell commented on September 26, 2024 1

VMware Horizon Client is available on Omnissa.

https://customerconnect.omnissa.com/downloads/info/slug/desktop_end_user_computing/vmware_horizon_clients/horizon_8

from evergreen.

aaronparker avatar aaronparker commented on September 26, 2024

I'll be removing these applications from Evergreen for the time being. It's likely the API used to find downloads is not going to be available on the Broadcom site and changes at Omnissa are still on-going

from evergreen.

DanGough avatar DanGough commented on September 26, 2024

I've reversed the auto update API call, but the downloads are in .tar format and they are cut down in that there are no VMware Tools ISOs included.

function Decompress-GZip($Path, $Destination) {
    $inStream = New-Object System.IO.FileStream $Path, ([IO.FileMode]::Open), ([IO.FileAccess]::Read), ([IO.FileShare]::Read)
    $gzipStream = New-Object System.IO.Compression.GZipStream $inStream, ([IO.Compression.CompressionMode]::Decompress)
    $outStream = New-Object System.IO.FileStream $Destination, ([IO.FileMode]::Create), ([IO.FileAccess]::Write), ([IO.FileShare]::None)
    $buffer = New-Object byte[](1024)
    while(($read = $gzipStream.Read($buffer, 0, 1024)) -gt 0) {
        $outStream.Write($buffer, 0, $read)
    }
    $gzipStream.Close()
    $outStream.Close()
    $inStream.Close()
}

$TempPath = Join-Path $env:TEMP (New-Guid).Guid
New-Item -Path $TempPath -ItemType Directory -Force | Out-Null

$Products = @(
    @{
        ProductName = 'VMware Workstation Pro'
        URL = 'https://softwareupdate.vmware.com/cds/vmw-desktop/ws-windows.xml'
        MajorVersion = 17
    }
    @{
        ProductName = 'VMware Workstation Player'
        URL = 'https://softwareupdate.vmware.com/cds/vmw-desktop/player-windows.xml'
        MajorVersion = 17
    }
    @{
        ProductName = 'VMware Remote Console'
        URL = 'https://softwareupdate.vmware.com/cds/vmw-desktop/vmrc-windows.xml'
        #MajorVersion = 12
    }
)

foreach ($Product in $Products) {
    try {
        $XML = Invoke-RestMethod -Uri $Product.URL -DisableKeepAlive
    }
    catch {
        Write-Error "Failed to download $($Product.URL): $_"
        continue
    }

    $MajorVersions = ($XML.metaList.metadata.url | Select-String -Pattern '\d+').Matches.Groups.Value | Sort-Object -Unique
    if ($Product.MajorVersion) {
        $MajorVersions = $MajorVersions | Where-Object {$_ -eq $Product.MajorVersion}
    }

    foreach ($MajorVersion in $MajorVersions) {
        try {
            $Version = (($XML.metaList.metadata.url | Select-String -Pattern "$MajorVersion(?:\.\d+)+").Matches.Groups.Value | ForEach-Object {[version]$_} | Sort-Object -Descending | Select-Object -First 1).ToString()
            $MetadataURL = 'https://softwareupdate.vmware.com/cds/vmw-desktop/' + ($XML.metaList.metadata.url | Where-Object {$_ -match "/$Version/(?!.*packages)"})
            $Download = Invoke-Download -Uri $MetadataURL -Destination $TempPath -PassThru
            $MetadataPath = $Download.FullName -Replace '\.gz$'
            Decompress-GZip -Path $Download.FullName -Destination $MetadataPath
            $MetadataXML = [xml](Get-Content -Path $MetadataPath)
    
            $URL = (Split-Path $MetadataURL -Parent) + $MetadataXML.metadataResponse.bulletin.componentList.component.relativePath.'#text'
    
            [PSCustomObject]@{
                Name = $Product.ProductName
                MajorVersion = $MajorVersion
                Version = $Version
                URI = $URL
            }
        }
        catch {
            Write-Error "Error: $_"
            continue
        }
    }
}

Remove-Item -Path $TempPath -Recurse -Force

(Invoke-Download is from my PsDownload, so install that or change the code to run the above)

from evergreen.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.