| Aaron Saikovski's Information Worker & SharePoint Blog |
Aaron Saikovski - Senior Consultant, Microsoft Services, Australia
- Recent
- Popular
- Tags (0)
- Subscribers (1)
- WSS/MOSS October 2008 cumulative updates are now available.November 11
-
Download links are as follows:
WSS 3.0 Global
http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=957691&kbln=en-ushttp://support.microsoft.com/kb/957691
MOSS 2007 Global
http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=957693&kbln=en-ushttp://support.microsoft.com/kb/957693
MOSS 2007 Language Specific
http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=958567&kbln=en-ushttp://support.microsoft.com/kb/958567
MOSS 2007 Workflow Hotfix
http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=958569&kbln=en-ushttp://support.microsoft.com/kb/958569
NOTE: After applying these updates your Sharepoint version should now be: 12.0.0.6332
- Steve Ballmer in Australia!October 25
-
Steve Ballmer is coming to visit us for our internal company meeting in early November and hopefully I can get a photo with him (watch this space)
But more importantly he is very keen to lay down our vision for where things are going with cloud computing and the client with local developers and this is your chance to see him in action.
Come along to liberation day and see Steve in action.
Registrations are going to be very limited and you can register here.
- I have rejoined twitter!October 19
-
Ok due to pressure from various people I have rejoined twitter.
I couldnt reactivate my account so I went with the original twitter id of 'AaronSaikovski2'
My twitter url is now: http://twitter.com/AaronSaikovski2
Tweet away!
- SharePoint 2007/WSS V3.0 August 26th 2008 cumulative hotfixes are now availableSeptember 29
-
The official announcement on the SharePoint team blog can be found here.
The WSS V3.0 hotfix KB956057 article can be found here: http://support.microsoft.com/kb/956057
The SharePoint 2007 hotfix KB956056 article can be found here: http://support.microsoft.com/kb/956056/
The important thing to note is that we will be releasing cumulative updates every two months to ensure an ongoing quality product for our customers.
I would recommend you test these fixes in your test/staging environments prior to implementing these into your production environment. These hotfixes are updates to the infrastructure updates that were released in July.
- Powershell script to obtain the current MOSS 2007 versionSeptember 24
-
Here is a very simple Powershell script that I put together to workout the current build/patch level of MOSS 2007.
I make no warranties etc about the quality of the code but it works quite well. Feel free to use and modify as you see fit.
#######################################################################################################
#
# Author: Aaron Saikovski - Aaron.Saikovski@microsoft.com
# Version: 1.0 - Built using CTP V2 build of powershell
# Date: 25th Sept 2008
# Description: Returns the current build version of MOSS 2007 you are running - Runs locally only. Obtains the version of MOSS 2007 from the local registry
# Usage: Get-MOSS2007-Version.ps1
#
#######################################################################################################cls
set-location HKLM:
$a = get-itemproperty -path "\Software\Microsoft\shared tools\web server extensions\12.0" -name Version
Write-Host "MOSS 2007 Version: " $a -foregroundcolor white -backgroundcolor blue
$Input = Read-Host "Press any key to continue"
set-location c:\
