Skip to content

Instantly share code, notes, and snippets.

@Jaykul
Created August 16, 2024 05:40
Show Gist options
  • Save Jaykul/c921e9a7d8ec7e29f8d818570c174937 to your computer and use it in GitHub Desktop.
Save Jaykul/c921e9a7d8ec7e29f8d818570c174937 to your computer and use it in GitHub Desktop.
So I remember how to find an Appx application by (partial) name
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