When you configure the cluster resources of a Hyper-V cluster in Microsoft Windows Server 2016, you use Windows PowerShell to set the ConfigStoreRootPath attribute of the Virtual Machine Cluster WMI resource, as follows:
$path = "C:\ClusterStorage\Volume1\Hyper-V\Shared" Get-ClusterResource "Virtual Machine Cluster WMI" | Set-ClusterParameter -Name ConfigStoreRootPath -Value $path
This command succeeds. Then, you try to change the attribute again:
$path = "C:\ClusterStorage\Volume1\Hyper-V\Storage" Get-ClusterResource "Virtual Machine Cluster WMI" | Set-ClusterParameter -Name ConfigStoreRootPath -Value $path
This time, the command fails and generates a message that resembles the following:
The request is not supported