zoukankan
html css js c++ java
设置IP的VBS
今天整理资料,看到一段同事上半年写的VBS。上半年有大量服务器要求换IP地址,由于是半夜,做个AT就省事多了。
strComputer
=
"
.
"
Set
objWMIService
=
GetObject
(
"
winmgmts:\\
"
&
strComputer
&
"
\root\cimv2
"
)
Set
colNetAdapters
=
objWMIService.ExecQuery _
(
"
Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE
"
)
strIPAddress
=
Array
(
"
218.5
.
"
)
'
IP Addr.
strSubnetMask
=
Array
(
"
255.255.255.224
"
)
'
子网掩码
strGateway
=
Array
(
"
218.5
"
)
'
网关
strGatewayMetric
=
Array
(
1
)
For
Each
objNetAdapter in colNetAdapters
errEnable
=
objNetAdapter.EnableStatic(strIPAddress, strSubnetMask)
errGateways
=
objNetAdapter.SetGateways(strGateway, strGatewaymetric)
Next
查看全文
相关阅读:
django-02框架-配置、静态文件和路由
django-01框架-工程搭建
python虚拟环境安装
linux推送文件到另一台主机
python2问题收集
python diff json方法
Linux expect详解
python scp到远端机器
shell远程执行命令(命令行与脚本)
git操作
原文地址:https://www.cnblogs.com/LCX/p/629249.html
最新文章
点击按钮页面滑到底部
自定义展示上传文件的名称,限制上传文件类型,并且获取物理路径
电脑端微信怎么双开
jQuery+drag.js 上传图片并且图片拖曳(标签可移动)
bootstrap做后台左侧菜单滑动展开,包含二级菜单点击展开三级菜单
VUE :keepAlive + Better-Scroll 点击列表进去详情页返回仍然在点击位置 我列表滑动用的框架是 Better-Scroll
input属性设置type="number"之后, 仍可输入e;input限制只输入数字
走向面向对象
初步走向面向对象
window下搭建rabbitmq环境(个人笔记)
热门文章
PowerDesigner之CDM、PDM、SQL之间转换
APK反编译工具与使用方法
28.Python list列表详解
27.Python列表(list)、元组(tuple)、字典(dict)和集合(set)详解
26.Python三目运算符(三元运算符)用法详解
25.Python逻辑运算符及其用法
24.Python比较运算符(关系运算符
23.Python位运算符详解
22.Python赋值运算符(入门必读)
MySQL数据库使用命令行备份|MySQL数据库备份命令
Copyright © 2011-2022 走看看