Posted On June 11, 2019

Hyper-V Administration Console

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Hyper-V Administration Console

Install the Hyper-V Management Console

# Windows 2016 or higher: install the Hyper-V management tool pack (Hyper-V Manager and the Hyper-V PowerShell module)

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Tools-All

Output:

PS C:\Windows\system32> Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Tools-All
Path :
Online : True
RestartNeeded : False

Alternate output:

PS C:\Windows\system32> Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Tools-All
Enable-WindowsOptionalFeature : Feature name Microsoft-Hyper-V-Tools-All is unknown.
At line:1 char:1
+ Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V- ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Enable-WindowsOptionalFeature], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.EnableWindowsOptionalFeatureCommand

PS C:\Windows\system32> add-windowsfeature rsat-hyper-v-tools

Success Restart Needed Exit Code Feature Result
------- -------------- --------- --------------
True No Success {Hyper-V Module for Windows PowerShell, Hy...
# Windows 2008 R2

# Import this to avoid error: The term 'add-windowsfeature' is not recognized as the name of a cmdlet
Import-Module servermanager

# Install hyper-v manager
add-windowsfeature rsat-hyper-v-tools
# Initiate the Hyper-V Manager

virtmgmt.msc

Start the Hyper-V Management Console:

Run: virtmgmt.msc > right-click Hyper-V Manager > Connect to Server… > click the radio button next to ‘Another computer:’ selection > input the Hyper-V host name > OK > repeat process to add other Hyper-V nodes onto this management console

After the servers have been added into the console, the list will be automatically saved. Hence, closing and re-opening of the Hyper-V console will call this list as defaults

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Virtual Machine Queue: Assigning Processors to Network Interfaces

Microsoft Hyper-V Virtual Machine Queuing is useful to maximize high-bandwidth network cards. However, configuring this…

Amazon Web Services Testing

AWS Test Procedures:   Test Control Condition: Launch an Instance by choosing Windows OS AMI…

Hyper-V: How to Convert IDE to SCSI on a Guest VM

Plan A: 1. Clone the existing Guest VM as a full backup2. While having target…