Home » 2007 » March (Page 2)

Monthly Archives: March 2007

Verify that a File Exists

This is a simple script that will check if a file exists, if not it will generate a warning event in the local event viewer. You can pick up that event with a rule from MOM. In this example, the script verify if C:\pagefile.sys exists.

Set objFSO = CreateObject(“Scripting.FileSystemObject”)

strFile = “C:\pagefile.sys”

If objFSO.FileExists(strFile) Then
    Set objFolder = objFSO.GetFile(strFile)
Else
    Const EVENT_WARNING = 2
    Set objShell = CreateObject(“Wscript.Shell”)
    objShell.LogEvent 2, strFile & ” is not accessible.”
End If

Updated: Configuring Notification in OM 2007

Pete and I updated our guide on configuration of notification in OM 2007. The updated version includes steps for configuration of self-service notification as review of enhancements in the notification engine. You can download the new version here

New Newsgroups

There has been beta news groups for a while but today a number of public news group open for System Center Operation Manager 2007. You will find them at news.microsoft.com , their names are microsoft.public.opsmgr.*

See you there !