Thursday 29 December 2011

Command to know in which server is the Web Interface installed.

How to know in which server is the web interface installed?

First copy psinfo.exe from PSTOOLS to your desktop(or any folder) and execute the below command.

psinfo \\servername/ -s  | find "web interface"
ex: psinfo \\mycitrixserver/ -s | find "web interface"

If you have more number of servers, you can use the same command in a batch script and use it.

Create a text file called citrixserverlist.txt and update all your citrix servers list into that text file. Now copy the below script into citrixservers.bat and run it.

Batch Script is as follows:

@echo off
for /f  %%i in (citrixserverlist.txt) do psinfo \\%%i/ | find /i "Web interface"
pause

No comments:

Post a Comment

Next previous home