NAME Export-Csv SYNOPSIS Converts objects into a series of character-separated value (CSV) strings and saves the strings to a file. SYNTAX Export-Csv [[-Path] ] [[-Delimiter] ] [-Append] [-Encoding {ASCII | BigEndianUnicode | Default | OEM | Unicode | UTF7 | UTF8 | UTF32}] [-Force] -InputObject [-LiteralPath ] [-NoClobber] [-NoTypeInformation] [-Confirm] [-WhatIf] [] Export-Csv [[-Path] ] [-Append] [-Encoding {ASCII | BigEndianUnicode | Default | OEM | Unicode | UTF7 | UTF8 | UTF32}] [-Force] -InputObject [-LiteralPath ] [-NoClobber] [-NoTypeInformation] [-UseCulture] [-Confirm] [-WhatIf] [] DESCRIPTION The `Export-CSV` cmdlet creates a CSV file of the objects that you submit. Each object is a row that includes a character-separated list of the object's property values. You can use the `Export-CSV` cmdlet to create spreadsheets and share data with programs that accept CSV files as input. Do not format objects before sending them to the `Export-CSV` cmdlet. If `Export-CSV` receives formatted objects the CSV file contains the format properties rather than the object properties. To export only selected properties of an object, use the `Select-Object` cmdlet. RELATED LINKS Online Version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/export-csv?view=powershe ll-5.1&WT.mc_id=ps-gethelp ConvertFrom-Csv ConvertTo-Csv Format-Table Import-Csv Select-Object REMARKS To see the examples, type: "get-help Export-Csv -examples". For more information, type: "get-help Export-Csv -detailed". For technical information, type: "get-help Export-Csv -full". For online help, type: "get-help Export-Csv -online"