PowerShell Logo Small

Get-ClusterResourceDependencyReport



This is the built-in help made by Microsoft for the command 'Get-ClusterResourceDependencyReport', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Generates a report that lists the dependencies between resources in a failover cluster.

SYNTAX


Get-ClusterResourceDependencyReport [-Cluster <String>] [-Group <String>] [-InputObject <PSObject>] [-Resource <String>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ClusterResourceDependencyReport cmdlet generates a report that lists the dependencies between resources in a failover cluster.


The report has a filename extension of MHT. For convenience in storing and finding the report, you can pipe this cmdlet to the Copy-Item cmdlet and specify a destination
folder into which to copy the report.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321039
Copy-Item
Add-ClusterResourceDependency
Remove-ClusterResourceDependency
Set-ClusterResourceDependency

REMARKS

<

Examples


EXAMPLE 1

PS C:\>Get-ClusterResourceDependencyReport -Group cluster1FS12
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a--- 10/15/2008 6:29 PM 59299 fb509e66-8d02-4881-8184-6be5b1bfa4c2.mht



This example creates a dependency report file for the clustered file server, or resource group, named cluster1FS12 on the local cluster.




EXAMPLE 2

PS C:\>Get-ClusterResourceDependencyReport -Group cluster1FS12 | Copy-Item -Destination C:\users\user1



This example creates a dependency report file for the clustered file server, or resource group, named cluster1FS12 on the local cluster. The dependency report is copied to
C:\users\user1.




EXAMPLE 3

PS C:\>Get-ClusterGroup | Get-ClusterResourceDependencyReport | Copy-Item -Destination \\fileserver\share



This example creates a dependency report file for each clustered role, or resource group, on the local cluster, and copies all reports to \\fileserver\share.