309 Commits (d51cb458c47451dd678c919edf97a250be01cc2b)
 

Author SHA1 Message Date
Danijel-James Wynyard ff2b79d475
Title Case the 'SilentlyContinue'
Makes it easier to read. Good practice too.
5 years ago
Richard Newton d6387e7275
Merge pull request #186 from NN---/patch-1
Fix command line
5 years ago
NN c94bf83e96
Fix command line 5 years ago
Richard Newton 528ed95909
Merge pull request #157 from me2345/patch-2
Removed duplicate OneConnect
5 years ago
Richard Newton 9bd52ca149
Merge pull request #156 from me2345/patch-1
Changed Credit to Credits
5 years ago
me2345 b8d1715af2
Removed duplicate OneConnect 5 years ago
me2345 27658a6e91
Changed Credit to Credits
Grammar fix
5 years ago
Richard Newton ca4f7fcc6a
Remove OneDrive env: variable
This resolves issue #149
5 years ago
Richard Newton 24de460dcd
Added removal of OneDrive Env: variable
This resolves issue #149
5 years ago
Richard Newton 44f7b8050f
Merge pull request #151 from jhaynesSITS/patch-1
Update Windows10Debloater.ps1
5 years ago
jhaynesSITS 4f26ab968b
Update Windows10Debloater.ps1
Change to prevent Microsoft Store app from being removed as part of the general debloat process
5 years ago
Richard Newton 409ba334a0
Removed Stop-EdgePDF from Windows10SysPrepDebloater 5 years ago
Richard Newton 4109280391
Added popup box for admin rights or not
When you run the script now, there is a choice if you want to run it as an Administrator or not, per issue #106
5 years ago
Richard Newton e786feb707
Updated GUI Button placements
Updated GUI Button placements and removed Fix Whitelisted Apps button
5 years ago
Richard Newton 1ebc0fd27b
Merge pull request #144 from aswinfrancis91/master
Update Windows10Debloater.ps1
5 years ago
Richard Newton 539640b504
Delete Windows10DebloaterGUIExperimental.ps1 5 years ago
Aswin Francis b27e70c19b Update Windows10Debloater.ps1
Fixed issue where revert wouldnt work
5 years ago
Richard Newton 2778bd51c0
Rename Windows10DebloaterGUIOLD.ps1 to Windows10DebloaterGUI.ps1 5 years ago
Richard Newton 530ce42844
Rename Windows10DebloaterGUI.ps1 to Windows10DebloaterGUIExperimental.ps1 5 years ago
Richard Newton d55e61de43
Update README.md 5 years ago
Richard Newton 4b5af129b1
Merge pull request #138 from jstnlth/customLists
Custom lists
5 years ago
Justin Luth fd96b8dd3c Xbox consistency: Blacklist and Whitelist the same things
DebloatAll whitelisted XBox apps since a lot of home users
want to play games. So, I added ALL of the XBox items to
the whitelist. Seems reasonable to me.

The blacklist removed several XBox components (since it
ignores the whitelist). Since some XBox components are
being removed, I added ALL of the XBox items to
the blacklist. Seems reasonable to me.

Or alternatively all XBox apps should be removed from
one of the lists, right?

I also confirmed that both GameOverlay and GamingOverlay
are both valid/installed in 1809.
5 years ago
Justin Luth 2536d873f6 remove --allUsers packages after -online packages have been removed
There seems to be some kind of dependency. -AllUsers packages
remove better when they are the last things to be removed.
5 years ago
Justin Luth 78830e4676 ProvisionedPackage uses DisplayName, not Name
Bug in original code. Since $_.Name is $null, it is always
considered to match, so nothing was ever removed.
5 years ago
Justin Luth e45c1ae76d speedup: batch appx removal (at cost of less user feedback)
This ESPECIALLY helps during a second run of the removal script,
where the result is almost instantaneous. Instead of
initializing the Remove-AppxPackage routine N times,
it only needs to do it once.

The downside is that we can't control feedback to the user on
the progress - and users frequently complain about hung
processes etc. There is SOME feedback coming from the
Remove-AppxPackage process - hopefully that will be enough.

I also ensured that -AllUsers packages were removed,
which was not done previously. If there was a reason for
NOT removing -AllUsers for the blacklist, then it can
be removed, but the DeBloat All function does remove
it, so to be consistent it seemed best to do the same here.

