1 Attachment(s)
[RESOLVED] Get update versions of IE
Is there away to get the value in update versions of Internet Explorer (see attach image)
I've tried using WMI. root\CIMV2\Applications\MicrosoftIE namespace and go through MicrosoftIE_Summary but the properties availbale are version,cipherstrength..etc. and no update versions property.
I've tried also the remaining classes under that namespace but I haven't found such property.
Any work around to get the data?
Thanks in advance.
Re: Get update versions of IE
I think you can get this value from Registry. Try looking in:
Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\IE Setup\Setup
It contains a key name OldIEVersion, so it must have similar type key on updatedversion.
Just a guess though, never updated the IE.
Re: Get update versions of IE
Quote:
Originally Posted by mar_zim
Is there away to get the value in update versions of Internet Explorer (see attach image)
I've tried using WMI. root\CIMV2\Applications\MicrosoftIE namespace and go through MicrosoftIE_Summary but the properties availbale are version,cipherstrength..etc. and no update versions property.
I've tried also the remaining classes under that namespace but I haven't found such property.
Any work around to get the data?
Thanks in advance.
Hi,
Here's a link how to determine the version of the installes internet explorer;
http://msdn.microsoft.com/library/de.../licensing.asp
Wkr,
sparrow1
Re: Get update versions of IE
Now I found it. It's under HKEY_local_machine\software\microsoft\currentversion\internet settings.
btw thanks for all the reply guys.