Add files via upload

This commit is contained in:
Belim 2023-02-17 16:22:34 +01:00 committed by GitHub
parent 258dc21eb8
commit 451bd8a9f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
[Info]
DisplayName=Reinstall all built-in apps
Publisher=Builtbybel - https://www.builtbybel.com
AboutScript=This mod will reinstall all built-in modern apps in a single step. This command will take a few moments and will reinstall all built-in apps. If you receive any error message, ignore it. You may need to restart the computer to take effect.
ScriptLanguage=PowerShell
ConditionScript=reinstall-inbox-apps.ps1
CreateNoWindow=false
ScriptParam=-noexit

View File

@ -0,0 +1 @@
Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}