Our website includes a link where customers can download the latest update.exe files. We'd like to have the web page automatically display the file version info of each patch file. The files are digitally signed native windows executables.
Is there a way to get and display the version info from the files using HTML5 or javascript without having the user have to click a button? In essence, we want the file versions to update when the page loads or is refreshed. Here's what we have now. I'd like to add "Version 1.2.3.4" after where it says "Product" on each line.
<ul class="links">
<li>Latest Patches:</li>
<li><a href="updateFoo.exe">Update for Foo Product </a></li>
<li><a href="updateBar.exe">Update for Bar Product </a></li>
<li><a href="updateYou.exe">Update for You Product </a></li>
</ul>