Dynamics 365 Business Central 2021 Wave2 preview is available
Microsoft Dynamics 365 Business Central 2021 Wave 2 preview
The preview of Business Central 2021 Wave 2 (release 19) was released and made available today; you can test it both Online and on Docker.
It is only possible to create Sandbox preview and non-production environments; the preview environments are for demonstration purposes only and to have their functionality tested, they are removed at most thirty days after the official release of the product.
Business Central Online Sandbox Environment
E: US Localization
Business Central On-prem and Sandbox Artifacts Docker Distributions
You can use ready-made docker artifacts (see previous post); in this case it is possible to directly use the repository dedicated to product previews.
Example for US localization
#GetBCPreviewArtifact
$BCPublicPreviewArtifactUrl = Get-BCArtifactUrl -storageAccount BcPublicPreview –country us –type Sandbox -select Latest #GET LAST US Sandbox Preview
https://BcPublicPreview.azureedge.net/sandbox/19.0.29539.0/us
Powershell Script
#Install\Update Last Container Helper Module
install-module BCContainerHelper -force
#GetBCPreviewArtifact
$BCPublicPreviewArtifactUrl = Get-BCArtifactUrl -storageAccount BcPublicPreview –country us –type Sandbox -select Latest #GET LAST US Sandbox Preview
#PARAMETERS
$containerName = ‘bc19uspreview’ #LOWERCASE NAM
$password = ‘$Pass@ord!’
$securePassword = ConvertTo-SecureString -String $password -AsPlainText -Force
$credential = New-Object pscredential ‘admin’, $securePassword
$auth = ‘UserPassword’
# *** CREATE BC19 US PREVIEW CONTAINER FROM PREVIEW IMAGE
New-BcContainer `
-accept_eula `
-useSSL `
-containerName $containerName `
-credential $credential `
-auth $auth `
-artifactUrl $BCPublicPreviewArtifactUrl `
-imageName $containerName `
-multitenant:$false `
-assignPremiumPlan `
-dns ‘8.8.8.8’ `
-memoryLimit 8G `
-updateHosts