Before SCVMM can configure anything, make sure:
The Hyper-V Replica Broker role is online in FCM
At least one CSV is present and online
All cluster nodes are managed by SCVMM
SCVMM has Run As Account with rights on cluster nodes
SCVMM must discover the new broker role.
In VMM Console:
Go to Fabric - Servers - All Hosts
Select your cluster
Right-click - Refresh
After refresh, SCVMM should show:
Hyper-V Replica Broker under the cluster roles.
If you do NOT see it - SCVMM didn’t detect it
(usually because credentials or cluster refresh not done)
In Fabric - Servers - All Hosts
Expand the cluster - click Cluster
On the right pane select Properties
Go to Replication Settings tab
There you configure:
Kerberos (HTTP)
Certificate-based (HTTPS)
Or both
You choose which CSV volume Replica VMs will land on.
Under cluster - Host Properties - Host Access
SCVMM needs to know:
Allowed replica servers
Inbound replication storage path (CSV)
Replication port (80 or 443)
Compression enabled or not
VSS replication frequency
When configured through SCVMM:
VMM pushes:
Replica server settings
Authentication
Storage path
Firewall rules
to every Hyper-V node.
Right-click any VM - Enable Replication
Choose:
Replica cluster (not node)
Port (80 or 443)
Authentication
Replica folder - SCVMM auto-selects CSV you configured
Compression
Frequency
Refresh cluster again
VMM needs local admin on all nodes.
Check in FCM:
cluster resource
Broker should be Online.
SCVMM can’t see the broker.
Ensure cluster networks include a "Replication" network.
Check if SCVMM sees the broker:
Get-SCVMHostCluster | fl Name, *replica*
Check cluster registration:
Get-ClusterResource -Name "Hyper-V Replica Broker"

Run this on any cluster node:
Get-ChildItem C:\ClusterStorage
If intrep does NOT appear, create it.
To create safely:
mkdir "C:\ClusterStorage\Volume1\intrep"
Or whatever your CSV volume is actually named.
Add permissions for:
Cluster Name Object (CNO)
Replica Broker Name (new computer object created when you added the broker)
Right-click the CSV folder - Properties - Security - Add
Add:
<ClusterName>$
<ReplicaBrokerName>$
Give:
Full Control
Or use PowerShell:
$folder = "C:\ClusterStorage\Volume1\intrep"
icacls $folder /grant "DOMAIN\ClusterName$:(OI)(CI)(F)"
icacls $folder /grant "DOMAIN\ReplicaBrokerName$:(OI)(CI)(F)"
Correct example:
C:\ClusterStorage\Volume1\intrep
Correct:
C:\ClusterStorage\Volume1\intrep
Incorrect:
C:\ClusterStorage\Volume1\intrep\
Sometimes the node holding the broker can’t access CSV yet.
In Failover Cluster Manager:
Cluster - Roles - Hyper-V Replica Broker - Move - Select Node
Then retry in SCVMM.
Fabric - All Hosts - Cluster - Properties - Replication Settings
Set the CSV path again.