As Lemke specified in coment #1, you cannot get the stdio output to your server/host from which you are running vmrun. If you want to get the output of "ipconfig" command, follow these i...
See more...
As Lemke specified in coment #1, you cannot get the stdio output to your server/host from which you are running vmrun. If you want to get the output of "ipconfig" command, follow these instructions. 1. Create a script file. inside the Guest. 2. In Guest, open your favorite text editor and populate the script.bat with following contents. ipconfig > C:\ip.txt 3. Using vmrun, execute the script.bat using runprograminguest command. Now, ipconfig information will be pumped to file C:\ip.txt in guest. Using vmrun, copy that file from guest to host. Ex: vmrun.exe -gu guestadministrator -gp password runprograminguest C:\path\windowsvm C:\script.bat Provided the above command is successful, vmrun.exe -gu guestadministrator -gp password copyfilefromguesttohost C:\path\windowsvm C:\ip.txt /path/of/file/on/host (I executed the same commands on my box. It worked. If you encounter any issues, please update the bug) Now the new copied file on host will contain the guest's ipconfig details. -Thanks Sankar.