up vote 0 down vote favorite
1
share [g+] share [fb]

Does the ipconfig command only work on the workstation that you are physically on or can it be used across a domain/workgroup? Is there a different command that does accomplish this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

It only works on the current workstation. You can use the PsExec tool to run it on a remote machine:

> psexec \\remotecomputer ipconfig /all

If you have more than one computer, you can put the computer names in a textfile (eg computerlist.txt) and run it like this:

> psexec @computerlist.txt ipconfig /all
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.