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
Version of explorer, chrome, firefox..
Re: Version of explorer, chrome, firefox..
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/heyscriptingguy/2005/04/18/how-can-i-determine-the-version-number-of-a-file/
Robb
https://blogs.technet.microsoft.com/heyscriptingguy/2005/04/18/how-can-i-determine-the-version-number-of-a-file/
Robb
Re: Version of explorer, chrome, firefox..
Many thanks
Here the FWH sample:
obj:=CreateObject("Scripting.FileSystemObject")
cversion:=obj:GetFileVersion("FULL-PATH-EXE-DLL-FILE")
Here the FWH sample:
obj:=CreateObject("Scripting.FileSystemObject")
cversion:=obj:GetFileVersion("FULL-PATH-EXE-DLL-FILE")