欢迎来到代码驿站!

VBS

当前位置:首页 > 脚本语言 > VBS

管理网卡vbs脚本

时间:2021-08-01 08:54:50|栏目:VBS|点击:
'dislan.vbs   
  'usage:   cscript   /nologo   dislan.vbs         
  Const   ssfCONTROLS   =   3         
  sConnectionName   =   "本地连接"    
  sEnableVerb   =   "启用(&A)"   
  sDisableVerb   =   "禁用(&B)"    

  set   shellApp   =   createobject("shell.application")   
  set   oControlPanel   =   shellApp.Namespace(ssfCONTROLS)   

  set   oNetConnections   =   nothing   
  for   each   folderitem   in   oControlPanel.items   
 if   folderitem.name     =   "网络和拨号连接"   then   
  set   oNetConnections   =   folderitem.getfolder:   exit   for   
  end   if   
  next   

  if   oNetConnections   is   nothing   then   
  wscript.quit   
  end   if   

  set   oLanConnection   =   nothing   
  for   each   folderitem   in   oNetConnections.items   
  if   lcase(folderitem.name)     =   lcase(sConnectionName)   then   
  set   oLanConnection   =   folderitem:   exit   for   
  end   if   
  next   

  if   oLanConnection   is   nothing   then   
  wscript.quit   
  end   if   

  bEnabled   =   true   
  set   oEnableVerb   =   nothing   
  set   oDisableVerb   =   nothing   
  s   =   "Verbs:   "   &   vbcrlf   
  for   each   verb   in   oLanConnection.verbs   
  s   =   s   &   vbcrlf   &   verb.name   
  if   verb.name   =   sEnableVerb   then     
  set   oEnableVerb   =   verb       
  bEnabled   =   false   
  end   if   
  if   verb.name   =   sDisableVerb   then     
  set   oDisableVerb   =   verb       
  end   if   
  next   

    
  if   bEnabled   then   
  oDisableVerb.DoIt   
  else   
  oEnableVerb.DoIt   
  end   if   

  wscript.sleep   1000   

上一篇:URL 筛选小工具 提取网页中的链接地址

栏    目:VBS

下一篇:用vbs来探测端口的代码 不用注册winsock

本文标题:管理网卡vbs脚本

本文地址:http://www.codeinn.net/misctech/163076.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有