Get-Process | Select-Object -Property * -Exclude *Memory*
1 answer
The above PowerShell command is used to retrieve information on all running processes and select all properties except those that contain the word "Memory".
1 answer