Repair-ClusterSharedVolume

Repair-ClusterSharedVolume

Runs repair tools on a Cluster Shared Volume locally on a cluster node.

Syntax

Parameter Set: ChkDsk
Repair-ClusterSharedVolume [-VolumeName] <String> -ChkDsk [-Parameters <String> ] [ <CommonParameters>]

Parameter Set: Defrag
Repair-ClusterSharedVolume [-VolumeName] <String> -Defrag [-Parameters <String> ] [ <CommonParameters>]

Detailed Description

The Repair-ClusterSharedVolume cmdlet runs repair tools on a Cluster Shared Volume locally on a cluster node.

This cmdlet runs chkdsk.exe or defrag.exe on a Cluster Shared Volume. It will turn maintenance on for the volume, move the cluster resource to the node running this cmdlet, run the tool, and then turn maintenance off for the volume. This cmdlet has to run locally on one of the cluster nodes. To run remotely, use Windows PowerShell® remoting.

Parameters

-ChkDsk

Specifies that chkdsk.exe is run on the volume. Any parameters specified in the Parameters parameter will be passed through to chkdsk.exe.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Defrag

Specifies that defrag.exe is run on the volume. Any parameters specified in the Parameters parameter will be passed through to defrag.exe.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Parameters<String>

Specifies one or more parameters to pass through to the tool.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-VolumeName<String>

Specifies the name of the volume on which to run the tool.

Aliases

none

Required?

true

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 (https://go.microsoft.com/fwlink/p/?LinkID=113216).

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 runs defrag.exe on Cluster Shared Volume located at C:\ClusterStorage\Volume1.

PS C:\> Repair-ClusterSharedVolume –VolumeName C:\ClusterStorage\Volume1 -Defrag

Example 2

This example runs chkdsk.exe on Cluster Shared Volume located at C:\ClusterStorage\Volume1 and passes the /F parameter to chkdsk.exe.

PS C:\> Repair-ClusterSharedVolume –VolumeName C:\ClusterStorage\Volume1 -ChkDsk -Parameters "/F"

Get-ClusterSharedVolume

Resume-ClusterResource

Suspend-ClusterResource