Skip to content

Commit 32307f7

Browse files
authored
Merge pull request #3874 from MicrosoftDocs/main
Publish main to live, Tuesday 3:30PM PDT, 09/17
2 parents 70d6305 + fdb8d0e commit 32307f7

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
---
2+
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
3+
external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml
4+
Module Name: FailoverClusters
5+
ms.date: 09/17/2024
6+
online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercredential?view=windowsserver2025-ps&wt.mc_id=ps-gethelp
7+
schema: 2.0.0
8+
title: Get-ClusterCredential
9+
---
10+
11+
# Get-ClusterCredential
12+
13+
## SYNOPSIS
14+
Retrieves the credentials for a specified node in a failover cluster.
15+
16+
## SYNTAX
17+
18+
```
19+
Get-ClusterCredential [[-NodeName] <String>] [<CommonParameters>]
20+
```
21+
22+
## DESCRIPTION
23+
24+
The `Get-ClusterCredential` cmdlet retrieves the credentials for a specified node in a failover
25+
cluster.
26+
27+
## EXAMPLES
28+
29+
### Example 1
30+
31+
```powershell
32+
Get-ClusterCredential -NodeName "Node01"
33+
```
34+
35+
This example retrieves the credentials for a node named `Node01` in the failover cluster.
36+
37+
## PARAMETERS
38+
39+
### -NodeName
40+
41+
Specifies the name of the node for which to retrieve the credentials.
42+
43+
```yaml
44+
Type: String
45+
Parameter Sets: (All)
46+
Aliases:
47+
48+
Required: False
49+
Position: 0
50+
Default value: None
51+
Accept pipeline input: False
52+
Accept wildcard characters: False
53+
```
54+
55+
### CommonParameters
56+
57+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
58+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
59+
-WarningAction, and -WarningVariable. For more information, see
60+
[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters).
61+
62+
## INPUTS
63+
64+
### None
65+
66+
## OUTPUTS
67+
68+
### System.Management.Automation.PSCredential
69+
70+
## NOTES
71+
72+
## RELATED LINKS

0 commit comments

Comments
 (0)