Skip to content

Latest commit

 

History

History
166 lines (120 loc) · 3.85 KB

File metadata and controls

166 lines (120 loc) · 3.85 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
ClusterAwareUpdating.dll-Help.xml
ClusterAwareUpdating
09/27/2022
2.0.0
Save-CauDebugTrace

Save-CauDebugTrace

SYNOPSIS

Saves CAU debug tracing information to a local zip file.

SYNTAX

Save-CauDebugTrace [[-ClusterName] <String>] [[-FilePath] <String>] [-Credential <PSCredential>]
 [-RunId <Guid>] [-Force] [-FeatureUpdateLogs <FeatureUpdateLogs>] [<CommonParameters>]

DESCRIPTION

The Save-CauDebugTrace cmdlet saves Cluster-Aware Updating (CAU) debug tracing information to a local zip file. The tracing information is mainly intended for use by developers and support engineers. Specify the file name with the FilePath parameter.

To run this cmdlet, Windows PowerShell remoting must be enabled on each node. To do this, run the Enable-PSRemoting cmdlet. In addition, ensure that the Windows Remote Management - Compatibility Mode (HTTP-In) firewall exception is enabled on each node.

EXAMPLES

Example 1: Save debug tracing information for the specified cluster

Save-CauDebugTrace -ClusterName "CONTOSO-FC1" -FilePath "C:\temp\testrun.zip"

This command saves the debug tracing information for the cluster named CONTOSO-FC1, to a trace file called testrun.zip in the C:\temp folder.

PARAMETERS

-ClusterName

Specifies the name of the cluster for which to gather CAU debug tracing information. This parameter is only required when this cmdlet isn't run on a failover cluster node, or this cmdlet is used to reference a failover cluster different from where the cmdlet is run.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Credential

Specifies the administrative credentials for the target cluster.

Type: PSCredential
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-FeatureUpdateLogs

Specifies feature update logs.

Type: FeatureUpdateLogs
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-FilePath

Specifies the name of the file to which to save the tracing information, such as MyTrace.zip.

Type: String
Parameter Sets: (All)
Aliases: Path

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Force

Forces the command to run without asking for user confirmation.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: f

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-RunId

Indicates that the cmdlet should only include debug trace files related to an updating run with the specified Run ID.

Type: Guid
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
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.

INPUTS

None

OUTPUTS

Microsoft.ClusterAwareUpdating.ActivityIdMap

System.IO.FileInfo

NOTES

RELATED LINKS

Invoke-CauRun