Exe Version number

Is there any script (js or php) possibility to get the .exe file version numbers?

Yes, it’s possible. Version numbers are stored into two resource strings SPubVersion and SPubProductVer at compilation time. And thanks to dedicated PHP or JS functions (http://www.exeoutput.com/help/localization#how-to-put-a-resource-string-directly-into-your-php-and-html-page), that’s easy.

<?php echo exo_get_resstring('SPubVersion'); ?>

See the doc for the JS example at
http://www.exeoutput.com/help/localization#how-to-put-a-resource-string-directly-into-your-php-and-html-page