Hi All,
when running Enable-ClusterStorageSpacesDirect i get:
VERBOSE: nano01: 2016/11/24-05:52:49.836 Disks surfaced on node 'nano01': 3/3
VERBOSE: nano01: 2016/11/24-05:52:49.851 Disks surfaced on node 'nano02': 3/3
VERBOSE: nano01: 2016/11/24-05:52:49.867 Disks surfaced on node 'nano03': 2/3
and it stays stuck on 27%
it is a server 2016 cluster on nano server hosted on hyper-v 2016.
any advice?
i ran this before trying to enable:
foreach ($i in "nano01", "nano02", "nano03") {invoke-command -computername $i {
Update-StorageProviderCache
Get-StoragePool | ? IsPrimordial -eq $false | Set-StoragePool -IsReadOnly:$false -ErrorAction SilentlyContinue
Get-StoragePool | ? IsPrimordial -eq $false | Get-VirtualDisk | Remove-VirtualDisk -Confirm:$false -ErrorAction SilentlyContinue
Get-StoragePool | ? IsPrimordial -eq $false | Remove-StoragePool -Confirm:$false -ErrorAction SilentlyContinue
Get-PhysicalDisk | Reset-PhysicalDisk -ErrorAction SilentlyContinue
Get-Disk | ? Number -ne $null | ? IsBoot -ne $true | ? IsSystem -ne $true | ? PartitionStyle -ne RAW | % {
$_ | Set-Disk -isoffline:$false
$_ | Set-Disk -isreadonly:$false
$_ | Clear-Disk -RemoveData -RemoveOEM -Confirm:$false
$_ | Set-Disk -isreadonly:$true
$_ | Set-Disk -isoffline:$true
}
Get-Disk |? Number -ne $null |? IsBoot -ne $true |? IsSystem -ne $true |? PartitionStyle -eq RAW | Group -NoElement -Property FriendlyName
}
}