Sycnex / Windows10Debloater

Script to remove Windows 10 bloatware.
MIT License
18.04k stars 2.04k forks source link

How to keep MicrosoftStickyNotes with Windows10DebloatSysprep #416

Open T0t032OO7 opened 3 years ago

T0t032OO7 commented 3 years ago

Hello all,

Tout est dans le titre... Il me semble que StickyNotes et Calculator sont conservés par défaut avec WindowsDebloatSysprep.ps1 (ligne 39 -40). Pourtant les bloatware sont désinstallé chez moi. Est-ce normal ?

Thx for response ;-)

tort-oise commented 2 years ago

You should be able to install both of them by running: Import-Module Appx Get-AppxPackage -allusers Microsoft.MicrosoftStickyNotes | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} Get-AppxPackage -allusers Microsoft.WindowsCalculator | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} in an administrator PowerShell ISE instance, after running the script.

tort-oise commented 2 years ago

I'm not 100% sure if this works, but it definitely should.

tort-oise commented 2 years ago

Also, if you've found a fix already, please close this issue.