Powershell Pro's Unite! (help reinstalling default app)

klepp0906

Gawd
Joined
Jul 1, 2013
Messages
594
So I got a little overzealous with my bloatware pruning and have managed to rectify 99% of it. The glaring item/entry I can not re add is the Xbox Game Speech Window.

The package is Microsoft.XboxSpeechToTextOverlay

Anyone care to walk this simpleton through the proper commands to powershell it back into place?
001.png
 
Try this from an elevated command prompt:

PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *XboxSpeechToTextOverlay*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
 
Back
Top