Exam MB-820 All QuestionsBrowse all questions from this exam
Question 8

A company plans to set up a local Business Central Development Docker container.

The environment will be used for testing new project ideas.

You need to ensure that the most recent Business Central artifact URL has been selected.

Which command should you use?

    Correct Answer: A

    To ensure that the most recent Business Central artifact URL is selected for setting up a local Business Central Development Docker container, you should use the command Get-BcArtifactUrl -type sandbox -select Current. The -select Current parameter is crucial as it specifies that the current, or latest, version of the artifact is to be retrieved, ensuring the Docker container is set up with the most up-to-date version for testing new project ideas.

Discussion
AGTrainingOption: A

should be Latest (which is the default) returns the most recent image in the list.

75ed3a2Option: A

To ensure the most recent Business Central artifact URL is selected for setting up a local Business Central Development Docker container, the command to use is Get-BcArtifactUrl-type sandbox-select Current (A). This PowerShell command retrieves the URL for the latest available Business Central artifact for a sandbox environment, ensuring that the Docker container is set up with the most up-to-date version for testing new project ideas. The-select Current parameter is crucial as it specifies that the current, or latest, version of the artifact is to be retrieved, as opposed to selecting a version based on other criteria such as Closest, NextMinor.

xdimidrolxOption: A

The correct answer is A. Get-BcArtifactUrl -type sandbox -select Current. The Microsoft documentation and community resources indicate that the -select Current option is designed to fetch the latest available artifacts. Here is an excerpt from the documentation: powershell Copy code Get-BcArtifactUrl -type sandbox -select Current

danielkace28Option: B

B. Get-BcArtifactUrl -type sandbox -select Closest