Where can I find a list of XP build numbers?

G

Guest

I need to find the XP build numbers for each revision of XP.

For:

For RTM,
Service Pack 1,
Service Pack 1a,
Service Pack 2 (the build number is 5.1.2600)

I tried looking on Google, Microsoft KB, TechNet and couldn't find anything.
 
G

Guest

start/run, type: WINVER
You are going to get something like 5.1.2600(servicepack data)
The RTM build (2600) is always the same, it only varies by service pack
installed, and other 'hotfixes' in place for that system. These can be
identified in the Add/Remove app.
 
G

Guest

I can't check on the machine themselves. I am using SMS server to find all
machines with XP, that do not have SP2. For criteria, I need to create a
query that looks for specific builds.
 
G

Guest

--listServicePack.vbs--
strComputer = "."
' strComputer = "somecomputername"
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colOperatingSystems = objWMIService.ExecQuery _
("Select * from Win32_OperatingSystem")

For Each objOperatingSystem in colOperatingSystems
Wscript.Echo objOperatingSystem.ServicePackMajorVersion _
& "." & objOperatingSystem.ServicePackMinorVersion
Next
--end file--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top