mirror of
https://github.com/Sycnex/Windows10Debloater.git
synced 2025-03-14 02:25:31 +00:00
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
|