I have run VMware os optimization tool in windows 10. VMware OS Optimization Tool has removed all Windows Store apps (Calculator, Sticky Note, Web Extensions).
Apps are not showing even after rolling back the optimization tool.
How to install offline calculator and sticky note package.
OS version on parent image with build number - Windows 10, version 21h2 , OS build 19044.1415
VMware DEM standard 10.2.0.976
Connection Server (2103) - 8.2.0 build - 17736878
Horizon Agent - 8.2.0
Hello:
Get-AppxPackage -allusers *windowscalculator* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
Get-AppxPackage -allusers *sticky* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
You may try this command on Powershell
I'm encountering the same issue.
Powershell command Add-AppxPackage register the App in the current user.
You can use the command Add-ProvisionedAppxPackage -online -packagePath to add the missing packages on the new logged on users.
