December 2019
Beginner to intermediate
770 pages
16h 14m
English
Here, we need to create a Dynamics 365 Business Central development container with our AL solution. This container has no support for C/AL anymore. The script to create this container is as follows:
# Environment Settings$imageName = "mcr.microsoft.com/businesscentral/onprem-ltsc2019"$auth = "NavUserPassword"$credential = New-Object pscredential 'admin', (ConvertTo-SecureString -String 'P@ssword1' -AsPlainText -Force)$licenseFile = "C:\temp\license.flf" # Create Business Central containerNew-NavContainer -accept_eula ` -imageName $imageName ` -containerName "d365bcdev" ` -licenseFile $licenseFile ` -auth $auth ` -Credential $Credential ` -updateHosts
You now have a working Dynamics 365 Business Central container without ...
Read now
Unlock full access