>>294

以下のスクリプトを ipconfig.vbs などのファイル名で保存したあと
実行してみてください。Win9x系、W2K系対応。
(ちなみに自分が使ってるスクリプトです)

Set WshShell = CreateObject("WScript.Shell")
strFile = "%TEMP%\ipconfig.log"

On Error Resume Next
WshShell.Run "command.com /c ipconfig.exe /all > " & strFile, 0, True
WshShell.Run "cmd.exe /c ipconfig.exe /all > " & strFile, 0, True

WScript.Sleep 100
WshShell.Run "notepad.exe " & strFile
Set WshShell = Nothing