改ip
经常换地方上网,总改这些很麻烦,直接写三个bat,点一下就换了。需要管理员权限。之前用python的wmi写过,但是没起作用。
ip:10.10.41.15
子网掩码:255.255.255.0
网关:10.10.41.254
netsh interface ip set addr 本地连接 static 10.10.41.15 255.255.255.0 10.10.41.254 1
每10秒改一次ip
从10.10.41.10一直改到10.10.41.240,每10秒改一次
for /l %%i in (10,1,240) do netsh interface ip set addr 本地连接 static 10.10.41.%%i 255.255.255.0 10.10.41.254 1 & choice /t 10 /d y /n >nul
时间: 2024-11-07 00:27:40