Here's my script:
Clear-Host $Host.UI.RawUI.WindowTitle = "Install Windows Features and Roles" #Add spaces so messages appear under the progress bar Write-Host "" Write-Host "" Write-Host "" Write-Host "" Write-Host "" Write-Host "" Write-Host "" Write-Host "" #Install Server Manager Import-Module ServerManager #Install Failover Cluster Role Write-Host "Install Failover Cluster Feature..." Install-WindowsFeature -Name Failover-Clustering -IncludeAllSubFeature -IncludeManagementTools
# -WarningAction SilentlyContinue | Out-Null Write-Host "Install Failover Cluster Feature Completed." -ForegroundColor Green Write-Host "" #Install Hyper-V Role Write-Host "Install Hyper-V Role..." Install-WindowsFeature -Name Hyper-V -IncludeAllSubFeature -IncludeManagementTools # -WarningAction SilentlyContinue | Out-Null Write-Host "Install Hyper-V Role Completed." -ForegroundColor Green Write-Host ""
Failover Cluster installs but when it tries Hyper-V it hangs at 10% forever:
I've installed a fresh DataCenter edition of Server 2012 R2
I've installed Chipset, Video and NIC drivers
I've joined the domain and logged in as a Domain Admin
Any ideas?