In Windows 10 1909 VMware OST optimized image the end-users report they cannot open the following three built-in UWP windows application.
- Microsoft Calculator
- Microsoft Photos
- Microsoft Edge browser
When the end-users try to open any of the three applications, nothing would happen – No error messages or pop-ups. The application doesn’t launch.
Environment Details
VMware Horizon 7.11
VMware App Volumes 2.18.5
VMware Dynamic Environment Manager 9.10
Process of elimination
- The AppX package for (Calc, Photos and Edge) did exist in the base operating system
- We can launch all the three applications within the optimized golden image template.
- We were running the VMWare OSOT tool with the default VMware Windows 10 template. No additional customization or options selected.
- One thing was evident the base template was working fine. The suspicion was around AppStack – App Volumes (We disabled the AppStacks/Writable Delivery – Same issue observed) or Dynamic Environment Manager causing the application from launching
- We were running out of troubleshooting ideas
Resolution
Upon searching, I came across this community page – https://communities.vmware.com/t5/Horizon-Desktops-and-Apps/Windows-10-UWP-Applications-and-Taskbar/m-p/523086 and it outlined a solution of re-registering the UWP AppX package for the built-in application. We tried the fix in the DEV environment and it worked. Further it was replicated to the production setup.
Step 1: A Powershell script to register the AppX packages
Get-AppxPackage -allusers *windowscalculator* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”} Get-AppxPackage -allusers *windows.photos* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”} Get-AppXPackage -AllUsers *edge* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml"}
Step 2 : Create a Dynamic Environment Manager – Logon Tasks
We selected to put the Powershell script within the UEM Share as the end-users have the read- access.

I hope you will find this information useful if you encounter the issue. If you manage to tweak or improvise further on this solution, please don’t forget to keep me posted.
Thanks,
Aresh Sarkari
One Response to “Horizon VDI – Calculator – Photos – Edge Not launching for end-users – Windows 10”