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 = 'http://download.microsoft.com/download/A/3/C/A3C02967-C95E-4F5D-A92D-B0596DE98145/CU%2001%20Dynamics%20365%20Business%20Central%20W1.zip'
        $url
    }
}