Update Service
Last updated: 2025-03-20
Table of contents
Used Variables
$InstanceName = “POS” # or POSMaster, for example
Modules Management
Importing BC cmdlets from a Update Service instance
Import-Module (Get-BcModulePath -InstanceName <InstanceName> -Type <Module type>) -Global
- Change InstanceName to match the Update Service instance (not the Business Central Service instance name)
- Module type: Management, Apps
Imports the Business Central Powershell modules from a Business Central installed using Update Service.
Import-Module LsSetupHelper\BusinessCentral\Management
Import-Module (Get-BcModulePath -InstanceName $InstanceName -Type Management) -Global
Import-Module (Get-BcModulePath -InstanceName $InstanceName -Type Apps) -Global