Scripts/Install-BcAddin-AdditionalServer.ps1

# Specify the name of the Business Central Server Instance to use for the installation.
$ServerInstance = ''   # E.g. 'BC16' or 'BC15'

# Import PowerShell module
Join-Path $PSScriptRoot '\PowerShell\FpsALDeployment\FpsBcDeployment.psd1' | Import-Module -Global -DisableNameChecking -Force 

Publish-BcAddin `
    -Path (Get-ChildItem (Join-Path $PSScriptRoot 'DotNet')).FullName `
    -ServerInstance $ServerInstance