遠程批量修改電腦IP設定的批處理

來源:互聯網
上載者:User

網路IP設定遠處變更指令碼。

當網路整改需要大量IP修改的時候,可利用該指令碼變更(重啟電腦前不生效,可繼續工作),然後等下班時間修改交換器配置,次日所有電腦啟動後就可以用新IP工作了。

前提條件,知道網域系統管理員密碼或者所有電腦的本機管理員密碼(後者比較麻煩),客戶電腦為WIN2K或XP(防火牆開放135~139連接埠)。

一條命令批量修改:
for /l %i in (2,1,254) do net use //192.168.0.%i /user:admin@domain.com "password" && setipconfig 192.168.0.%i 10.0.0.%%i 255.255.255.0 10.0.0.1

setipconfig.bat內容如下: 複製代碼 代碼如下:@echo off
echo %4 | find "ECHO" >nul && echo usage: setipconfig remoteip newip newsubnet newgateway && goto :end
sc //%1 query RemoteRegistry | find "RUNNING" || (sc //%1 config RemoteRegistry start= demand && sc //%1 start RemoteRegistry)

:loop
sc //%1 query RemoteRegistry | find "RUNNING" && goto begin
ping 127.0.0.1 -n 3 >null
goto loop

goto end

:begin
for /f %%i in ('reg query //%1/HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Tcpip/Parameters/Interfaces ^| find "{"') do (
reg query //%1/%%i /v IPAddress | find "%1" && (
reg add //%1/%%i /v IPAddress /t REG_MULTI_SZ /d %2 /f ) && (
reg add //%1/%%i /v SubnetMask /t REG_MULTI_SZ /d %3 /f ) && (
reg add //%1/%%i /v DefaultGateway /t REG_MULTI_SZ /d %4 /f )

:end

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.