Summary: Learn how to use Windows PowerShell to easily find start apps.
How can I use Windows PowerShell to find a particular app amid the clutter of small app icons on my
Windows 8.1 device?
Use the Get-StartApps cmdlet and filter on the name—
for example, to find an application that begins with the letter G:
Get-StartApps | where name -like "g*"