‎01-10-2017 05:58 PM
How to read a particular software version installed inside TestStand?
I wanted to read a particular tool version installed on the machine to log inside my test report.
Solved! Go to Solution.
‎01-10-2017 06:14 PM
Do you pull this from the registry? Add/Remove Programs? Where can you get this info?
You can use additional results to log the actual version. Or you can put in in the Report Text of a step. Just depends on what you are going for exactly.
Does it impact the pass/fail status of the test? If so then a String Value Test would probably be the best.
‎01-10-2017 06:49 PM
I there any dos command which we can execute and read the result in TestStand?
‎01-10-2017 07:00 PM
I am testing a tool which is installer. I wanted to run tests for this tool and wanted to log the version currently installed on the PC as an tool version I am executing tests for.
I got on dos command which can read the installed version. But I am not sure how I can read the command response in TestStand.
‎01-10-2017 09:32 PM
Try this. It should get you pointed in the right direction.
Hope it helps,
‎01-12-2017 01:39 AM
Here is the DOS command to read a particular version of the Software
wmic product where "Name like '%App Name%'" get Name, Version