Advertisement
willysec_id

Enable Hyper-V Azure RDP

Jul 6th, 2020
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Enable-WindowsOptionalFeature –Online -FeatureName Microsoft-Hyper-V –All -NoRestart
  2.  
  3. The above command installs only the hypervisor but does not install the administration tools, if you want to manage the Hyper-V within the virtual machine you must install RSAT for Hyper-V to do this run the following command:
  4.  
  5. Install-WindowsFeature RSAT-Hyper-V-Tools -IncludeAllSubFeature
  6.  
  7. you want to create a cluster then you need to install the Cluster service, run:
  8. Install-WindowsFeature RSAT-Clustering -IncludeAllSubFeature
  9.  
  10. you can install Multipath I/O to enable multiple paths to the storage, if this is your case follow:
  11. Install-WindowsFeature Multipath-IO
  12.  
  13.  
  14. Restart to finalize the virtual machine with the command:
  15. Restart-Computer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement