【PC】通过BAT批处理来更改IE代理设置
生活随笔
收集整理的這篇文章主要介紹了
【PC】通过BAT批处理来更改IE代理设置
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
目錄
一、緣由
二、處理
三、附錄
一、緣由
由于每次用完代理切換回公司內(nèi)網(wǎng)的時候,都要重新去設(shè)置IE的代理設(shè)置(設(shè)置成下圖),每次都是同樣的步驟,非常浪費(fèi)時間
二、處理
就寫了個BAT直接代替我做這些步驟~代碼如下
@echo offecho 【還原IE代理設(shè)置】::設(shè)置自動檢測配置 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" /v DefaultConnectionSettings /t REG_BINARY /d 46000000020000000900 /f::關(guān)閉使用代理服務(wù)器 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /fecho 正在刷新設(shè)置……ipconfig /flushdnspause附一個將設(shè)置改回來的代碼
@echo offecho 【IE代理設(shè)置】::關(guān)閉自動檢測設(shè)置 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" /v DefaultConnectionSettings /t REG_BINARY /d 46000000030000000100 /f::打開使用代理服務(wù)器 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f::設(shè)置代理服務(wù)器和端口 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "127.0.0.1:1080" /f::設(shè)置跳過本地地址 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "10.*.*.*;192.168.*.*;<local>" /fecho 正在刷新設(shè)置……ipconfig /flushdnspause三、附錄
1.關(guān)于如何使用BAT
https://blog.csdn.net/xiang0731/article/details/107231988
2.關(guān)于IE的設(shè)置可以在注冊表這里找到~
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
總結(jié)
以上是生活随笔為你收集整理的【PC】通过BAT批处理来更改IE代理设置的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: crh寄存器_寄存器-相关博客帖子 -
- 下一篇: 费马大定理n=3时的欧拉证明,x^3+y