Saturday, April 05, 2008
« UK Community Day at Microsoft Reading | Main | Full Text Searching your CS and PowerShe... »

PowerShell Quickie - What version of SharePoint 2007 am I running?

 

(get-item "hklm:software\microsoft\shared tools\web server extensions\12.0").getvalue("version")
12.0.0.6219 

Also handy

What version of the Operating system am I running on?

(Get-WmiObject Win32_OperatingSystem).Caption 

Microsoft(R) Windows(R) Server 2003, Standard Edition 

(Get-WmiObject Win32_OperatingSystem).Version 

5.2.3790
Saturday, April 05, 2008 9:14:18 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [1]  | 
Saturday, May 10, 2008 11:16:24 AM (GMT Standard Time, UTC+00:00)
http://myfavkb.wordpress.com/2007/12/10/how-to-find-version-of-your-operating-system-enterprisestandard/

same i did blog few months back. Good to know more about it

Nice one
Comments are closed.