Update Service

Last updated: 2025-03-20

Table of contents

  1. Update Service
    1. Used Variables
    2. Modules Management
      1. Importing BC cmdlets from a Update Service instance

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

From: go-current-examples/LSCentral/Scripts/Import-BcPsModules.ps1 at master · lsretail/go-current-examples