PowerShell Logo Small

Remove-ClusterResourceDependency



This is the built-in help made by Microsoft for the command 'Remove-ClusterResourceDependency', 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

Removes a dependency between two resources in a clustered role within a failover cluster.

SYNTAX


Remove-ClusterResourceDependency [[-Resource] <String>] [[-Provider] <String>] [-Cluster <String>] [-InputObject <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-ClusterResourceDependency cmdlet removes a dependency between two resources in a clustered role within a failover cluster.


A dependent resource is brought online after the resources on which it depends. Likewise, a dependent resource is taken offline before the resources on which it depends. If
no dependency is configured between clustered resources, then the order in which they are brought online or taken offline might vary.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321056
Add-ClusterResourceDependency
Get-ClusterResourceDependency
Set-ClusterResourceDependency

REMARKS

<

Examples


Example 1

PS C:\>Remove-ClusterResourceDependency -Resource cluster1FS -Provider "IP Address 2001:4898:9:2:: (3)"
Name State Group ResourceType
---- ----- ----- ------------
cluster1FS Online cluster1FS Network Name



This example removes the dependency between cluster resource cluster1FS and the resource named IP Address 2001:4898:9:2:: (3).




Example 2

PS C:\>Get-ClusterResource –Name cluster1FS | Remove-ClusterResourceDependency –Provider "IP Address 2001:4898:9:2:: (3)"
Name State Group ResourceType
---- ----- ----- ------------
cluster1FS Online cluster1FS Network Name



This example removes the dependency between the cluster resource named cluster1FS and the resource named IP Address 2001:4898:9:2:: (3).