Export/Get-BusinessCentralDownloadUrl.ps1

function Global:Get-BusinessCentralDownloadUrl{
    [CmdletBinding()]
    <#
    .SYNOPSIS
        Returns the URL for the download of the Business Central DVD
    .DESCRIPTION
        ...
    #>

    param(
        [Parameter(Mandatory = $false, Position = 3)]
        [string]
        $Version,
        [Parameter(Mandatory = $false, Position = 4)]
        [string]
        $CumulativeUpdate,
        [Parameter(Mandatory = $false, Position = 5)]
        [string]
        $Language
    )
    process {
        # TODO: Placeholder
        $url = 'https://download.microsoft.com/download/5/6/6/566B8516-4B4E-4DBE-BCDC-40B93F716C27/Dynamics.365.BC.Spring2019.29537.W1.DVD.zip'
        $url
    }
}