Thursday, November 19, 2009

Exchange 2010 Beta1: Bunch of FAQs, Tips & Known Issues

http://exchangeshare.wordpress.com/2009/05/03/exchange-2010-beta1-bunch-of-faqs-tips-known-issues/

Wednesday, November 18, 2009

Exchange 2010 and Exchange Web Services - What’s New Webcasts

http://www.mefeedia.com/watch/24193645

Start service

We had a requirement to start a service if its stopped and this script helps to achieve the same
==============
Const ADS_SERVICE_STOPPED = 1
' get an ADSI object for a computerSet objComputer = GetObject("WinNT://computer name,computer")
' get an object for a serviceSet objService = objComputer.GetObject("Service","alerter")
' check to see if the service is stopped
If (objService.Status = ADS_SERVICE_STOPPED) Then
' if the service is stopped, then start it
objService.Start
End If
==================