You work as an administrator at Contoso.com. The Contoso.com network consists of a single domain
named Contoso.com. All servers on the Contoso.com network have Windows Server 2012 installed.
A server named, ENSUREPASS-SR13, has a Server Core Installation of Windows Server 2012 installed.
You are instructed to convert ENSUREPASS-SR13’s installation to a Server with GUI installation.
You want to use a Windows PowerShell cmdlet that uses Windows Update as a source.
Which of the following actions should you take?
A.
You should consider making use of the Install-WindowsFeature Server-Gui-Mgmt-Infra, ServerGui-Shell – Restart cmdlet.
B.
You should consider making use of the Install-WindowsFeature Server-Gui-Mgmt-Infra, ServerGui-Shell – Restart -Source c:\mountdir\windows\winsxs cmdlet.
C.
You should consider making use of the Uninstall-WindowsFeature Server-Gui-Shell–Remove
cmdlet.
D.
You should consider making use of the Set-ExecutionPolicy cmdlet.
Explanation:
The default installation source is Windows Update (provided that the server is connected to the
internet).
The Full GUI Server Interface provides you with the full GUI of Windows Server 2012 R2.
PowerShell Command: Install-WindowsFeature Server-Gui-Mgmt-Infra, Server-Gui-Shell.
When it’s done, we will need to restart our server by using the Shutdown command:
shutdown -r -t 0
Should be A ?
Answer is B couse you have to use windows Update as a source.
https://garvis.ca/2013/12/24/step-by-step-adding-the-gui-to-windows-server-core/
Answer is B couse you have a source file
https://garvis.ca/2013/12/24/step-by-step-adding-the-gui-to-windows-server-core/
sorry but when examining the answer should be A.
Passed 70-410 exam few days ago! Scored 9XX!
Few new questions on Azure, Virtual machine, etc. NO questions on ipv6 and ipv4.
Other questions were completely rephrased and data changed (IP addresses).
Recommend to learned the newest PassLeader 70-410 dumps (http://www.passleader.com/70-410.html), all questions have been updated in it!
What’s more, you can get part of that PassLeader 70-410 dumps here for free:
https://drive.google.com/open?id=0B-ob6L_QjGLpfnJzOE1fWnlJOWVtaE93SnJNT3gtaTNYYnVpZkw5THBSMWRKbFlfaXh1azg
Hope you all can pass exam easily! Lets see you all in 70-411!
GOOD LUCK!
A according to this
http://www.aiotestking.com/microsoft/which-of-the-following-actions-should-you-take-689/
A is correct.
from training book:
Converting Server Core to Server With A GUI
To use Windows PowerShell to convert a Server Core installation of Windows Server 2012 to a Server With A GUI installation, run the following command:
Install-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Shell -Restart -Source C:\mountdir\windows\winsxs
The path C:\mountdir\windows\winsxs for the –Source parameter in the preceding command specifies a mounted Server With A GUI image in the install.wim file in the \sources folder of your Windows Server 2012 installation media.
Alternatively, you could allow the necessary feature binaries to be downloaded and installed from Windows Update by omitting the –Source parameter as follows:
Install-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Shell -Restart
Note that if you previously converted a Server With A GUI installation to Server Core and did not remove the binaries for these features, the binaries will remain staged in the WinSxS folder and therefore do not need to be downloaded from Windows Update.