Skip to content

Latest commit

 

History

History
143 lines (100 loc) · 3.49 KB

Get-ClusterResourceDependency.md

File metadata and controls

143 lines (100 loc) · 3.49 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
Microsoft.FailoverClusters.PowerShell.dll-Help.xml
FailoverClusters
11/22/2022
2.0.0
Get-ClusterResourceDependency

Get-ClusterResourceDependency

SYNOPSIS

Gets information about the dependencies that have been configured between clustered resources in a failover cluster.

SYNTAX

Get-ClusterResourceDependency [[-Resource] <StringCollection>] [-Guid] [-InputObject <PSObject>]
 [-Cluster <String>] [<CommonParameters>]

DESCRIPTION

The Get-ClusterResourceDependency cmdlet gets information about the dependencies that have been configured between clustered resources in a failover cluster. Resource dependencies control the order in which resources are brought online or taken offline in the cluster.

EXAMPLES

Example 1

Get-ClusterResourceDependency -Resource cluster1FS12

This example displays the dependencies for the resource called cluster1FS12.

Example 2

Get-ClusterGroup -Name cluster1FS12 | Get-ClusterResource | Get-ClusterResourceDependency

This example displays the dependencies for each resource in the clustered file server resource group called cluster1FS12. Some resources don't have dependencies.

PARAMETERS

-Cluster

Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is . or it is omitted, then the cmdlet runs on the local cluster.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Guid

Causes the generated dependency expression to have the resource GUIDs instead of the resource names.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-InputObject

Specifies the cluster resource for which to get the dependency expression.

Type: PSObject
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Resource

Specifies the name of the cluster resource for which to get the dependency expression.

Type: StringCollection
Parameter Sets: (All)
Aliases: 

Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.FailoverClusters.PowerShell.ClusterResource

OUTPUTS

Microsoft.FailoverClusters.PowerShell.ClusterResourceDependency

NOTES

RELATED LINKS

Add-ClusterResourceDependency

Get-ClusterGroup

Get-ClusterResource

Remove-ClusterResourceDependency

Set-ClusterResourceDependency