Tag: Apps
-

Automatically download and import applications to MDT
I finally had some time left so I wrote this small script to help me build my lab environment (and help me automate at customer sites) instead of building it manually. The script will not replace any hydration script instead it may interact with an existing MDT environment. It will download the source from a…
-
Reinstall Windows 10 Apps
Are you one of the IT pros that uninstall all or some of the built-in apps in Windows 10 and now changed your mind? This is how you remove them and get them back with PowerShell! Remove an app Get-AppxPackage *windowsmaps* | Remove-AppxPackage Remove the provisioned app Get-AppxProvisionedPackage -Online | ? {$_.DisplayName -like…