Thursday, April 15, 2021

PowerShell Scripts

 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