Windows Tweaks

Open Windows Explorer to "Quick Access", "This PC", or "Downloads:

  1. "Quick Access" & "This PC" seem to be documented but "Downloads" is not.
    1. Value = 1 (Quick Access)
    2. Value = 2 (This PC)
    3. Value = 3 (Downloads)

# Set File Explorer to open to "This PC" using the LaunchTo registry key
$explorerAdvancedPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
Set-ItemProperty -Path $explorerAdvancedPath -Name "LaunchTo" -Value 2

# Restart File Explorer to apply changes
Stop-Process -Name explorer -Force
Start-Process explorer


๐Ÿ‘ฝ

No comments: