我想制作一个简单的Windows桌面小部件来打开和关闭互联网代理。
什么是更简单的方法?
答案 0 :(得分:11)
您可以使用Visual Basic脚本和批处理创建一个简单的“窗口小部件”。
示例:
proxy_off.bat
echo off
cls
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
change_shortcut_on
exit
proxy_on.bat
echo off
cls
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
change_shortcut_off
exit
change_shortcut_off.vbs
Set sh = CreateObject("WScript.Shell")
Set shortcut = sh.CreateShortcut("C:\Users\%USERNAME%\Desktop\Proxy.lnk")
shortcut.TargetPath = "C:\Users\%USERNAME%\Proxy Settings\proxy_off.bat"
shortcut.IconLocation = "C:\Users\%USERNAME%\Proxy Settings\Icons\on.ico"
shortcut.Save
change_shortcut_on.vbs
Set sh = CreateObject("WScript.Shell")
Set shortcut = sh.CreateShortcut("C:\Users\%USERNAME%\Desktop\Proxy.lnk")
shortcut.TargetPath = "C:\Users\%USERNAME%\Proxy Settings\proxy_on.bat"
shortcut.IconLocation = "C:\Users\%USERNAME%\Proxy Settings\Icons\off.ico"
shortcut.Save
说明:
完成!非常简单有效。 现在,您可以单击“Proxy.lnk”(桌面上的快捷方式)将代理设置为“打开”和“关闭”。
Proxy On Proxy Off
在图标网址上:http://s30.postimg.org/sgoerz0od/image.png
关闭图标网址:http://s13.postimg.org/9zha38zkj/off.png
答案 1 :(得分:0)
在Windows 10中,它表明在执行脚本后您需要打开代理设置窗口以使更改生效。 因此,添加以下几行:
proxy_off.bat
echo off
cls
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
change_shortcut_on
start /min ms-settings:network-proxy
taskkill /IM SystemSettings.exe /f
exit
proxy_on.bat
echo off
cls
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
change_shortcut_off
start /min ms-settings:network-proxy
taskkill /IM SystemSettings.exe /f
exit
自动柜员机的设置窗口不会最小化。
答案 2 :(得分:0)
虽然这个解决方案不会自行切换设置,但它可能是快速转到正确位置的捷径。
在 Windows 10 中,您可以在桌面上添加快捷方式,并在位置字段中输入:
ms-settings:network-proxy
这会将您定向到切换代理按钮。然后你只需要点击保存。