I successfully created a dockercontainer for NAV17 incl. CSIDE.
$containerName = 'nav17'
$securePassword = ConvertTo-SecureString -String $password -AsPlainText -Force
$auth = 'Windows'
$artifactUrl = Get-NavArtifactUrl -nav '2017' -country 'de'
$licenseFile = 'C:\Users\ABCDEF\Downloads\NavisionLicense.flf'
New-BcContainer `
-accept_eula `
-containerName $containerName `
-auth $auth `
-artifactUrl $artifactUrl `
-licenseFile $licenseFile `
-memoryLimit 8G `
-includeCSIDE `
-updateHosts
When I want to start CSIDE I get the following error
Whats going wrong?