2010-01-26 44 views

回答

1

我個人會看看Powershell來做到這一點。我發現了一篇關於如何改變你的ip設置的文章。

Get-WmiObject -class win32_networkadapterconfiguration | where-object -filterscript { $_.IPEnabled -eq ‘True’ -and $_.ServiceName -eq ‘E100B’ } | foreach-object -process { $_.EnableStatic(’192.168.1.200′,’255.255.0.0′) } 

Author of this code's original post

0

我會利用Netsh(谷歌它)

0

感謝您的鏈接回來。 下面是一些信息可能會有所幫助:

+0

因此不真的很感謝單獨發佈鏈接。 – 2012-10-11 10:07:12