Get a list of running applications on windows 10
From Powershell
Get-Process | Where-Object { $_.MainWindowTitle } | Format-Table Name,Mainwindowtitle -AutoSize
or from windows CMD prompt
powershell "Get-Process | Where-Object { $_.MainWindowTitle } | Format-Table Name,Mainwindowtitle -AutoSize"