|
|
Still there are a lot of MOM 2005 sites all waiting to be transferred to Opsmgr. But sometimes the old site needs be be running for some old really apps and sometimes you break some thing on the agent. the last hotfix for the MOM 2005 agent was Article ID: 942736 - Last Review: November 13, 2007 - Revision: 1.2 but I had some problem with some agents and it turned out there was a fix Article ID: 930770 - Last Review: August 9, 2007 - Revision: 2.3 http://support.microsoft.com/kb/930770/ Event ID 9014 and Event ID 9015 are logged, and MOMservice.exe stops unexpectedly after you configure a Collect Specific Events (Collection) rule in Microsoft Operations Manager 2005. This problem may occur if the Collect Specific Events (Collection) rule is configured to collect security event parameters. In this scenario, the Collect Specific Events (Collection) rule may occasionally collect more parameters than requested. This behavior may cause the MOM service to stop. this brings the agent to build 5.0.2911.50 But now there is build 5.0.2911.52. http://support.microsoft.com/kb/949874 In Microsoft Operations Manager (MOM) 2005, the MOM service (Momservice.exe) may crash when you run the discovery process on many agent computers. Therefore, the functionality that this service provides is lost. When this problem occurs, the following event is logged in the System log: Source: Service Control Manager Date: Date Event ID: 7031 Level: Error User: N/A Computer: Computer Name Description: The MOM service terminated unexpectedly. It has done this 1 time(s). The following corrective action will be taken in 60000 Additionally, the following events are logged in the Application log: Event Type: Error Event Source: Microsoft Operations Manager Event Category: None Event ID: 9014 Date: Date Time: Time User: N/A Computer: Computer Name Description: The Microsoft Operations Manager service (MOMService.exe) terminated due to an unhandled exception. It will attempt to restart itself. Event Type: Error Event Source: Microsoft Operations Manager Event Category: None Event ID: 9015 Date: Date Time: Time User: N/A Computer: Computer Name Description: The Microsoft Operations Manager service (MOMService.exe) received an unexpected exception. Thread Id: ID Thread Name: Name Exception code: 0x00000000c0000005 Exception description: Access Violation Exception address: address Exception flags: 0x0 http://support.microsoft.com/kb/949874
Sometimes in mom 2005 you want to know the value thats in a log file. In this Sample I do a step by step how to read / email the defrag Log file to a MOM 2005 alert / event.
Create a batch file. called SCCdefrag.cmd
This is a sample batch file for defrag your server. For emailing this log file I used BLAT. below is a default script i got from the WEB SCCdefrag.cmd:
set mailsrv=mail server set remail=defrag@domain.com set semail= defrag@domain.com defrag set log=defrag.log set progdir=c:\defrag :Start c: cd %progdir% :DEFRAG DATE /T >> %progdir%\%log% TIME /T >> %progdir%\%log% :d1 SET volume=D: EventCreate /T INFORMATION /SO Defrag /L application /ID 1 /D "SCCDefrag started on volume %volume%" %SystemRoot%\system32\defrag.exe %volume% /v >> %progdir%\%log% EventCreate /T INFORMATION /SO Defrag /L application /ID 2 /D "SCCDefrag ended on volume %volume%" DATE /T >> %progdir%\%log% TIME /T >> %progdir%\%log% goto MAIL :MAIL %progdir%\blat.exe mail.txt -to "%remail%" -s "SCCDefrag Report %ComputerName%" -mime -server %mailsrv% -f "%semail%" -attach "%log%" GOTO END :END EXIT
Go to your MOM administrator Console and add a new provider.
Choose Application log file
Filin the logfile directory and the logfile name
Now Create A management pack that kicks the Rule. Create a new rule and choose the just created Provider. in our case the defragmentatie
Remember use parameter 4 and the text must be 100% the same as in your log file, and the rule reads only the first log line. Text is case sensitive.
How To repair Your MRAS. MOM Availability Management Pack, sometimes the scheduled task wil never stop running. So you need to fix this. But what can you do so many tables so little time. first we check the version. but In my case I removed the Availability Reporting just to make sure. First step :Check your version Use SystemCenterReporting SELECT * FROM MRAS_MRASInstallVersion  The procversion should be 1.8 this indicates that you are using the latest available MP version Which versions of the Availability MP are affected Remember always use the latest version this is MP 05.0.5000.0001 Second Step :check if you have Orphaned Servers Use SystemCenterReporting Select uidServer as ComputerID,nvcServerName as OrphanedServer from mras_server A where A.uidServer not in (Select ComputerID from sc_computerdimension_table) Output :If the above query does return rows it is most likely the Orphaned server column contains the server names of those servers missing from reports or containing stale data.  Third step :The Fix For this run the SQL query. Use SystemCenterReporting Select uidServer into #Orphans From MRAS_Server a Where a.uidServer Not In (Select ComputerID From SC_ComputerDimension_View) Declare @uidToRemove uniqueidentifier Declare uidCur cursor forward_only for Select uidServer From #Orphans Open uidCur fetch next from uidCur into @uidToRemove while @@FETCH_STATUS = 0 Begin exec MRAS_pcDeleteServer @uidToRemove Delete From MRAS_Server Where uidServer=@uidToRemove Fetch next from uidCur into @uidToRemove End Drop table #Orphans  Re running de query Next step is use the report cleaner from clive. you can download it here  Reinstall the Reporting not the MMC UI  Now this is done I checked the Scheduled task yeb it is there.  And started the MMC for my reports.  So I kicked the task else I have to wait. and it is running Remember the first run can take some time.  Yeb and done with a 0x0  Just wait a few day's to see the Reports. If you want to make a fresh new management pack than tools are handy tools to use the Eventcreator. get this from the MOM 2005 Resource kit. But there are other commands that are often forgotten to use like the SC command. in a command line you can create a windows service. this service can be use full to test your fresh MP. the new services don't have to be something from the original services but a fake services to create your MP So how does it work, there are several Items on the net about it but here is a brief description. Sc.exe uses the following syntax: Syntax1 (use Syntax1 to run Sc.exe) sc [Servername] Command Servicename [Optionname= Optionvalue...] Syntax2 (use Syntax2 to display help information, except for the query command) sc [Command] DESCRIPTION: SC is a command line program used for communicating with the NT Service Controller and services. USAGE: sc <server> [command] [service name] <option1> <option2>... The option <server> has the form "\\ServerName" Further help on commands can be obtained by typing: "sc [command]" Commands: query-----------Queries the status for a service, or enumerates the status for types of services. queryex---------Queries the extended status for a service, or enumerates the status for types of services. start-----------Starts a service. pause-----------Sends a PAUSE control request to a service. interrogate-----Sends an INTERROGATE control request to a service. continue--------Sends a CONTINUE control request to a service. stop------------Sends a STOP request to a service. config----------Changes the configuration of a service (persistant). description-----Changes the description of a service. failure---------Changes the actions taken by a service upon failure. qc--------------Queries the configuration information for a service. qdescription----Queries the description for a service. qfailure--------Queries the actions taken by a service upon failure. delete----------Deletes a service (from the registry). create----------Creates a service. (adds it to the registry). control---------Sends a control to a service. sdshow----------Displays a service's security descriptor. sdset-----------Sets a service's security descriptor. GetDisplayName--Gets the DisplayName for a service. GetKeyName------Gets the ServiceKeyName for a service. EnumDepend------Enumerates Service Dependencies. The following commands don't require a service name: sc <server> <command> <option> boot------------(ok | bad) Indicates whether the last boot should be saved as the last-known-good boot configuration Lock------------Locks the Service Database QueryLock-------Queries the LockStatus for the SCManager Database EXAMPLE: sc start MyService So in real it looks like this. sc create "Service Name" displayName= "Service Display Name" binPath= "C:\WINDOWS\system32\clipsrv.exe" start= auto depend= "use this if you want to use a depend - put service name here" sc description "Service Name" "This service handles agent tasks configured in Clipbook" pause If you use a batch file a pause is handy to see if the services is created. You should see this if the services is created. [SC] CreateService SUCCESS
[SC] ChangeServiceConfig2 SUCCESS And delete the service is easy. Just do SC DELETE " Service Name "
The Mom Installation can take lots of time to install if you have no push agent intall.
Needed Files :
configapp.msi
oomads.msi <> Active Directory Helper
ExchMPObj.msi<> Exchange Helper
ReplProv.msi<> only needed on windows 2000 or NT <>
MOMAgent.msi <> MOM agent.
First If you want To quick Uninstall the Agent.
msiexec /i i:\mom\momagent.msi REMOVE="MOMXAgent" /passive
the " momxagent " setting is the remove option.
Install the agent with none management options for AD
msiexec /i c:\mom\momagent.msi config_group="MOMMGT01" Management_server="FQDN of the mom server" AM_CONTROL="Group" REQUIRE_AUTH_COMMN="0" /passive
the : AM_CONTROL="Group" is the setting for firewall installation with no active directory.
After this you maybe want to install some agent hotfixes there are 7 hotfixes for the mom agent
Agent version 5.0.2911.0 is the basic no sp1 version
- <> Agent version 5.0.2911.28
The Microsoft Operations Manager (MOM) agent does not back up event logs and does not perform a system state backup if the Action account is configured to run as the local system account
http://support.microsoft.com/kb/913366/en-us
- <> Agent version 5.0.2911.29
The Snmp.exe process generates an access violation when the event is converted to an SNMP trap in MOM 2005
http://support.microsoft.com/kb/912704/en-us
- <> Agent version 5.0.2911.30
Deadlocks may occur with MOM 2005 SP1 on SQL 2005
- <> Agent version 5.0.2911.31
Unable to discover computers in AD after upgrading to .NET Framework 2.0
- <> Agent version 5.0.2911.32
Microsoft Operations Manager 2005 may stop processing incoming SNMP traps after receiving many traps in a short time
<> Agent version 5.0.2911.35
Microsoft Operations Manager 2005 Service Pack 1 agents do not appear in the MOM Operator console and cannot communicate with the MOM Management Server
http://support.microsoft.com/kb/921288
- <> Agent version 5.0.2911.38
The last sampled value is displayed in some alerts in the Microsoft Operations Manager (MOM) 2005 Operator console
Q913366x86.msp /passive <> Agent version 5.0.2911.28 Q912704x86.msp /passive <> Agent version 5.0.2911.29 Q913801.msp /passive<> Agent version 5.0.2911.30 Q913812.msp /passive<> Agent version 5.0.2911.31 Q914835-x86.msp /passive <> Agent version 5.0.2911.32 Q921288.msp /passive<> Agent version 5.0.2911.35 Q926681x86.msp /passive<> Agent version 5.0.2911.35
So for a complete installation for your mom agent :
msiexec /i c:\mom\momagent.msi config_group="MOMMGT01" Management_server="FQDN of the mom server" AM_CONTROL="Group" REQUIRE_AUTH_COMMN="0" /passive
Q913366x86.msp /passive
Q912704x86.msp /passive Q913801.msp /passive Q913812.msp /passive Q914835-x86.msp /passive
Q921288.msp /passive Q926681x86.msp /passive
AND this must be done on the MOM servers as well !!
Microsoft SQL Server Management Pack for Microsoft Operations Manager 2005
Brief Description
The Microsoft SQL Server Management Pack monitors SQL Server 2000 and 2005 for critical conditions indicating potential operational problems
Source : http://www.microsoft.com/downloads/details.aspx?FamilyID=79f151c7-4d98-4c2b-bf72-ec2b4ae69191&DisplayLang=en
| File Name:
| Microsoft SQL Server Management Pack for MOM 2005-EN.msi
|
| Version:
| 09.0.3043.0000 |
Overview
The Microsoft SQL Server Management Pack provides both proactive and reactive monitoring of SQL Server 2005 and SQL Server 2000 in an enterprise environment. Availability and configuration monitoring, performance data collection, and default thresholds are built for enterprise-level monitoring. Both local and remote connectivity checks help ensure database availability.
With the embedded expertise in the SQL Server Management Pack, you can proactively manage SQL Server, and identify issues before they become critical. This Management Pack increases the security, availability, and performance of your SQL Server infrastructure.
The Microsoft SQL Server Management Pack Guide that comes with the pack describes the content of the management pack, and describes how to deploy it.
Feature Summary
Monitoring the state of the included services such as SQL Server, SQL Agent, Report Server, Notification Services
Monitoring the state of databases
Monitoring the available space in databases, configurable by % or MB
Ensuring databases are configured correctly
Ensure clients can connect to the SQL Server Monitor blocked processes
Watch for failed agent jobs, and jobs taking an excessive time to execute
Monitor the health of replication and alert on failures
Monitor the state of Database Mirroring
Release and Update History:
5/12/2005 Original product release date (Version 09.0.1399.0700).
5/24/2006 Includes support for SQL 2005 SP1 and database mirroring; improved support for Windows x64; improved database space monitoring; improved product knowledge (Version : 9.0.2047.0000). 6/28/2006 Localized RTM management packs (Version 09.0.1399.0700). 5/15/2007 Includes support for SQL 2005 SP2; improved product knowledge; improved support for localized versions (Version : 9.0.3043.0000).
Microsoft Dynamics CRM 3.0 Server Management Pack for Microsoft Operations Manager 2005
Brief Description
The Microsoft Dynamics CRM 3.0 Server Management Pack for MOM 2005 monitors the Microsoft Dynamics CRM 3.0 Server services and their availability.
Source : http://www.microsoft.com/downloads/details.aspx?FamilyID=df07094c-59e9-4ce6-9802-478c35c12614&DisplayLang=en
Overview
The Microsoft Dynamics CRM 3.0 Server Management Pack for MOM 2005 monitors the Microsoft Dynamics CRM 3.0 Server Application event log and performance counters. This management pack includes event rules for the Microsoft CRM Server, Exchange Router, and Windows Fax Router services. The events and performance counters monitored from each service help indicate some critical issues with Microsoft Dynamics CRM 3.0 Server operations during the servicing of Microsoft CRM user requests.
The Microsoft Dynamics CRM 3.0 Server Management Pack provides the following features that help with: • Monitoring of health and availability of Microsoft Dynamics CRM 3.0 Server services and the services they are depended on • Basic detection of brute force attacks and denial of service attacks • Notification of configuration-related failures • Performance measurement monitoring of Web application requests, e-mail messages, and fax messages processing
Management Pack Release History: 5/2/2007 Release of the English version of the Microsoft Dynamics CRM 3.0 Server Management Pack for MOM 2005 3/5/2007 Beta release of the English version of the Microsoft Dynamics CRM 3.0 Server Management Pack for MOM 2005
Source : http://www.microsoft.com/downloads/details.aspx?FamilyID=df07094c-59e9-4ce6-9802-478c35c12614&DisplayLang=en
Windows Base Operating System Management Pack for MOM 2005
Brief Description
Monitors for conditions that adversely affect the availability, reliability, performance, configuration, and security of Windows Server 4.0, 2000, 2003 operating systems. The events detected indicate exceptional conditions associated with various components of Windows operations.
Source :
http://www.microsoft.com/downloads/details.aspx?familyid=E553062F-BD85-4772-8037-8B91F457B710&displaylang=en
Overview
The Microsoft Windows Base Operating System Management Pack monitors the performance and availability of Microsoft Windows Base Operating Systems. By detecting, alerting on, and automatically responding to critical events and performance indicators, this Management Pack helps indicate, correct, and prevent possible Operating System service outages. The Windows Base Operating System Management Pack helps ensure that your Operating Systems and its components are available and working correctly. The Microsoft Windows Servers Base Operating System Management Pack Guide describes the content of the management pack, and describes how to deploy it. You can download the management pack guide from the Microsoft Web site (http://www.microsoft.com/downloads/details.aspx?FamilyId=F8B3A868-F72C-4998-A7FF-D06FE7D31D12).
Quick Details
| File Name:
| Microsoft Windows Base Operating System MOM 2005 MP.msi
|
| Version:
| 05.0.3500.0010
|
| Date Published:
| 5/29/2007
|
| Language:
| English
|
| Download Size:
| 724 KB |
Release History:
10/20/2005 This MP update coincides with the release of MOM 2005 SP1. In this update a variety of bug and performance related issues have been resolved.
10/06/2006 Microsoft has discovered potential issues with the 05.0.3500.0000 version of the Windows Base Operating System Management Pack for MOM 2005. This version has been temporarily replaced with the previous version (05.0.3100.0000) that does not support Windows Server 2003 R2. We are working hard to resolve the issues with the newer version and will re-release it when complete. 05/28/2007 The Microsoft Windows Servers Base Operating System management pack 05.0.3500.0010 introduces monitoring of additional components available within the Microsoft Windows Server 2003 R2 operating system including Identity Management for UNIX(IDMU), Hardware Management events,NTFS file system monitoring, File Server Resource Monitoring (FSRM), Shadow Copies for Shared Folders (SCSF) Monitoring and more (See Management Pack Monitoring Scenarios with the Management Pack Guide for more information).
Active Directory Management Pack reports contain incorrect data after you install Multiple Management Group Rollup Solution Accelerator in a Microsoft Operations Manager 2005 environment
SYMPTOMS
Consider the following scenario. You install Multiple Management Group Rollup Solution Accelerator in a Microsoft Operations Manager (MOM) 2005 environment. Then, you use Multiple Management Group Rollup Solution Accelerator to merge Data Transformation Services (DTS) jobs from multiple management groups. The management groups monitor multiple domains or monitor multiple forests. Also, the management groups report to a central reporting database. You merge a DTS job with one of the management groups. Then, you try to view the Active Directory Management Pack AD Domain Controllers report. In this scenario, the domain controller information is incorrect. The following symptoms may also occur:
| •
| The Multiple Management Group Rollup AD Replication Site Links report has no data.
|
| •
| The Multiple Management Group Rollup AD Replication Latency report stops responding. Also, this report has no data.
|
| •
| The Active Directory Management Pack AD Role Holders report has incorrect data. |
CAUSE
This behavior occurs when the Active Directory Topology Discovery script and the Active Directory Remote Topology Discovery script run in an environment where multiple management groups monitor multiple domains or monitor multiple forests. In this scenario, duplicate computer records are inserted in the Computer table in the reporting database.
To use Multiple Management Group Rollup Solution Accelerator with Active Directory Management Pack, configure a single management group to monitor each domain and to monitor each forest. This prevents duplicate computer records.
Windows Server Update Services 3.0 Management Pack for Microsoft Operations Manager 2005
Overview
The WSUS 3.0 Management Pack helps you diagnose and resolve the issues reported as events by the WSUS 3.0 server. There are four major event categories: core, database, Web services, and client-related issues. • Core issues: content directory permissions, disk space, catalog synchronization, content synchronization, the WSUS service, and e-mail notification. • Database issues • Web services issues: events raised about the Reporting Web Service, API Remoting Service, Client WebService, Simple Web Authorization Service, Server Synchronization Service, and the Downstream Server Authentication Service. • Client issues: update installation, the Windows Update Agent, client inventory, client self-update, and clients not reporting
Release History: 5/4/2007 Original release of MP
Microsoft Windows Server 2000/2003 Terminal Services Management Pack
Brief Description
The Terminal Services Management Pack monitors the individual Terminal Services components on Windows Server 2000 and 2003.
| File Name:
| Microsoft Windows Server Terminal Services 2000-2003 System Center Operations Manager 2007 Management Pack.msi
|
| Version:
| 6.0.5000.0
|
| Date Published:
| 4/27/2007
|
| Language:
| English
|
| Download Size:
| 1.2 MB
|
|
| 3 min 56K
|
|
Overview
The Terminal Services Management Pack for Windows 2000 and Windows Server 2003 monitors the health and performance of Terminal Services components. It includes a rich set of views, tasks, and reports, and provides monitoring for Terminal Services, the Licensing Server, and the Session Directory. This Management Pack detects and alerts problems with performance, health, and availability. It can automatically respond to critical events and performance indicators. In some cases it identifies issues before they become critical, enabling you to increase the overall availability and performance of your Windows operating systems.
Feature Summary: • Independent discovery of Terminal Server Service (application mode), Licensing Server Service, and Session Directory Service (Windows 2003 only) • Optional discovery of Terminal Server installations in Remote Desktop (Remote Application) mode • Performance threshold monitoring on key Terminal Services Metrics using Self-Tuning Thresholds • Comprehensive performance metric collection (optional collection rules) • Comprehensive event rules with associated knowledge • Availability and Event Reports
Management Pack Release History: Initial Release 3/23/2007 Version 6.0.5000.0
http://www.microsoft.com/downloads/details.aspx?FamilyID=1428ecfd-8c3e-4779-a383-4c491d2684f3&DisplayLang=en
This week I had a beta invitation for the new windows update Client ( I did join the beta a long time ago ) and my servers are running with this clients a few weeks now. So what is new ? well there is a x64 bit client version for vista.
and in the windows update page there is a SQL server and a windows live toolbar option, Office 2007 , SMS server And some updates ;-) and also there is a beta section.
I think this is a great feature to day I made a new RIS image and after the Ris I did a 47 patch script to get windows xp sp2 uptodate.
great stuff.
the script can be found here : check this site out great stuff. and easy to use.
| Title
| Windows Update Beta Client for Vista x86 Machines
|
| Release Date
| 2/13/2007
|
| Size
| 2.16 MB
|
| Version
| 7.0.6000.318
|
| Category
| Build
|
| Milestone
| RC1 |
Greetings from Microsoft Connect!
You are invited to apply for participation in a pre-release program for Microsoft Update Client Beta on the Microsoft Connect Web site (http://connect.microsoft.com). Your role in product development is important to us. By including you in our development process, we can ensure that our products meet the needs of our customers and are reliable. Microsoft Connect enables you to connect with Microsoft developers, product managers, and other development team members to help us make our products the best they can be.
To accept this invitation and apply to become a member of this program, please follow these steps:
1) Use your Internet connection to visit the Microsoft Connect Web site (http://connect.microsoft.com).
2) Click Invitations on the Connect menu.
3) You will need to sign in using a valid Windows Live ID before you can continue to the Invitations page.
4) Enter your Invitation ID in the box.
Your invitation ID is:
5) Click Go.
6) If you have not previously registered with Microsoft Connect, you might be required to register before you continue with the invitation process.
Follow the steps shown to you by that program to apply to become an active participant. (You may be asked to take a survey, or complete other activities.)
To report a problem or to ask a question, visit the Contact Us page (linked to at the bottom of every page).
Thank-you for your interest, and we look forward to hearing from you!
Sincerely,
Program Administrator Microsoft Connect
pete did a great job on building the site.
Sorry pete that I did not see this sooner that the new site is gone live. as always there is lots and lots on info about MOM.
03/23/2007 -
Finally the new site has arrived - with new features you requested, as well as a new name! To reflect our expanding focus on Operations Manager 2007 and other components of the Microsoft System Center Suite, the new site has been dubbed systemcenterforum.org.
We’ll have a strong focus on the successor to MOM 2005, offering expert guidance and support from both a conceptual perspective as well as the detailed “hands on” aspects of design, implementation and administration. We’ll also bring you System Center and industry-related news relevant to the IT operations management space, as well as reviews of 3rd party ISV offerings, which will be a greatly expanding field for the new generation of the MS operations management platform.
New features on the site include indexed search, RSS (both category feeds and a master site rollup including all new additions), an Events Calendar and searchable FAQs. Note that the first download from the rollup feed may include some migrated content.
Existing momresources.org content - We’ve moved the existing downloads from MOMResources.org to the new site, where it is fully indexed and searchable. We’ll also leave the existing content downloadable via their original momresources.org URL’s to respect the many references present in the MS newsgroups and various community sites.
We’re eager to hear your feedback. Let us know what you think by emailing Administrator AT systemcenterforum.org
http://www.momresources.org/
Microsoft will be phasing out the GotDotNet site by July 2007
Microsoft will be phasing out the GotDotNet site by July 2007.
|
| Microsoft will phase out all GotDotNet functionality by July 2007. We will phase out features according to the schedule below. During the phase-out we will ensure that requests for features or pages that are no longer available will render enough information for you to understand what has changed. If you have any questions please don’t hesitate to contact the GotDotNet Support team.
We are phasing out GotDotNet for the following reasons:
Microsoft wants to eliminate redundant functionality between GotDotNet and other community resources provided by Microsoft
Traffic and usage of GotDotNet features has significantly decreased over the last six months
Microsoft wants to reinvest the resources currently used for GotDotNet in new and better community features for our customers
| Other Microsoft sitesMSDNOffers help for developers in writing applications using Microsoft products and technologies. TechNetInformation regarding corporate managed updating of their client PCs. ASP.NETThe ASP.NET 2.0 site is a portal site for the ASP.NET development community. Channel 9Channel 9 is a Microsoft discussion forum used to promote conversations among Microsoft's customers. CodePlexCodePlex is Microsoft's open source project hosting web site. XML DownloadsThis page provides downloads for building XML applications using Microsoft technologies. Phase Out ScheduleThe GotDotNet phase out will be carried out in phases according the following timetable:
| Target Date
| Areas to be Closed
|
| February 20
| Partners, Resource Center, Microsoft Tools
|
| March 20
| Private workspaces, Team pages, Message Boards
|
| April 24
| GDN CodeGallery (projected date)
|
| May 22
| GDN User Samples (projected date)
|
| June 19
| GDN Workspaces (projected date) |
Windows Vista Client Monitoring Management Pack Beta. This package includes both the management pack and a ReadMe guide. The ReadMe provides more details on the MP capabilities and requirements. NOTE: this MP will only work with the IDS build (4941) of OpsMgr. This IDS build has been made available only to TAP and RDP customers for lab-only usage.
Possible scenarios:
- Disk Health Monitoring (Monitoring + Alerting + Reporting)
- Alert on impending hard drive failures to enable proactive backup and replacement
- Identify trends around disk failures and disk corruption to make better purchase decisions
- View Disk Utilization information to make better purchase decisions and to ensure system performance
Memory Health Monitoring (Monitoring + Alerting + Reporting)
- Alert on memory hardware failure that is causing system instability
- Identify leading applications that cause memory exhaustion and address them through software or hardware updates
- Determine ideal memory configuration by correlating frequency of memory exhaustion with amount of installed RAM
Performance Monitoring (Monitoring only)
- Understand leading causes of performance issues that cause user disruption
- Ability to understand the bottleneck resources (CPU, Memory, Disk, Drivers, etc)
- Ability to understand the leading applications/services/drivers that are using up each of these resources
- View data on bootup/shutdown/sleep/resume performance degradation times and their root causes
Software Requirements
Running the Beta requires
1. SQL Server 2005 2. SQL Reporting Services 3. System Center Operations Manager 2007 IDS Build 4. Windows Vista clients to manage!
Source : https://connect.microsoft.com
and
source : http://weblog.stranger.nl
when setting up a new mom site with SQL 2005 sp2 and windows 2003 R2 SP2 and you do the import of the exchange reports you will see this will fail.
grrrr yes there are a few workaround for this but microsoft finaly corrected this in the new MP for exchange.
| File Name:
| Microsoft Exchange Server MOM 2005 MP-USA.msi
|
| Version:
| 6.5.7903
|
| Date Published:
| 3/7/2007
|
| Language:
| English
|
| Download Size:
|
2.0 MB |
Overview
The Exchange Server Management Pack includes rules and scripts to track performance, availability, and reliability of Exchange components, such as Internet-related services, Extensible Storage Engine, System Attendant, Microsoft Exchange Information Store service, and SMTP. This management pack not only validates the availability of communication services but also sends test e-mail to verify operations and measures actual delivery times. The Exchange Management Pack Configuration Wizard provides a graphical user interface to configure Exchange 2000 and Exchange 2003 Management Packs, including test mailboxes, message tracking, and monitoring services. The Exchange Server Management Pack Guide for MOM 2005 explains how to use the Exchange Management Pack to monitor and maintain messaging resources. You can download the management pack guide from the Microsoft Web site (http://www.microsoft.com/downloads/details.aspx?FamilyId=2215EEAB-41D7-423D-9F54-01F0DF4647E9).
Release History:
11/02/2005 Original release
10/12/2006 The Microsoft Exchange Server Management Pack for MOM 2005 was recently updated in ‘Version’ only under “Quick Details”. This was a cosmetic update to the page, no modifications were made to the management pack.
03/07/2007 Microsoft Exchange Server Management Pack for MOM 2005 updated - new version - 7903.
If you have a exchange server in your mom site you need to use the exchange config wizzard. well there is a long waited new version.
get it here :
Microsoft Exchange Server Management Pack Configuration Wizard has been updated
Overview
Provides a graphical user interface to configure Exchange 2000 and Exchange 2003 Management Pack, including test mailboxes, message tracking, and monitoring services.
Error message when you use the MOM 2005 Operator console to run an XML script that contains a CDATA block: "Parameter is incorrect"
SYMPTOMS
When you use the Microsoft Operations Manager (MOM) 2005 Operator console to run an XML script that contains a CDATA block, you receive the following error message:
Operating Console Error—Parameter is incorrect. When the script runs on an agent-managed computer, you receive the following error message:
Parameter is incorrect. For example, you receive this error message when the script runs as part of a rule.
CAUSE
This issue occurs when the script contains a CDATA sequence in a CDATA section. When the ]]> sequence appears in a CDATA section, the XML parser interprets the sequence as the end of the section. Therefore, the sequence is not processed.
WORKAROUND
To work around this issue, run the script by using the CScript.exe command-based script host. For more information about how to use CScript.exe, visit the following Microsoft Web site:
MORE INFORMATION
For more information about how to use CDATA sections in scripts, visit the following Microsoft Web site:
source :http://support.microsoft.com/default.aspx?scid=kb;en-us;933556&sd=rss&spid=2548
There are new hotfixes for mom 2005 SP1
My current Agent version is 5.0.2911.28 and now the lates version is 5.0.2911.38
as seen in the KB article
Event ID 9014 and Event ID 9015 are logged and MOMservice.exe stops unexpectedly after you configure a Collect Specific Events (Collection) rule in Microsoft Operations Manager 2005
The following events are logged in the Application log:
Event ID 9014
Event ID 9015
CAUSE
This problem may occur if the Collect Specific Events (Collection) rule is configured to collect security event parameters. In this scenario, the Collect Specific Events (Collection) rule may occasionally collect more parameters than requested. This behavior may cause the MOM service to stop.
Restart requirement
You do not have to restart the computer after you apply this hotfix. However, you must apply this hotfix to the MOM 2005 management server. When you apply this hotfix, the MOM service automatically restarts.
Hotfix replacement information
This hotfix does not replace any other hotfixes.
File information
The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.
| File name
| File version
| File size
| Date
| Time
| Platform
|
| Momactions.dll
| 5.0.2911.38
| 905,608
| 26-Jan-2007
| 08:47
| Not applicable
|
| Momdbconnector.dll
| 5.0.2911.38
| 1,631,112
| 26-Jan-2007
| 08:47
| Not applicable
|
| Momengine.dll
| 5.0.2911.38
| 1,649,544
| 26-Jan-2007
| 08:47
| Not applicable
|
| Mommsgs.dll
| 5.0.2911.0
| 182,784
| 21-Jul-2005
| 09:13
| Not applicable |
WORKAROUND
To work around this problem, configure the Collect Specific Events (Collection) rule so that it does not collect any event parameters. To do this, follow these steps:
| 1.
| Start the MOM 2005 Administrator Console, and then expand Management Packs.
|
| 2.
| Expand Rule Groups, expand the appropriate rule group, and then click Event Rules.
|
| 3.
| In the results pane, locate and then double-click the Collect Specific Events (Collection) rule with which you experience the problem.
|
| 4.
| In the Collection Rule Properties ManagementGroupName - RuleName box, click the Parameter Storage tab.
|
| 5.
| Click Store no event parameters, and then click OK. |
Source :http://support.microsoft.com/default.aspx?scid=kb;en-us;930770&sd=rss&spid=2548
Using the operator console task is a nice tool to do things fast and often.
There are a couple of things that you can do with a task. Open a mmc with the services opened.
Use the command line and the operator console See figure services
Or a defragmentation check or defrag use the commandline and the agent managed-computer
See figure defrag
Syntax for defrag : cmd.exe /c defrag c: /f /v
Syntax for defrag check : cmd.exe /c defrag c: /a
You can use the WMIC Use the command line and the operator console See figure show servicepacks
wmic /node:'$Computer Name$' qfe GET description,hotfixid,installedby,installedon,servicepackineffect
Use the command line and the operator console See figure show tasklist
tasklist.exe /s $TargetComputer$ /FI "status eq running"
Use the command line and the operator console See figure show the HP 2200printer
count and snmp
snmputil get 10.1.100.1 public .1.3.6.1.2.1.43.11.1.1.6.1.1
snmputil get 10.1.100.1 public .1.3.6.1.2.1.43.10.2.1.4.1.1
snmputil get 10.1.100.1 public .1.3.6.1.2.1.43.5.1.1.16.1
snmputil get 10.1.100.1 public .1.3.6.1.2.1.43.5.1.1.17.1
You can use the WMIC Use the command line and the operator console See figure show process list
wmic /node:$Computer Name$ process list brief
or open a remote CMD use the psexec from sysinternals/Microsoft you have them on the machine where you execute the task
psexec \\$Computer Name$ cmd
Or find a broken rule with a findruleutility
FindRulebyGUID "$Description$"
So there a lots of ideas to use with the tasks but it takes time to set them up and to get them working
See all the screen shots
|