How to get container for BC16.7

markcle
markcle Member Posts: 65
Hi All

We are on prem with BC2020 Wave 1 and CU's installed (Update 16.7 for Microsoft Dynamics 365 Business Central 2020 Release Wave 1 (Application Build 16.7.18411, Platform Build 16.0.18359))

Help says we are on "Version: NA Business Central 16.7 (Platform 16.0.18359.0 + Application 16.7.18411.0)"

I want to download a container that matches for dev

From Freddy's blog (https://freddysblog.com/2020/06/25/working-with-artifacts/)

it says "With Business Central, we do not use CU numbers, we use version numbers like 14.7, 15.4 and 16.2 and with this function you can easily find the versions available with a major, minor version."

Get-BCArtifactUrl -country us -version 16 -select Latest

gives me 16.5.15897.22057

How do I get 16.7 artifacts?

Thanks

Mark

Best Answer

  • SanderDk
    SanderDk Member Posts: 507
    Answer ✓
    You need two things:
    1. Type OnPrem
    2. US is not recognized


    For W1:
    Get-BCArtifactUrl -version 16.7.18411.0 -type OnPrem

    'US' is used on 17 and newere, previous use NA or what localizationen you will need
    For help, do not use PM, use forum instead, perhaps other people have the same question, or better answers.

Answers

  • SanderDk
    SanderDk Member Posts: 507
    Answer ✓
    You need two things:
    1. Type OnPrem
    2. US is not recognized


    For W1:
    Get-BCArtifactUrl -version 16.7.18411.0 -type OnPrem

    'US' is used on 17 and newere, previous use NA or what localizationen you will need
    For help, do not use PM, use forum instead, perhaps other people have the same question, or better answers.
  • markcle
    markcle Member Posts: 65
    thanks