Sunday, September 5, 2010

‘SCOM 2007’ News

Resolving ASP Performance Counter Application Event Log Warnings

Resolving ASP Performance Counter Application Event Log Warnings

Friday, May 23, 2008 21:44

After the installation of System Center Operations Manager 2007 SP1 RTM, you may notice the occurrence of several warnings in the Application event log on Agent-managed servers related to 32 bit ASP.Net performance counters, 64 bit ASP.Net performance counters, or both depending on the configuration of your system. The warnings ...

Setting up Repeating Alerts (Notifications) in System Center Operations Manager 2007

Monday, January 7, 2008 21:28

Setting up repeat alerts and escalations in System Center Operations Manager 2007.

System Center Operations Manager 2007 SP1(RC) will not record a Web Session

System Center Operations Manager 2007 SP1(RC) will not record a Web Session

Thursday, December 20, 2007 1:37

System Center Operations Manager 2007 SP1 (Release Candidate) has an issue in which the Web Capture tool does not function properly. When you attempt to run a capture session from within the Operations Console Internet Explorer is launched, but the session is not captured properly. To correct this problem, first ensure ...

Tagged with:
System Center Operations Manager 2007 Database and Data Warehouse Size Calculator

System Center Operations Manager 2007 Database and Data Warehouse Size Calculator

Thursday, December 20, 2007 1:14

Here is a helpful System Center Operations Manager 2007 Database and Data Warehouse size calculator tool for Excel: Please keep in mind that System Center Capacity Planner is the official Microsoft sizing tool....

Tagged with: ,
System Center Operations Manager 2007 Rule & Monitor Targeting Best Practices

System Center Operations Manager 2007 Rule & Monitor Targeting Best Practices

Monday, December 17, 2007 21:03

Microsoft just released this new System Center Operations Manager 2007 Targeting Best Practices poster to give everyone a quick reference on targeting best practices. Click here to download the full ...

Guide to Monitoring for Required Reboots with System Center Operations Manager 2007

Guide to Monitoring for Required Reboots with System Center Operations Manager 2007

Thursday, November 15, 2007 22:42

System Center Operations Manager 2007 enables the ability to create custom scripts to monitor a system for a specified value, and react accordingly based on your requirements. In order to successfully accomplish this goal, we need to complete three basic steps: Create a .vbs script to monitor the values that we're interested in and return that data to System Center Operations Manager. Create an appropriately scoped Monitor Management Pack Object to leverage the newly created script. Test the Monitor Object for the desired results. Creating a .vbs script that can interface with System Center Operations Manager 2007 requires adding only a couple of additional steps to your script : We need to make sure that the script is leveraging the MOM Scripting API. We need to make sure that we return the results of our script back to System Center Operations Manager in a manner that it can understand. '******************************************************************************* '*For more guides and scripts visit http://www.mcpguides.com '*This System Center Operations Manager 2007 Script will monitor a Windows '*Server and detect if the computer requires a reboot. '*If no reboot is required, the state will be healthy. If a reboot is required '*the state will switch to unhealthy. '******************************************************************************* '*Configure system parameters and variables Dim flgRebootNeeded, oAPI, oBAG Set oAPI = CreateObject("MOM.ScriptAPI") Set oBag = oAPI.CreateTypedPropertyBag(StateDataType) Set objSystemInfo = WScript.CreateObject("Microsoft.Update.SystemInfo") '******************************************************************************* '*Check reboot value; if objSystemInfo = 0, no reboot is required. If it = -1, '* a reboot is required. flgRebootNeeded = objSystemInfo.rebootrequired If flgRebootNeeded = 0 Then Call oBag.AddValue("State","GOOD") Else Call oBag.AddValue("State","BAD") End If Call oAPI.Return(oBag) '******************************************************************************* '*End of Script In the script above, we are monitoring a Windows Server for the "rebootrequired" flag. We are then taking the results of that flag, and passing a "GOOD" or "BAD" string, depending on the results, to a newly created System Center Operations Manager 2007 parameter called "State". Click Read On to contine....

Tagged with: