Find Open Metro Apps using Powershell -
Find Open Metro Apps using Powershell -
i'm looking way programmatically find metro apps running on windows 8 pc using powershell. i'm sure there's easy way because these open apps shows in task manager under "apps" section. able find apps installed, not metro apps running.
i'm not aware of api identify metro apps, think might want:
function get-modernappprocess { $wildcard = "$env:programfiles\windowsapps\*" # native apps $wwa = "$env:windir\system32\wwahost.exe" # html+javascript apps get-process | where-object { $_.path -like $wildcard -or $_.path -eq $wwa} }
note might need run script admin permissions identify running processes.
powershell microsoft-metro windows-8.1
Comments
Post a Comment