From def743288e792d60ab975712c9d0c8dc68997c7f Mon Sep 17 00:00:00 2001 From: Xelu86 <103963494+Xelu86@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:52:24 -0400 Subject: [PATCH] Added new ClusterCredential cmdlet --- .../failoverclusters/Get-ClusterCredential.md | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 docset/winserver2025-ps/failoverclusters/Get-ClusterCredential.md diff --git a/docset/winserver2025-ps/failoverclusters/Get-ClusterCredential.md b/docset/winserver2025-ps/failoverclusters/Get-ClusterCredential.md new file mode 100644 index 0000000000..e3548d6064 --- /dev/null +++ b/docset/winserver2025-ps/failoverclusters/Get-ClusterCredential.md @@ -0,0 +1,72 @@ +--- +description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell. +external help file: Microsoft.FailoverClusters.PowerShell.dll-Help.xml +Module Name: FailoverClusters +ms.date: 09/17/2024 +online version: https://learn.microsoft.com/powershell/module/failoverclusters/get-clustercredential?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-ClusterCredential +--- + +# Get-ClusterCredential + +## SYNOPSIS +Retrieves the credentials for a specified node in a failover cluster. + +## SYNTAX + +``` +Get-ClusterCredential [[-NodeName] ] [] +``` + +## DESCRIPTION + +The `Get-ClusterCredential` cmdlet retrieves the credentials for a specified node in a failover +cluster. + +## EXAMPLES + +### Example 1 + +```powershell +Get-ClusterCredential -NodeName "Node01" +``` + +This example retrieves the credentials for a node named `Node01` in the failover cluster. + +## PARAMETERS + +### -NodeName + +Specifies the name of the node for which to retrieve the credentials. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). + +## INPUTS + +### None + +## OUTPUTS + +### System.Management.Automation.PSCredential + +## NOTES + +## RELATED LINKS