Version of explorer, chrome, firefox..

Post Reply
Romeo
Posts: 328
Joined: Thu Jan 25, 2007 3:53 pm
Location: Milan (Italy)

Version of explorer, chrome, firefox..

Post by Romeo »

Hi,

is it possible to get version information on IEXPLORER.EXE, CHROME.EXE,FIREFOX.EXE and all others application ?

I need to know wath release is running of the above application !

(manually, i get this infromation by clicking the the right button of mouse)

tks
User avatar
rhlawek
Posts: 165
Joined: Sun Jul 22, 2012 7:01 pm

Re: Version of explorer, chrome, firefox..

Post by rhlawek »

Assuming you only need the functionality on windows it is very easy to get version info using WMI. The link goes to a non-harbour example, but the concepts are simple to port.

https://blogs.technet.microsoft.com/hey ... of-a-file/

Robb
Romeo
Posts: 328
Joined: Thu Jan 25, 2007 3:53 pm
Location: Milan (Italy)

Re: Version of explorer, chrome, firefox..

Post by Romeo »

Many thanks

Here the FWH sample:

obj:=CreateObject("Scripting.FileSystemObject")
cversion:=obj:GetFileVersion("FULL-PATH-EXE-DLL-FILE")
Post Reply