Thursday 28 February 2008

How To Determine Which Version of MOSS 2007 is Installed

Need to determine which version of WSS or MOSS has been installed on a server?

The easiest way to get the current version number is to browse to the Site Settings page (eg. for your Central Admin site): http://myserver:ca_port/_layouts/settings.aspx.

You can also hit the database:

SELECT [VersionId]
,[Version]
,[Id]
,[UserName]
,[TimeStamp]
,[FinalizeTimeStamp]
,[Mode]
,[ModeStack]
,[Updates]
,[Notes]
FROM [SharePoint_Config].[dbo].[Versions]
WHERE VersionId = '00000000-0000-0000-0000-000000000000'
ORDER BY Id DESC

The version numbers correlate with the more familiar release names listed below (note these version numbers differ from what you might see through the Add or Remove Programs applet or a DLL version):
  • MOSS Beta 2: 12.0.0.4017
  • MOSS Beta 2 TR: 12.0.0.4407
  • RTM: 12.0.0.4518
  • August 24 2007 Hotfix Package: 12.0.0.6036
  • SP1: 12.0.0.6219
These version numbers are supposedly the same for both WSS 3.0 and MOSS 2007 but I don't have a pure WSS environment to confirm that.

If your installation isn't running and you can't access the CA site, check out the following links to learn about alternative means to find the current version number.
 

2 comments:

  1. http://www.sharepointu.com/bobbyhabib/archive/2008/05/16/getting-the-correct-moss-wss-version-for-each-server-in-the-farm.aspx

    MOSS 2007 Hotfix for Content Deployment (KB952704, KB 952698) 12.0.0.6315

    MOSS 2007 Hotfix for Search extension (KB952294) 12.0.0.6314

    MOSS 2007 or WSS 3.0 hotfix package March (KB950487/950484) 12.0.0.6308

    MOSS 2007 or WSS 3.0 hotfix package March (KB949955/949956) 12.0.0.6305

    MOSS 2007 or WSS 3.0 post-SP1 hotfix (KB948945) 12.0.0.6303

    MOSS 2007 or WSS 3.0 post-SP1 hotfix (KB941274) 12.0.0.6301

    MOSS 2007 or WSS 3.0 post-SP1 hotfix (KB941422) 12.0.0.6300

    MOSS 2007 or WSS 3.0 SP1 12.0.0.6219

    MOSS 2007 or WSS 3.0 October public update 12.0.0.6039

    MOSS 2007 or WSS 3.0 August 24, 2007 hotfix package 12.0.0.6036

    MOSS 2007 or WSS 3.0 RTM 12.0.0.4518

    MOSS 2007 or WSS 3.0 Beta 2 TR: 12.0.0.4407

    MOSS 2007 or WSS 3.0 Beta 2: 12.0.0.4017

    ReplyDelete
  2. Also see http://www.sharepointdevwiki.com/display/SharePointAdministrationWiki/SharePoint+Versions

    ReplyDelete

Spam comments will be deleted

Note: only a member of this blog may post a comment.