You have a server named Server 1 thai runs Windows Server 2016. Server 1 has Internet
connectivity. You have a Nano Server image. You need to download and save a Nano Server
package in the Nano Server image. The package is NOT included in the Windows Server 2016
installation media. Which two cmdlets should you run on Server1.
A.
Set-PaekageSource
B.
Install-PackageProvider
C.
Add-AppxProvisioncdPackage
D.
Save-NanoServer
E.
Package Add WindowsPackage
The answer is B.
You can find and install Nano Server packages from the online package repository by using the NanoServerPackage provider of the PackageManagement PowerShell module. To install this provider, use these cmdlets:
Install-PackageProvider NanoServerPackage
Import-PackageProvider NanoServerPackage
https://docs.microsoft.com/en-us/windows-server/get-started/deploy-nano-server
Answer is B,E
Ref:(Tubbysnowman) from 70-740 (v.1)
B. Install-Package provider – This allows you to add an external package provider, IE not part of the installation media
E. Add-WindowsPackage – This allows you to add a package to an image.
Save-NanoServerPackage is wrong because it allows you to download the package without installing it, but it doesn’t insert it into an Image.