icomasoft
PowerScripter 1.5 |
Export-CsvIS exports tabular data in a comma seperated
format SYNTAX Export-CsvIS [-InputObject] <PSObject> [-Path]
<String> [[-RowLabel] <String>] [[-Separator] <String>]
[<CommonParameters>] Related Commands Parameters
NAME
SYNOPSIS
Name
Description
Required?
Pipeline
Input
InputObject
The object(s) to export
True
True
Path
The file name to export the grid to
True
True
RowLabel
The column name that should be used as the row
label.
False
True
Separator
The separator to export the grid.
False
False
Input Type
Command
Return Type
Command Output
Examples
Get-Process | Export-CsvIS -Path C:\Processes.csv -RowLabel ProcessName
Exports the list of the currently running process as CSV table file.