Board logo

标题: [系统相关] 怎么用bat判断系统是否开启了代理? [打印本页]

作者: 伊丽莎白鼠    时间: 2024-1-22 04:26     标题: 怎么用bat判断系统是否开启了代理?


如题有大佬给个代码示例吗,万分感谢!
作者: czjt1234    时间: 2024-1-22 05:47

监视注册表试试?
作者: ygqiang    时间: 2024-1-22 08:43

本帖最后由 ygqiang 于 2024-1-22 08:45 编辑

win11-代理服务器设置。(设置-网络和Internet-代理-手动设置代理)
192.168.22.11,端口8000
  1. reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyEnable" /t REG_DWORD /d "1" /f
  2. reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "ProxyServer" /t REG_SZ /d "192.168.22.11:8000" /f
复制代码

作者: ppll2030    时间: 2024-1-22 09:21

  1. @echo off
  2. for /f "tokens=2,*" %%i in ('reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable') do set a=%%j
  3. if "%a%" == "0x0" (echo.&echo 代理关闭) else (
  4. echo.&echo 代理打开
  5. )
  6. pause>nul
复制代码

作者: 伊丽莎白鼠    时间: 2024-1-22 23:39

回复 4# ppll2030


    大佬我测试这个脚本,不管代理开没开他都提示代理已关闭
作者: ppll2030    时间: 2024-1-23 08:11

回复 5# 伊丽莎白鼠

我这个在win10下测试通过。
你可以打开CMD,然后输入下面命令查看数值是什么,把0x0改成你系统显示的即可。
reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable
作者: louissgd    时间: 2024-1-23 11:15

本帖最后由 louissgd 于 2024-1-23 11:17 编辑

判断是否开启代理并自动读取地址+端口
  1. @echo off
  2. for /f "tokens=3* delims= " %%a in ('reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable') do set aa=%%a
  3. if "%aa%"=="0x1" goto Proxyon
  4. :Proxyoff
  5. echo 未开启代理
  6. pause&exit
  7. :Proxyon
  8. for /f "tokens=3* delims= " %%b in ('reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer') do set pa=%%b
  9. echo 已开启代理 地址是 "http://%pa%/"
  10. pause
复制代码

作者: 伊丽莎白鼠    时间: 2024-1-24 02:50

回复 6# ppll2030


   
大佬你看一下 cmd 也显示 0x0 但是不管代理开启还是关闭他都是提示 0x0 我系统也是win10 大佬救一下
作者: 伊丽莎白鼠    时间: 2024-1-24 02:52

回复 7# louissgd


    感谢大佬但是就是不知道为什么我系统不管是开启还是关闭代理cmd都是显示 0x0
我不知道为什么,系统是win10专业版
作者: Batcher    时间: 2024-1-24 12:25

回复 1# 伊丽莎白鼠


用这个软件试试能否找到启用代理、关闭代理对应的是哪个注册表键值
http://bbs.bathome.net/thread-68009-1-1.html
作者: newswan    时间: 2024-1-24 12:37

netsh 也可以
  1. netsh winhttp
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2