Para citar Raymond Chen , de acordo com a seguinte fonte: link
When you go to the Processes tab in Task Manager, you see the processes grouped into three categories: App, Background Process, and Windows Process. How does it decide which process goes into which category?
These are terms that Task Manager simply made up. The system itself doesn't really care what kind of processes they are.
If the process has a visible window, then Task Manager calls it an "App".
If the process is marked as critical, then Task Manager calls it a "Windows Process".
Otherwise, Task Manager calls it a "Background Process".
Como a questão é sobre "Aplicativos" ou "Aplicativos", estamos considerando apenas aqueles com uma janela visível.
Os seguintes comandos do Powershell talvez sejam suficientes:
powershell "gps | where {$_.MainWindowTitle } | select Description
como poderia:
powershell "gps | where {$_.MainWindowHandle -ne 0 } | select Description
Comandos relacionados:
powershell "gps | select *"
fornecerá uma lista de propriedades de um processo que pode ser incluído em um filtro ou saída.