We have scenario where we need to fetch all the values of the application running in the Task Manager.
We are so far able to get single instance of the application (Suppose 4 IE is opened so we get just 1 IE).
get-process | where {$_.MainWindowHandle -ne 0} | Select name, mainWindowTitle.
Please help me how can I get all the application list of task manager.