In terms of $NonRemovables - I had just added that but
on second thought, let the user be smarter than the computer.
The user now has the tools to detect if there are
conflicts with nonRemovables, so if they choose to
try to remove it anyway, don't prevent that.
The computer might be lying after all...
5 years ago
Justin Luth 445da40eaa whitelist: remove "Framework" - too risky for false-positive match
I expect this was intended to protect .NET Framework items.
That is already covered by the \.NET entry.
5 years ago
Justin Luth 92e3c35492 new nonremovables: from Windows 10 1709
Found by being unable to remove these despite running debloat
multiple times.
5 years ago
Justin Luth 15e3a204d4 whitelist cleanup: Microsoft.Paint3D is not a valid app name
At least as far as I can see.  Microsoft.Paint is the appx name for
Paint3D. I often confuse it with Microsoft.Print3D, and perhaps
that is what has happened here as well.
5 years ago
Justin Luth 7525a8e56c whitelist cleanup: XboxGameCallableUI is already a .NonRemovable 5 years ago
Justin Luth 8cc7cfafa0 whitelist cleanup: remove duplicated entries 5 years ago
Justin Luth 6dfb2f3c90 whitelisted apps: remove from commented out section in blacklist
Since they are listed and documented in the whitelist,
there isn't much value in identifying them in the blacklist anymore.
5 years ago
Justin Luth d3e4296603 Issue 84: CBSPreview is .NonRemovable - removed from blacklist.
https://github.com/Sycnex/Windows10Debloater/issues/84
5 years ago
Justin Luth 988ad90d64 Issues 68,107,110: Step 2: GUI to easily manage custom white/blacklist
https://github.com/Sycnex/Windows10Debloater/issues/107

1.) dynamic list of all installed apps, indicating current status.
    This enables instant verification of the effectiveness of
    running a debloat.
2.) white/blacklists regex/matching name retained. (Doesn't
    change to match the actual full/installed name.)
3.) indentifies NEW apps not in any black or white list.
4.) notes conflicts between NonRemovable/White/Black lists.

Potential enhancements
A.) I placed the save button at the top of the form because
    it was easiest to do. I don't know how to put it at the
    bottom of a dynamic-length form.
B.) Currently the white/blacklist are only updated in the
    running program when the saveList button is pressed.
    That means that all of the NEWly found bloats which
    are checked as bloatware will not be removed, and any
    changes the user makes also don't take effect until
    they are saved. I supposed an OK button could handle
    that (but then a cancel button would also be needed).
5 years ago
Justin Luth 5bbbf3ab8e Issues 68,110: Step 1: import user defined white/blacklists
Step 2 is to add a GUI.

This step 1 patch is the minimal requirement
for custom blacklist functionality.

https://github.com/Sycnex/Windows10Debloater/issues/68
https://github.com/Sycnex/Windows10Debloater/issues/110

1.) Make the black/whitelists global - so they can easily be
    modified from functions and forms (needed for step 2)
2.) Put the lists at the start of the script to make it
    easy for people to find and browse through the lists.
3.) One item per line to allow for better documentation.
    I added as many notes as I could. Documentating the
    reasons for black/white-listing is very valuable.
4.) Both whitelist and blacklist entries can be used as REGEXs.
    That can cause a bit of confusion perhaps, but probably
    necessary for flexibility. I turned ON case sensitivity
    to offset that a bit (using .NET as the prime example
    which otherwise falsely whitelists .NetworkSpeedTest)

In theory, these should be merely cosmetic changes and any
change in behaviour should be considered a bug.

5.) Provide the user a persistent, customizable white/blacklist.
    custom-lists.ps1 should NOT be added to GIT,
    so that a "git pull" does not change their custom settings.
    Step 2 will provide a GUI to easily create/edit this file.
6.) Tried to make NonRemovables dynamic - to auto-detect new
    packages that cannot be removed in future verisons of Windows.
    Non-dynamic fallback provided for older versions of Windows.
    (I developed  on 1709, which didn't have the .NonRemovable
    property, but tested on 1809 which does.)
5 years ago
Richard Newton 828f532caf
Update Windows10DebloaterGUI.ps1 5 years ago
Richard Newton fb64083821
Added UnpinStartMenuTiles button and code 5 years ago
Richard Newton 57f194be95
Added Enable and Disable Cortana buttons and code 5 years ago
Richard Newton 9940feae6c
Added revert changes button and code 5 years ago
Richard Newton 80db2ac5c7
Rename Windows10DebloaterGUI to Windows10DebloaterGUI.ps1 5 years ago
Richard Newton 84a669ff65
Added new GUI version of the Windows10Debloater. 5 years ago
Richard Newton 434c9f1ce6
Rename Windows10DebloaterGUI.ps1 to Windows10DebloaterGUIOLD.ps1 5 years ago
Richard Newton b090b92a44
Merge pull request #114 from Technerder/patch-1
Fixed two minor spelling mistakes
5 years ago
Richard Newton 0b3ad73c34
Merge pull request #121 from jtmy/patch-1
Fixed typo in CloudStore path
5 years ago
jtmy 9c0504ad7e
Fixed typo in CloudStore path
string in $CloudStore has a typo that lead the check to always false
5 years ago
Technerder 721e24c410
Fixed two minor spelling mistakes 5 years ago
Richard Newton 36159f876b
Fixed Uninstall OneDrive Functiion 5 years ago
Richard Newton 9828909389
Merge pull request #102 from Gray-0men/master
Added Dark Mode, Removed 3D Objects, Fixed OneDrive not closing explorer, Optimized Debloat all to be error free
5 years ago
Richard Newton cd59634879
Merge branch 'master' into master 5 years ago
Richard Newton 837994bf26
Removed .\ from taskkill 5 years ago
Richard Newton 381375349d
Merge pull request #103 from smoonlee/patch-2
Update Windows10SysPrepDebloater.ps1
5 years ago