码迷,mamicode.com
首页 > 系统相关 > 详细

powershell 实现自动IE代理设置

时间:2016-03-24 20:03:57      阅读:994      评论:0      收藏:0      [点我收藏+]

标签:

#IE代理设置函数
#$proxy_enable (0:禁用IE代理 1:启用IE代理)
#$proxy_server (192.168.1.111:8080)
Function F_Set_Proxy([string]$proxy_enable,[string]$proxy_server)
{
#是否启动IE代理
if($proxy_enable -eq "0")
{
#禁用IE代理
Set-ItemProperty -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name "ProxyEnable" -value 0
}
else
{
#启用IE代理
Set-ItemProperty -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name "ProxyEnable" -value 1
}
#设置IE代理的ip和端口
Set-ItemProperty -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name "ProxyServer" -value $proxy_server
}


#保存脚本运行前的IE代理的设置状态
#保存脚本运行前的IE代理是否可用
$proxy_enable_backup=Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyEnable
#保存脚本运行前的IE代理的ip和端口
$proxy_server_backup=Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyServer


#设置当前脚本使用的IE代理
F_Set_Proxy "1" "192.168.1.111:8080"

#还原到脚本运行前的IE代理的设置
F_Set_Proxy $proxy_enable_backup.ProxyEnable $proxy_server_backup.ProxyServer

powershell 实现自动IE代理设置

标签:

原文地址:http://www.cnblogs.com/whitecf/p/5316617.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!