埃德蒙顿华人社区-Edmonton China

 找回密码
 注册
查看: 2644|回复: 0

Windows 7下,脚本启用或者关闭网卡的方法

[复制链接]
鲜花(3) 鸡蛋(1)
发表于 2011-3-4 21:58 | 显示全部楼层 |阅读模式
老杨团队,追求完美;客户至上,服务到位!
方法一:NetSH大法~
' @0 m- T2 b' w7 L采用下列Netsh脚本5 H7 X; E7 J$ U3 R9 S
interface
* I! l+ N; q2 x$ iset interface name="Local Area Connection" admin=ENABLED/DISABLED5 f8 B+ I, p3 ?1 g8 w4 E, J, K

" |4 K- m8 m* [/ g7 |, {1 w# b方法二:Powershell+WMI大法
# s8 y: v6 n9 H- ^2 j# b3 ?1 m; {$adapter = get-wmiobject Win32_NetworkAdapter -filter "NetConnectionID='Local Area Connection'"  r& c4 y5 A* X# ]  i. `
$adapter.Disable()
& f; H3 H0 y7 l* k* m# w$ U  a6 ^3 U* W+ X* g
同理可以VBS+WMI大法~
* e1 t. ]2 I6 B1 y, T9 \这个就不说了~没啥意义了~
& i: J2 V6 n7 F& w7 q- F5 I; L3 z0 L5 J6 {. z/ e* s
其中有一个非常重要的问题就是权限控制问题!
4 ]% t9 ^6 l( V: I7 w6 ^Windows 7的UAC很严格,不能像WinXP里那样随意修改系统设置而不通知用户。5 B1 `4 n0 P0 }. M
如果不赋予脚本执行环境以Administrative权限的话,脚本会执行失败,WMI返回码为05,Netsh报错:“An interface with this name is not registered with the router.”) }* L  f+ c8 g5 ]
因此在启动Netsh或者Powershell时需要指定 Administrative权限,可通过右键菜单Run as Administrator实现。0 L* g9 T- \& ~+ E' G* P) n1 @
然后会出现UAC,Allow即可~% E) [! \8 J' T
由于UAC权限具有继承性,即一个具有Administrative权限的Process启动的Process默认是具有Administrative权限的(除非显式的禁止继承)~* I: R( Q, n/ j: U7 @
因此可以通过启动一个有Administrative的Cmd或者Powershell的Shell来让脚本具有Administrative权限~
. A' O- v9 n: ?) O9 g
, v' d; V/ n; C该方法仅在Win7下测试通过~WinXP下不通过~2 u! {( _' j, Q& J& K; d" ?3 `: @
似乎原因是由于WinXP的WMI Class不支持Enable和Disable方法造成的~具体解决方案未知。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系我们|小黑屋|手机版|Archiver|埃德蒙顿中文网

GMT-7, 2025-11-29 19:06 , Processed in 0.128192 second(s), 9 queries , Gzip On, APC On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表