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"
No comments:
Post a Comment
Feel free to leave a comment! If you have any information that you think should be included, please do so here and I'll get it added in.