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
Fix VPN Split-Tunnel Fail When Local LAN and VPN Use the Same Subnet (192.168.x.x Collision)
192.168.2.250 is the opz3 10.27.87.1 is the gateway of the vpn (figure this out after you connect)
route add 192.168.2.250 mask 255.255.255.255 10.27.87.1
๐ฝ
No comments:
Post a Comment