Sideloading metro apps for all users

I am having problems with my sideloaded metro app Doesnt seem to work anymore on any of my machines.

For the first few months, I originally installed my Metro app by first installing the apps signed certificate to the local machine root store (All OK), then running the following command logged on as the actual user I wanted the app run under.

Add-AppxPackage -Path "MyMetroApp.appx" -ForceApplicationShutdown

While this method sort of worked, it had two problems:

  1. I needed to manually renew the developer licence every 30 days running Show-WindowsDeveloperLicenseRegistration
  2. and I had to do this logged on as the user on the actual console, couldnt to this using remote PowerShell.

I want to install the app properly for all users without needing to keep renewing the developer license. I have now run the following to install the app for all users:

#Allow Trusted Apps
New-Item -Path "HKLM:\Software\Policies\Microsoft\Windows\Appx"
New-ItemProperty -Path "HKLM:\Software\Policies\Microsoft\Windows\Appx" -Name AllowAllTrustedApps -PropertyType DWord -Value 1

#Install the app for all users
Add-ProvisionedAppxPackage -Online -PackagePath "MyMetroApp.appx" -SkipLicense

This method even though it seemed to complete successfully, a couple of issues:

  1. theres no shortcut added to the start screen on one of my machines, so I cant open the app
  2. I am getting a message popup upon opening my app The app cant open: There's a problem with {app name}. Contact your system administrator about repairing or reinstalling it. [Close]. on another machine

Can someone please point me in right direction to get my app working again? I dont think its anything major, I think Im on the right track.


  • Edited by marckean 8 hours 10 minutes ago typo
February 15th, 2015 10:35pm

The main steps are detailed here: https://technet.microsoft.com/en-us/library/hh852635.aspx

It sounds like the app needs to be un-provisioned on your troublesome machine ?

Free Windows Admin Tool Kit Click here and download it now
February 16th, 2015 3:16am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics