请大侠们给写个。P处理我是外行,只能照猫画虎的改改作者: oym2007 时间: 2007-11-6 11:44
ECHO 设置IP...
net stop dhcp
rundll32 netshell.dll HrRenameConnection
netsh add helper ifmon.dll
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.1
netsh int ip set dns 本 static 61.187.98.3
netsh int ip add dns 本 61.187.98.6
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.1
netsh int ip set dns 本 static 61.187.98.3
netsh int ip add dns 本 61.187.98.6
rem 在PE中要设置两次,成功,所以下面的和上面的相同
net start dhcp
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.1
netsh int ip set dns 本 static 61.187.98.3
netsh int ip add dns 本 61.187.98.6
netsh int ip set address 本 static 192.168.1.108 255.255.255.0 192.168.1.11
netsh int ip set dns 本 static 61.187.98.3
netsh int ip add dns 本 61.187.98.6作者: 阿非 时间: 2007-11-6 21:24
上面的这个我有,改不了机名,绑定不了网卡
请大侠再次出手作者: 阿非 时间: 2007-11-7 08:16
搜索查阅N多,整理如下,在我的机子上测试成功
echo off
rem 关闭动态IP服务,加快设置速度
net stop dhcp
rem 设置静态IP,网关
netsh interface ip set address "本地连接" static addr=192.168.1.8 mask=255.255.255.0 gateway=192.168.1.1 auto
rem 设置首选DNS服务器
netsh interface ip set dns "本地连接" static 61.134.1.4
rem 设置备用DNS服务器
netsh interface ip add dns "本地连接" 71.134.1.4
rem 启动动态IP服务
net start dhcp
rem 导出相应注册表到临时文件,修改计算机名
echo Windows Registry Editor Version 5.00 >ComputerName.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName] >>ComputerName.reg
rem 用变量"%ComputerName%"去替换实际的机器名
echo "ComputerName"="%ComputerName" >>ComputerName.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] >>ComputerName.reg
rem 用变量"%ComputerName%"去替换实际的机器名
echo "NV Hostname"="%ComputerName" >>ComputerName.reg
echo "Hostname"="%ComputerName" >>ComputerName.reg