UNIX には ifconfg がある.Windows には netsh がある.

netsh.exe でコマンドラインから IP アドレスを変更出来る.
ちょっと違うのは、他の Windows マシンのコントロールもできること.

netsh

netsh は、実行中のコンピュータのネットワーク構成を表示または修正するコマンド ライン スクリプトユーティリティです。ローカルでもリモートでも使用できます。パラメータを付けずに netsh を実行すると、Netsh.exe コマンドプロンプト (netsh>) が表示されます。

構文

netsh[-aAliasFile] [-cContext] [-rRemoteComputer] [{NetshCommand | -fScriptFile}]

Here's a little secret - you may already know that a quick and easy way to set your IP address without having to type it into that silly GUI is to use NETSH.EXE:

netsh int ip set addr lo static 192.168.0.23 255.255.255.0 192.168.0.1 1
netsh int ip set dns lo static 4.2.2.4 primary
netsh int ip set addr lo dhcp
netsh int ip set dns lo dhcp

Windows 用の ifconfig もあるらしい.

ifconfig for Windows: saves me from having to remember if I'm if'ing or ip'ing...

if you want to play around with ifconfig - you can get it here.
if you want to play with netsh - hey - it's included in windows ;)