Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow selection/addition of Windows Store Apps #95

Open
kimmknight opened this issue Sep 6, 2023 · 1 comment
Open

Allow selection/addition of Windows Store Apps #95

kimmknight opened this issue Sep 6, 2023 · 1 comment
Labels
enhancement New feature or request

Comments

@kimmknight
Copy link
Owner

As mentioned in issue #89, there are ways to retrieve a list of Windows store apps. Perhaps RemoteApp Tool could have an Add Windows Store App button that brings up a list and lets you select one to be added.

@kimmknight kimmknight added the enhancement New feature or request label Sep 6, 2023
@gengyj16
Copy link

It doesn't seem to always end with "!App". One way to list all the app names is as follows.
Reference

$installedapps = get-AppxPackage
foreach ($app in $installedapps)
{
    foreach ($id in (Get-AppxPackageManifest $app).package.applications.application.id)
    {
        $app.packagefamilyname + "!" + $id
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants