ab2d3ed8cd
Windows tray "switch" that routes all Claude MSIX-app traffic through a SOCKS5/HTTP proxy or a VLESS+Reality tunnel (embedded Xray-core), with a fail-closed Windows Firewall lock. Runs de-elevated so it launches the user's normal Claude instance; elevates only for firewall changes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
7 lines
423 B
Plaintext
7 lines
423 B
Plaintext
' Double-click launcher for the Claude Proxy GUI (no console window).
|
|
' The GUI self-elevates (one UAC prompt) so firewall toggling needs no repeated prompts.
|
|
Dim sh, here
|
|
Set sh = CreateObject("WScript.Shell")
|
|
here = Left(WScript.ScriptFullName, InStrRev(WScript.ScriptFullName, "\"))
|
|
sh.Run "powershell.exe -NoProfile -ExecutionPolicy Bypass -WindowStyle Hidden -STA -File """ & here & "claude-proxy-gui.ps1""", 0, False
|