Clear-ClusterDiskReservation
Updated: August 15, 2012
Applies To: Windows Server 2012
Clear-ClusterDiskReservation
Syntax
Parameter Set: Default Clear-ClusterDiskReservation [[-Node] <StringCollection> ] -Disk <UInt32[]> [-Force] [ <CommonParameters>]
Detailed Description
The Clear-ClusterDiskReservation cmdlet clears the persistent reservation on a disk in a failover cluster. This cmdlet prompts for confirmation unless you specify the Force parameter.
Note: This cmdlet cannot be run remotely without Credential Security Service Provider (CredSSP) authentication on the server computer.
Parameters
-Disk<UInt32[]>
Specifies the disk number on which to clear the persistent reservations. This is the disk number as it appears in Disk Management on the node.
|
Aliases |
none |
|
Required? |
true |
|
Position? |
named |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-Force
Runs the cmdlet without prompting for confirmation. By default the cmdlet will ask for confirmation from the user before proceeding.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
named |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
-Node<StringCollection>
Specifies the name of the cluster node on which to clear the disk reservation.
|
Aliases |
none |
|
Required? |
false |
|
Position? |
1 |
|
Default Value |
none |
|
Accept Pipeline Input? |
false |
|
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
- None
Outputs
The output type is the type of the objects that the cmdlet emits.
- None
Examples
Example 1
This example clears the persistent reservation on Disk 5 on the local node after asking for user confirmation.
PS C:\> Clear-ClusterDiskReservation -Disk 5
Example 2
This example clears the persistent reservation on Disk 6 on the node named node2 without asking for user confirmation.
C:\PS>Clear-ClusterDiskReservation -Disk 6 -Node node2 -Force
Related topics
