Question : Powershell export-csv -delimiter parameter not working

Hi,

I am trying to run this command: get-process | export-csv processes.csv -Delimiter ";" and I get an error. However this page says it should work: http://technet.microsoft.com/en-us/library/dd347724.aspx . I have Powershell 1.0 installed on a windows 2003 server x86.
The error I get:

Export-Csv : A parameter cannot be found that matches parameter name 'Delimiter'.
At line:1 char:50
+ get-process | export-csv processes.csv -Delimiter <<<< ";"

What am I missing here?

Thanks in advance

Answer : Powershell export-csv -delimiter parameter not working

Powershell is case-insensitive at least with cmdlets.
I don't think the -Delimiter option is available in v1 of Powershell, maybe version 2. You can go through the available options by typing a dash and then hitting tab to cycle through the options.

EG: export-csv -
Random Solutions  
 
programming4us programming4us