mirror of
https://github.com/Sycnex/Windows10Debloater.git
synced 2024-11-19 03:25:37 +00:00
baff27791c
Reworked the ReadMe.md to make it easier to read (PR #237 by @JimmyCushnie ). Also added the easy to start batch-files (PR #212 by @Woomy4680-exe ). Additionally added some individual scripts to deactivate AeroShake, deactivate and delete the "Last Used Files and Folders" and to change the Explorer LaunchTo (Entry Point) to Computer (like in Windows XP).
14 lines
637 B
PowerShell
14 lines
637 B
PowerShell
$Keys = @(
|
|
|
|
# Deactivate showing of last used files
|
|
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HomeFolderDesktop\NameSpace\DelegateFolders\{3134ef9c-6b18-4996-ad04-ed5912e00eb5}"
|
|
|
|
# Deactivate showing of last used folders
|
|
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HomeFolderDesktop\NameSpace\DelegateFolders\{3936E9E4-D92C-4EEE-A85A-BC16D5EA0819}"
|
|
)
|
|
|
|
#This writes the output of each key it is removing and also removes the keys listed above.
|
|
ForEach ($Key in $Keys) {
|
|
Write-Output "Removing $Key from registry"
|
|
Remove-Item $Key -Recurse
|
|
} |