Skip to content

Commit dfe9f32

Browse files
committed
Updated Remove-ClusterCheckpoint.md after feedback
1 parent 55f8cbd commit dfe9f32

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docset/winserver2022-ps/failoverclusters/Remove-ClusterCheckpoint.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
33
external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml
44
Module Name: FailoverClusters
5-
ms.date: 10/21/2022
5+
ms.date: 01/09/2023
66
online version: https://learn.microsoft.com/powershell/module/failoverclusters/remove-clustercheckpoint?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Remove-ClusterCheckpoint
@@ -37,12 +37,12 @@ local server.
3737
### Example 1
3838

3939
```powershell
40-
Get-ClusterResource "Cluster Name" | Remove-ClusterCheckpoint -RegistryCheckpoint
41-
Remove-ClusterCheckpoint -Confirm:$false
40+
$checkpoint = Get-ClusterCheckpoint -ResourceName "Cluster Name" -RegistryCheckpoint
41+
$checkpoint | Remove-ClusterCheckpoint -Confirm:$false
4242
```
4343

44-
This example removes the registry checkpoint called `software\clusname` for the resource named
45-
`Cluster Name` without user confirmation.
44+
This example returns all registry checkpoints for the resource named `Cluster Name`, then removes
45+
them without user confirmation.
4646

4747
## PARAMETERS
4848

0 commit comments

Comments
 (0)