mirror of
https://github.com/Sycnex/Windows10Debloater.git
synced 2024-11-15 12:13:13 +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).
9 lines
372 B
PowerShell
9 lines
372 B
PowerShell
# "This Computer"-Button starts the explorer on the following path:
|
|
# LaunchTo Value Description
|
|
# 1 Computer (Harddrives, Network, etc.)
|
|
# 2 Fast Access
|
|
# 3 Downloads (The Download-Folder)
|
|
|
|
Write-Host "Set Explorers Entry Point"
|
|
$LaunchTo = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
|
Set-ItemProperty $LaunchTo LaunchTo -Value 1 |