用于打开和关闭代理的Windows桌面小部件

时间:2014-11-03 05:30:49

标签: windows proxy widget

我想制作一个简单的Windows桌面小部件来打开和关闭互联网代理。

什么是更简单的方法?

3 个答案:

答案 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

说明:

  • 在“C:\ Users \%USERNAME%\”;
  • 中创建“代理设置”文件夹
  • 在“C:\ Users \%USERNAME%\ Proxy Settings \”中创建“图标”文件夹;
  • 在“C:\ Users \%USERNAME%\ Proxy Settings \ Icons”中插入“on.ico”(代理“On”的任何图标)和“off.ico”(代理“Off”的任何图标) ;
  • 在“C:\ Users \%USERNAME%\ Proxy Settings \”中创建上述文件(proxy_off.bat,proxy_on.bat,change_shortcut_off.vbs,change_shortcut_on.vbs);
  • 在桌面中创建一个快捷方式(Proxy.lnk)为“C:\ Users \%USERNAME%\ Proxy Settings \ proxy_off.bat”;

完成!非常简单有效。 现在,您可以单击“Proxy.lnk”(桌面上的快捷方式)将代理设置为“打开”和“关闭”。

Proxy On Proxy Off

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

这会将您定向到切换代理按钮。然后你只需要点击保存。