MSMQ Version Details Using Windows Command

msmq

Is there any command which helps in getting the Version Of MSMQ software installed on Windows server 2008?

In my scenario MSMQ registry path is HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSMQ\Parameters\ .

I Tried the below command but it gave the sub values too

REG QUERY HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSMQ /s

Best Answer

The full version of Windows (MSMQ) can be checked here with msinfo32 and winver or with registry here:

reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v BuildLabEx

reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName

reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CurrentBuildNumber

reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ReleaseId

reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v UBR