Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find MSXML version from registry

Tags:

msxml

windows has many MSXML versions that can be installed side by side. i.e ver 3, 4, 5 & 6.

I have to find which msxml file is present on the system. My query is limited through registry only.

like image 352
Jobi Avatar asked Nov 26 '09 08:11

Jobi


People also ask

Is MSXML 6.0 supported?

MSXML 4.0 is no longer supported by Microsoft. MSXML 5.0 is supported by the Microsoft Office lifecycle policy. MSXML 6.0 support follows the support policy of the OS into which it is built or onto which it is installed.

How can I tell what version of MSXML is installed?

How to determine the MSXML version. Right-click the Msxml6. dll file, and then click Properties. Click the Version tab to see the version information.


1 Answers

All of the MSXML versions installed on your machine will be in the following registry GUID:

HKEY_CLASSES_ROOT\CLSID\{2933BF90-7B36-11D2-B20E-00C04F983E60}\VersionList.  

If you are looking for a specific version, say 3.0, you would check that Name = 3.0.

like image 186
Anarah Avatar answered Sep 30 '22 02:09

Anarah