Commit Graph

68 Commits

Author SHA1 Message Date
Richard Newton
cf2591d784
Fix formatting for ListPanel
I fixed the formatting for the ListPanel so that it fits properly in the window and is a bit easier to read with a slightly larger font. Tested to ensure list saves as well.
2021-03-20 18:55:03 -04:00
Richard Newton
ac2a4315b1
Refixed bug related to saving custom lists
Accidentally reintroduced bug with the bing search addition that affected saving the custom lists. It is now fixed.
2021-03-20 18:17:49 -04:00
Richard Newton
a3091bf16e
Disable BingSearch in Start Menu Search
This adds in the feature to disable Bing Search for issue #326
2021-03-20 13:56:40 -04:00
Richard Newton
01770eb21d
Fixed CustomList not saving
The customlist was not saving as explained in issue #345. The issue was that on lines 529 and 537 it was set as $CustomizeForm.Controls when it should have instead been $ListPanel.Controls. Verified that the fix works.
2021-03-19 20:16:00 -04:00
Richard Newton
6e8c7362c7
Script will now create a restore point
The ability for the script to create a system restore point has been added before the GUI itself is shown. It is automatically created at this time as well.
2021-03-13 00:54:29 -05:00
Richard Newton
c12528a089
Rename Whitelist/Blacklist to Allowlist/Blocklist
This resolves issue #348
2021-03-13 00:20:33 -05:00
Richard Newton
e658a04002
Merge pull request #286 from tlejolivet/master
New simple designed UI for a better look !
2021-03-12 23:03:59 -05:00
David Wright
77c218929e Update UnpinStart function for GUI/CLI scripts 2021-02-05 11:11:31 -06:00
tlejolivet
e5eb038725 Correction of the window title 2020-10-05 09:38:30 +02:00
tlejolivet
890c318872 New simple designed UI for a better look ! 2020-08-18 16:53:11 +02:00
Alexander
e0ecc9e381
Added Connect app 2020-04-28 10:24:09 +02:00
John Neijzen
1d5137e878
Same Cloudstore fixes 2020-03-15 08:53:27 +08:00
Richard Newton
89f3dbd4da
Added Microsoft.MixedReality.Portal to whitelistedapps
This should resolve issue #195
2019-11-28 13:41:45 -05:00
Richard Newton
ba61ea102a
Added Nvidia to whitelist 2019-11-28 13:39:27 -05:00
Danijel-James Wynyard
08eaf9b694
Major code formatting clean up. Repaired GUI.
- GUI previously not display
- Style of some code updated to reflect body and readability
- Updated the `string` types within double-quote to be within curly braces for interpreter
2019-11-18 22:51:12 +11:00
Danijel-James Wynyard
ff2b79d475
Title Case the 'SilentlyContinue'
Makes it easier to read. Good practice too.
2019-11-18 22:37:00 +11:00
Richard Newton
24de460dcd
Added removal of OneDrive Env: variable
This resolves issue #149
2019-06-13 19:44:46 -07:00
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
2019-06-09 22:37:21 -07:00
Richard Newton
e786feb707
Updated GUI Button placements
Updated GUI Button placements and removed Fix Whitelisted Apps button
2019-06-09 22:05:08 -07:00
Richard Newton
2778bd51c0
Rename Windows10DebloaterGUIOLD.ps1 to Windows10DebloaterGUI.ps1 2019-06-01 20:56:57 -07:00
Richard Newton
530ce42844
Rename Windows10DebloaterGUI.ps1 to Windows10DebloaterGUIExperimental.ps1 2019-06-01 20:56:41 -07:00
Richard Newton
4b5af129b1
Merge pull request #138 from jstnlth/customLists
Custom lists
2019-06-01 20:42:15 -07:00
Justin Luth
d3e4296603 Issue 84: CBSPreview is .NonRemovable - removed from blacklist.
https://github.com/Sycnex/Windows10Debloater/issues/84
2019-05-31 20:44:37 +03:00
Richard Newton
828f532caf
Update Windows10DebloaterGUI.ps1 2019-05-24 19:22:28 -07:00
Richard Newton
fb64083821
Added UnpinStartMenuTiles button and code 2019-05-12 11:41:47 -07:00
Richard Newton
57f194be95
Added Enable and Disable Cortana buttons and code 2019-05-12 11:31:36 -07:00
Richard Newton
9940feae6c
Added revert changes button and code 2019-05-12 11:22:28 -07:00
Richard Newton
80db2ac5c7
Rename Windows10DebloaterGUI to Windows10DebloaterGUI.ps1 2019-05-12 11:16:01 -07:00
Richard Newton
434c9f1ce6
Rename Windows10DebloaterGUI.ps1 to Windows10DebloaterGUIOLD.ps1 2019-05-12 11:14:21 -07:00
Damian
4e1618cb4f Update Windows10DebloaterGUI.ps1
Removed DebloatNoBlacklist since it was the exact same as DebloatAll
2019-03-13 10:07:45 -04:00
Damian
f269dbbee3 Fixed Optimization to skip NonRemovable apps that were always attempted
NonRemovable apps were still getting attempted in the debloat all functions that were always throwing errors that were just hanging on initalizing floating above the powershell window running.

