Remote Desktop Manager (Devolutions)

Hi, there

The dynamic version for Remote Desktop Manager stopped working for a while. They now have a direct link for the MSI, can someone update it?

Thank you for your download! - Devolutions

Can we get it updated to this please:

$DownloadPageUrl = 'https://devolutions.net/remote-desktop-manager/download/thank-you/?platform=RDMmsi&edition=free&os=windows'
$Response = Invoke-WebRequest -UseBasicParsing $DownloadPageUrl

if ($Response.Content -match 'https://cdn\.devolutions\.net/download/Setup\.RemoteDesktopManager\.\d+\.\d+\.\d+\.\d+\.msi') {
    $DownloadLink = $matches[0]

    if ($DownloadLink -match '(\d+\.\d+\.\d+\.\d+)') {
        $Version = $matches[1]
        $ResponseObject = New-Object PSObject -Property @{
            Versions = @(
                New-DynamicVersion -Uri $DownloadLink -Version $Version
            )
        }
        return $ResponseObject
    } else {
        Write-Output "No version found in the download link."
    }
} else {
    Write-Output "No MSI link found in the page content."
}