Hi,
If you need these apps to be available for all users, you can follow these steps to reinstall them:
- Open PowerShell as an administrator on the Windows 11 Multisession vm
- you can run the following commands to restore the calculator app and snipping tool for all users running the following commands:**
Get-AppxPackage -AllUsers *calc* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}**
and
Get-AppxPackage -AllUsers *snip* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
- After running these commands, the Calculator and Snipping Tool apps should be reinstalled and available to all users on the Windows 11 multisession VM.
Regards,
Murat
If the response helped, do "Accept Answer" and up-vote it