From aee66dc36a853b9ccc4d7e5cccdf98964d7d87f3 Mon Sep 17 00:00:00 2001 From: Zachary Alexander Date: Tue, 15 Nov 2016 14:18:01 -0800 Subject: [PATCH] Comment out output see #808 --- reference/5.1/Microsoft.PowerShell.Utility/Export-Csv.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/5.1/Microsoft.PowerShell.Utility/Export-Csv.md b/reference/5.1/Microsoft.PowerShell.Utility/Export-Csv.md index 3979de7b01cd..ed1b51e64533 100644 --- a/reference/5.1/Microsoft.PowerShell.Utility/Export-Csv.md +++ b/reference/5.1/Microsoft.PowerShell.Utility/Export-Csv.md @@ -57,7 +57,7 @@ This command selects a few properties of the WmiPrvse process and exports them t PS C:\>Get-Process | Export-Csv -Path "processes.csv" # In processes.csv #TYPE System.Diagnostics.Process -__NounName,Name,Handles,VM,WS,PM,NPM,Path,Company,CPU,FileVersion,... Process,powershell,626,201666560,76058624,61943808,11960,C:\WINDOWS... Process,powershell,257,151920640,38322176,37052416,7836,C:\WINDOWS\... +#__NounName,Name,Handles,VM,WS,PM,NPM,Path,Company,CPU,FileVersion,... #Process,powershell,626,201666560,76058624,61943808,11960,C:\WINDOWS... #Process,powershell,257,151920640,38322176,37052416,7836,C:\WINDOWS\... ``` This command exports objects representing the processes on the computer to the Processes.csv file in the current directory. @@ -68,7 +68,7 @@ Because it does not specify a delimiter, a comma (,) is used to separate the fie PS C:\>Get-Process | Export-Csv -Path "processes.csv" -Delimiter ";" # In processes.csv #TYPE System.Diagnostics.Process -__NounName;Name;Handles;VM;WS;PM;NPM;Path;Company;CPU;FileVersion;... Process;powershell;626;201666560;76058624;61943808;11960;C:\WINDOWS... Process;powershell;257;151920640;38322176;37052416;7836;C:\WINDOWS\... +#__NounName;Name;Handles;VM;WS;PM;NPM;Path;Company;CPU;FileVersion;... #Process;powershell;626;201666560;76058624;61943808;11960;C:\WINDOWS... #Process;powershell;257;151920640;38322176;37052416;7836;C:\WINDOWS\... ``` This command exports objects representing the processes on the computer to the Processes.csv file in the current directory. @@ -87,7 +87,7 @@ It uses the *UseCulture* parameter to direct **Export-CSV** to use the delimiter ``` PS C:\>Get-Process | Export-Csv -Path "processes.csv" -NoTypeInformation # In processes.csv -__NounName,Name,Handles,VM,WS,PM,NPM,Path,Company,CPU,FileVersion,... Process,powershell,626,201666560,76058624,61943808,11960,C:\WINDOWS... Process,powershell,257,151920640,38322176,37052416,7836,C:\WINDOWS\... +#__NounName,Name,Handles,VM,WS,PM,NPM,Path,Company,CPU,FileVersion,... #Process,powershell,626,201666560,76058624,61943808,11960,C:\WINDOWS... Process,powershell,257,151920640,38322176,37052416,7836,C:\WINDOWS\... ``` This command exports objects representing the processes on the computer to the Processes.csv file in the current directory.