To verify the Internet Explorer Version on a remote computer you can use psinfo.exe.
PsInfo is a command-line tool that gathers key information about the local or remote Windows system.
PsInfo is part of PsTools and you can download it from here.
Open a cmd window with administrator credentials. The credentials must be for a member of the local Administrators group on the remote computer.
To do that , go to Start ->; Run and type : runas /user:domain\user cmd and hit Enter . You will be asked to enter the password.
After the window opens , use the code below.
For a list of computers:
psinfo @pcs.txt |findstr /B "IE version:" >> "C:\IEversion.txt"
For a single computer:
psinfo \\computername |findstr /B "IE version:"