Hi,
I'm new to powershell and working myself through the first pages of the course.
I have a question concerning the returned result of Get-Process.
- Get-Process | out-file Process.txt
This list of processes has 7 columns: ProcessName, Id, …
- Get-Process | ConvertTo-Html | Out-File Process.html
This generates a detailed list with 59 columns like VirtualMemorySize64, StandardInput, Threads, …
Why does this generate such different information ?