You install Windows Server 2008 R2 Enterprise (Full Installation).
You need to add the Hyper-V role to the server.
What are two possible ways to achieve this goal?
(Each correct answer presents a complete solution. Choose two.)
A.
Run the start /w hvconfig command.
B.
Run the start /w ocsetup Microsoft-Hyper-V command.
C.
Run the Add-WindowsFeature Hyper-V PowerShell cmdlet.
D.
Run the Add-WindowsFeature RSAT-Hyper-V PowerShell cmdlet.
Explanation:
You can install Hyper-V on either a full installation or a Server Core installation. You can use
Server Manager to install Hyper-V on a full installation, as described in the following
procedure. To install on a Server Core installation, you must perform the installation from a
command prompt. Run the following command:
Start /w ocsetup Microsoft-Hyper-V
Windows PowerShell cmdlets for Server Manager
Windows PowerShell cmdlets for Server Manager accept parameters to install or remove
one or more roles, role services, and features that are separated by commas.
The following three cmdlets let you install, remove, or view information about available roles
by using Windows PowerShell. For more information about and examples of how to use any
of these cmdlets, in a Windows PowerShell session into which the Server Manager module
is loaded, enter Get-Helpcmdlet_name-full, in which cmdlet_name represents one of the
following values.
Add-WindowsFeature Installs specified roles, role services, and features on the computer.
For more information about how to add roles, role services, and features by using this
cmdlet, see Adding Server Roles and Features.
Get-WindowsFeature Returns a list of all roles, role services, and features that are available
for installation on the computer, and displays by using check boxes ([X]) those that are
installed. The Get-WindowsFeature cmdlet also returns a list of the command names that
you provide in the Add-WindowsFeature and Remove-WindowsFeature cmdlets when you
want to add or remove roles, role services, and features. Results of the GetWindowsFeature cmdlet can be piped into either of the other two Server Manager cmdlets,
or into cmdlets that run scans for Best Practices Analyzer, for example.
Remove-WindowsFeature Removes specified roles, role services, and features from the
computer. For more information about how to remove roles, role services, and features by
using this cmdlet