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
Why not A – You should consider making use of the Install-WindowsFeature Server-Gui-Mgmt-Infra, ServerGui-Shell – Restart cmdlet? http://blogs.technet.com/b/bruce_adamczak/archive/2013/02/07/windows-2012-core-survival-guide-changing-the-gui-type.aspx
I second this. A for sure.
are any of these questions right from this website? I failed my exam twice for the 410 by using this website…..
Always read the comments, because there are wrong answers, like this answer.
Here it’s an obvious mistake, but that’s not always the case.
is this the latest version??? anyone help pls
Hey pls check my last comment 😉 i think this dump is valid. Not 100%… but with comment areas and v4 you will pass 😉 i checked up too with annette s dump and comment areas on examcollection.
Thanks!
agree with nikita.
it gives wrong answer ;-( sure fail
Correct answer for me seems to be A
B is correct. http://www.biztechmagazine.com/article/2012/10/whats-new-windows-server-core-2012
Re read the question, it states use Windows Update, winsxs is a local folder.
A is correct.
https://technet.microsoft.com/en-us/library/hh831786.aspx
* Determine the index number for a Server with a GUI image (for example, SERVERDATACENTER, not SERVERDATACENTERCORE) with Get-WindowsImage -ImagePath \install.wim.
* Run Install-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Shell –Restart –Source c:\mountdir\windows\winsxs
* Alternatively, if you want to use Windows Update as the source instead of a WIM file, use this Windows PowerShell cmdlet:
* Install-WindowsFeature Server-Gui-Mgmt-Infra,Server-Gui-Shell –Restart
B is Correct
this cmdlet will install the managment infrastructure and the gui shell
Install-WindowsFeature Server-Gui-Mgmt-Infra, ServerGui-Shell – Restart
however the installation files are not available so you need to declare a source. if you have the media on drive D (DVD) then..
Install-WindowsFeature Server-Gui-Mgmt-Infra –source wim:d:\sources\install.wim:2
Alternitivly you can use windows update, the WinSXS folder
-Source c:\mountdir\windows\winsxs
so to install GUI from by using windows update use the following command.
Install-WindowsFeature Server-Gui-Mgmt-Infra, ServerGui-Shell – Restart -Source c:\mountdir\windows\winsxs
disagree, 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.