PowerShell Logo Small

Add-ClusterCheckpoint



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

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

SYNTAX


Add-ClusterCheckpoint [[-ResourceName] <String>] [-Cluster <String>] [-CryptoCheckpointKey <String>] [-CryptoCheckpointName <String>] [-CryptoCheckpointType <String>]
[-InputObject <PSObject>] [-RegistryCheckpoint <String>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Add-ClusterCheckpoint cmdlet adds 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=321004
Get-ClusterCheckpoint
Get-ClusterResource
Remove-ClusterCheckpoint

REMARKS

<

Examples


Example 1

PS C:\>Add-ClusterCheckpoint -ResourceName "cluster name" -RegistryCheckpoint "software\clusname"
Resource Name
-------- ----
cluster name software\clusname



This example adds a registry checkpoint called software\clusname for the resource named cluster name.




Example 2

PS C:\>Get-ClusterResource –Name "Cluster Name" | Add-ClusterCheckpoint -CryptoCheckpointName "Microsoft Base Cryptographic Provider v1.0" -CryptoCheckpointType 1
-CryptoCheckpointKey "Crypto"
Resource Name Type Key
-------- ---- ---- ---
Cluster Name Microsoft Base Cryptograph... 1 Crypto



This example adds a cryptographic checkpoint for the resource named Cluster Name.