Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Deploy Microsoft Store apps

Hi

I am interested in knowing how all of you are deploying Microsoft Store apps? As far as I know it is not possible with PDQ?

1

Comments

1 comment
Date Votes
  • This is yes meant for Microsoft Store for Business + SCCM.

    But stuff like calculator, sticky notes etc is PowerShell Step as usual.

    Get-AppxPackage -allusers *windowscalculator* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

    Get-AppxPackage -allusers *stickynotes* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

    0