You perform a Server Core Installation of Windows Server 2012 on a server named Server1.
You need to add a graphical user interface (GUI) toServer1.
Which tool should you use?
A.
The setup.exe command
B.
The dism.exe command
C.
The imagex.exe command
D.
The Add-WindowsPackagecmdlet
Explanation:
The DISM command is called by the Add-WindowsFeature command. Here is the systax for DISM:
Dism /online /enable-feature /featurename:ServerCore-FullServer /featurename:Server- Gui-Shell /
featurename:Server-Gui-Mgmt
I think options are not correct.
You do this by using:
Add-WindowsFeaturecmdlet
Nope, add-windowsFeature was for win srv 2008
you can still install with powershell, but dism works as well.
That is correct. The add-WindowsFeature has been replaced in server 2012 by install-WindowsFeature.
https://technet.microsoft.com/en-us/library/jj205467(v=wps.630).aspx
So it’s dism.exe
Answer: B
B
B
B
B
https://technet.microsoft.com/en-us/library/hh824822.aspx