Open Windows Explorer to "Quick Access", "This PC", or "Downloads:
- "Quick Access" & "This PC" seem to be documented but "Downloads" is not.
- Value = 1 (Quick Access)
- Value = 2 (This PC)
- 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:
Post a Comment