You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will return projected space consumption of migrating all old-format Hyper-V VMs of "Server1" that are protected by the Gold SLA Domain, and cluster free space before and after migration.
37
37
38
-
.EXAMPLE
39
-
Get-RubrikHvmFormatClusterStorage -SetToUpgrade
40
-
This will return projected space consumption of migrating all old-format, removed Hyper-V VMs that have been set for a force full upgrade by specifying the forcefullspec.
41
-
42
38
.EXAMPLE
43
39
Get-RubrikHvmFormatClusterStorage -Relic
44
40
This will return projected space consumption of migrating all old-format, removed Hyper-V VMs that were formerly protected by Rubrik, and cluster free space before and after migration.
45
41
42
+
.EXAMPLE
43
+
Get-RubrikHvmFormatClusterStorage -SetToUpgrade
44
+
This will return projected space consumption of migrating all old-format, removed Hyper-V VMs that have been set for a force full upgrade by specifying the forcefullspec.
This will return projected space consumption for the specified HypervVirtualMachine ID, and 0 if this HypervVirtualMachine uses fast VHDX format (no need for migration).
@@ -79,6 +79,7 @@ function Get-RubrikHvmFormatClusterStorage
79
79
# Filter the report based on whether a Volume Group is set to take a full snapshot on the next backup.
80
80
[Alias('ForceFullSpec')]
81
81
[Switch]$SetToUpgrade,
82
+
[Switch]$DisplayReport,
82
83
# Rubrik server IP or FQDN
83
84
[String]$Server=$global:RubrikConnection.server,
84
85
# API version
@@ -143,7 +144,6 @@ function Get-RubrikHvmFormatClusterStorage
143
144
continue
144
145
}
145
146
$vmsnapshot=Get-RubrikSnapshot-Latest -id $vm.ID
146
-
$spec=Get-RubrikHvmForceFullSpec-id $vm.ID
147
147
if (!$vmsnapshot) {
148
148
continue
149
149
}
@@ -154,7 +154,7 @@ function Get-RubrikHvmFormatClusterStorage
154
154
# Add the report only if the HyperV VM did not use fast VHDX format for its latest snapshot
0 commit comments