Summary: Use Windows PowerShell to convert output to a specific delimiter.
How can I use Windows PowerShell to select process name and paged system memory, plus separate the output with a colon?
Use the Get-Process cmdlet to retrieve the process information, select the name,
add the PagedSystemMemorySize property, pipe the output to the ConvertTo-CSV cmdlet,
and specify the delimiter as “:”:
Get-Process | select name, PagedSystemMemorySize | ConvertTo-Csv -Delimiter ":"