Fixed Prompt position after the .NET prompt that wouldn't show the Do you want to power down Prompt

Fixed the Write-Host saying you didn't want to remove one drive after selecting 'no' to not unpin tiles.
2019-03-05 22:19:03 -05:00
Damian
83fd597a00 Added Dark Mode button(s) to the GUI
Also added a small countdown to the admin check
2019-03-05 01:07:40 -05:00
Damian
2c587f3fb4 Optimized DebloatAll and slimmed code more
added ' -and $_.NonRemovable -eq "False"' to the Get-AppxPackage code lines to help sort through apps that can't get deleted and just get skipped anyways.

Onedrive fixes and code reuse from GUI moved over to interactive script code.

Removed [CmdletBinding()] and Param() that wasn't being used.

Fixed Write-Output to Write-Host

Added ' -and $_.NonRemovable -eq "False"' to GUI code as well in the DebloatAll function
2019-03-04 23:19:11 -05:00
Damian
fea116fd78 Fixed GUI errors and Admin Check
Started out adding a new feature about removing 3D objects from explorer in This PC but I found a lot of code re use and found bugs when I went to add it to the GUI

Fixed -Verbose being used where Write-Host is already being used.

Fixed Admin check so it works, it was removed last year for some reason after I added it when I started adding my code to this project from my old debloat.

Fixed some code reuse where  -ErrorAction SilentlyContinue is called multiple times even after it's already a global settings set in the start of the function.

Removed -Name from where it just wasn't needed to slim down file size.

Fixed the OneDrive button so it workes without errors and finds everything the way it should.

Shortened .NET 3.5 section to slim down file size

Fixed Disable Windows Store Automatic Updates code so it runs without errors and is shorter.
2019-02-27 23:39:11 -05:00
Richard Newton
15770fad45
Added button to install .NET 3.5
I added a button to the optional fixes to give the ability to install .NET 3.5
2019-02-25 19:33:50 -08:00
Richard Newton
7cf21c8e23
Update Windows10DebloaterGUI.ps1 2019-02-23 14:31:02 -08:00
Richard Newton
1888b0d07a
Added Framework to whitelist
I am hoping that this resolves the issue of the script killing the ability to install Office 2016+
2019-02-23 14:30:32 -08:00
Richard Newton
c09b8185d8
Update Windows10DebloaterGUI.ps1 2019-02-23 14:28:00 -08:00
Richard Newton
fac6c2af80
Update Windows10DebloaterGUI.ps1 2019-02-16 20:09:20 -08:00
Richard Newton
1d697d2fe0
Added UnpinStart Button and Function
I added a new UnpinStart Button and Function (Function provided by Vikingat-RAGE)
2019-02-16 20:05:01 -08:00
Richard Newton
b473c0aa00
Added Slack to whitelist
This should resolve issue #83
2019-02-16 19:01:14 -08:00
Richard Newton
ff981d7f85
Added "*Windows.CBSPreview*" for removal
This should resolve issue #84
2019-02-16 18:58:32 -08:00
Richard Newton
364978048a
Added "*Dolby*" to be removed by script
#78
2019-02-09 14:47:23 -08:00
Richard Newton
0a9610da58
Update Windows10DebloaterGUI.ps1 2019-02-02 20:55:06 -08:00
Richard Newton
66af8e6597
Update Windows10DebloaterGUI.ps1 2019-01-25 20:41:05 -08:00
Richard Newton
bacdcc1c5e
Added WindSynthBerry & MIDIBerry to whitelist 2019-01-25 20:40:30 -08:00
Richard Newton
e54110decc
Update Windows10DebloaterGUI.ps1 2019-01-25 20:35:58 -08:00
Richard Newton
63738f772e
Updated regex whitelist
Updated regex whitelist per #68
2019-01-25 20:35:35 -08:00
Richard Newton
770ccd0aca
Update Windows10DebloaterGUI.ps1 2019-01-25 20:23:12 -08:00
Richard Newton
5f726f50dc
Added code to have script self elevate to administrator
I added code that checks if the script was run as an Administrator, and if not then it self elevates with a UAC prompt asking if it can be run as an Administrator. The script works best when run as an Adminstrator.
2019-01-25 20:22:42 -08:00