Trying to run this script
# Update helper
Install-Module BcContainerHelper -Force
Update-Module BcContainerHelper
# Cleanup (safe to re-run)
try { Remove-BcContainer -containerName bcserv } catch { }
Flush-ContainerHelperCache -cache bcartifacts
# Credentials
$user = 'admin'
$password = '' # Change if needed
$securePassword = ConvertTo-SecureString -String $password -AsPlainText -Force
$credential = New-Object pscredential $user, $securePassword
# 4) Get the latest Business Central artifact (on-prem v27 W1)
# Change -version '27' to '24' or '26' if you need older versions
$artifactUrl = Get-BcArtifactUrl -type onprem -version '27' -country w1 -select Latest
# 5) Create the container
New-BCContainer -accept_eula `
-updateHosts `
-artifactUrl $artifactUrl `
-containerName 'bcserv' `
-credential $credential `
-auth UserPassword `
-shortcuts StartMenu `
-memoryLimit 8G `
-alwaysPull `
-useBestContainerOS `
-isolation Process
I get this error
Creating container bcserv from image mcr.microsoft.com/businesscentral:ltsc2025
f28a753b5f97dedd875006662dbb7fa5dfd5da2ad562dd30520b2b584120a40f
Waiting for container bcserv to be ready
Using artifactUrl https://bcartifacts-exdbf9fwegejdqak.b02.azurefd.net/onprem/27.2.42879.0/w1
Cannot find path 'C:\dl\onprem\27.2.42879.0\platform\ServiceTier\program files\Microsoft Dynamics NAV' because it does not ex
ist.
at Get-NavDvdServiceFolder, C:\Run\GetDvdArtifactPaths.ps1: line 19
at <ScriptBlock>, C:\Run\start.ps1: line 161
at <ScriptBlock>, <No file>: line 1Error
Using artifactUrl https://bcartifacts-exdbf9fwegejdqak.b02.azurefd.net/onprem/27.2.42879.0/w1
Cannot find path 'C:\dl\onprem\27.2.42879.0\platform\ServiceTier\program files\Microsoft Dynamics NAV' because it does not ex
ist.
at Get-NavDvdServiceFolder, C:\Run\GetDvdArtifactPaths.ps1: line 19
at <ScriptBlock>, C:\Run\start.ps1: line 161
at <ScriptBlock>, <No file>: line 1
New-BCContainer Telemetry Correlation Id: 918769c5-97b7-49f2-b267-c863efd976e8
Initialization of container bcserv failed
At C:\Program Files\WindowsPowerShell\Modules\BcContainerHelper\6.1.10\ContainerHandling\Wait-NavContainerReady.ps1:42
char:17
+ ... throw "Initialization of container $containerName failed" ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (Initialization ...r bcserv failed:String) [], RuntimeException
+ FullyQualifiedErrorId : Initialization of container bcserv failed