PowerShell Logo Small

Get-ClusterCheckpoint



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

Retrieves a cryptographic key checkpoint or registry checkpoint for a resource.

SYNTAX


Get-ClusterCheckpoint [[-ResourceName] <StringCollection>] [-CheckpointName <String>] [-Cluster <String>] [-CryptoCheckpoint] [-InputObject <PSObject>] [-RegistryCheckpoint]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ClusterCheckpoint cmdlet retrieves a cryptographic key checkpoint or registry checkpoint for a resource.


Checkpoints help provide failover support for applications that store configuration information locally instead of or in addition to storing information in the cluster
configuration database. Applications might store information locally in two ways. One way is to store configuration information in the registry on the local server; another
way is to use cryptographic keys on the local server.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321028
Add-ClusterCheckpoint
Remove-ClusterCheckpoint

REMARKS

<

Examples


Example 1

PS C:\>Get-ClusterCheckpoint
Resource Name Type Key
-------- ---- ---- ---
Cluster Name Microsoft Enhanced Cryptog... b5a571f2-c28b-48fa-b82f-a8...
Cluster Name software\clusname



This example retrieves all cluster checkpoints.




Example 2

PS C:\>Get-ClusterResource –ResourceName "Cluster Name" | Get-ClusterCheckpoint -CryptoCheckpoint
Resource Name Type Key
-------- ---- ---- ---
Cluster Name Microsoft Enhanced Cryptog... b5a571f2-c28b-48fa-b82f-a8...



This example retrieves the cryptographic checkpoints for the resource named Cluster Name.