Created
August 16, 2024 05:40
-
-
Save Jaykul/c921e9a7d8ec7e29f8d818570c174937 to your computer and use it in GitHub Desktop.
So I remember how to find an Appx application by (partial) name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Start-Application { | |
param($Name) | |
if (!($Command = @(Get-Command $Name -CommandType Application -ErrorAction Ignore)[0])) { | |
$Command = foreach ($Package in Get-AppxPackage *$Name*) { | |
($Package | Get-AppxPackageManifest).Package.Applications.Application.Executable | % { | |
Join-Path -Path $Package.InstallLocation -ChildPath $_ | |
} | Get-Command | |
} | |
} | |
& $Command | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment