December 17th, 2013

PowerTip: Use PowerShell to List App Background Task Info

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to list app background task information.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find performance information about app background tasks on my laptop running Windows 8.1?

Hey, Scripting Guy! Answer Open Windows PowerShell with Admin rights. Use the Get-AppBackgroundTask cmdlet,
          and include the complete name of the app and the –IncludeResourceUsage switch.
          Select the PerfInfo property and expand it.

Get-AppBackgroundTask -PackageFamilyName Microsoft.SkypeApp_kzf8qxf38zg5c -IncludeResourceUsage |
select –expand perfinfo

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.