PowerShell Logo Small

Export-CauReport



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

Exports one or more Updating Run reports into an HTML or CSV-formatted document.

SYNTAX


Export-CauReport [-InputReport] <CauReport[]> [-Format] <OutputType> [-Path] <String> [-Force] [-PassThru] [-TimeZone <TimeZoneInfo>] [-Confirm] [-WhatIf]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Export-CauReport cmdlet exports one or more Updating Run reports into an HTML or CSV-formatted document. Each Run report summarizes both the node-level and cluster-level
summary status for the Updating Run.


Pipe one or more reports from the Get-CauReport cmdlet with the Detailed parameter, and control the content in the report by specifying appropriate parameters for the
Get-CauReport cmdlet. For example, the Last parameter specifies the most recent Updating Run.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287663
Get-CauReport
Invoke-CauRun

REMARKS

<

Examples


EXAMPLE 1

PS C:\> Get-CauReport -ClusterName Contoso-FC1 -Last -Detailed | Export-CauReport -Format HTML -Path C:\temp\contoso-fc1_last.html -TimeZone ([system.timezoneinfo]::Utc)



This example gets a detailed version of the last CAU report for the cluster named Contoso-FC1, then exports that report in HTML format to the path
C:\temp\contoso-fc1_last.html. The timestamps in the report are formatted in the Coordinated Universal Time (UTC) zone.