Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Microsoft Exam 70-743 Topic 11 Question 2 Discussion

Actual exam question for Microsoft's 70-743 exam
Question #: 2
Topic #: 11
[All 70-743 Questions]

You have a server named Server1 that runs Windows Server 2016.

You plan to deploy Internet Information Services (IIS) in a Windows container.

You need to prepare Server1 for the planned deployment.

Which three actions should you perform? Each correct answer presents part of the solution.

Show Suggested Answer Hide Answer
Suggested Answer: A, B, C

Step 1 (A): The container feature needs to be enabled before working with Windows containers. To do so run the following command in an elevated PowerShell session.

Enable-WindowsOptionalFeature -Online -FeatureName containers --All

Step 2 (B): Docker is required in order to work with Windows containers.

Note: First install the OneGet PowerShell module.

Install-Module -Name DockerMsftProvider -Repository PSGallery -Force

Next you use OneGet to install the latest version of Docker.

Install-Package -Name docker -ProviderName DockerMsftProvider

Step 3 (C): Install Base Container Images

Windows containers are deployed from templates or images. Before a container can be deployed, a container base OS image needs to be downloaded. The following commands will download the Nano Server base image.

Pull the Nano Server base image.

docker pull microsoft/nanoserver


Comments

Currently there are no comments in this discussion, be the first to comment!


Save Cancel