Windows 11 AVD

Nivenl Peter 16 Reputation points
2023-06-28T06:01:48.47+00:00

Hi, I was deploying Windows 11 multisession with M365 Apps and was using VMware Horizon optimization tool. After running the optimization tool, I realized some apps were missing like the common user used to use such as calculator, snipping tool and etc. Reinstalled it using the local admin frm MS store but upon logging in to the individual user account, we have install for that user. However when I query winget list it show snipping tool already installed. May I know how can we reinstall for all users like calculator and snipping tool

Regards,

Niven Peter

Azure Virtual Desktop
Azure Virtual Desktop
A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.
Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Murat-4795 475 Reputation points
    2023-06-28T12:19:15.8166667+00:00

    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

    2 people found this answer helpful.

  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Travis Lamming 6 Reputation points
    2023-12-15T17:41:42.5+00:00

    Thank you, this was helpful!

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.