AdtServer Event ID 4618 – Logon Failed

So, you installed Audit Collection Services (ACS) and the collector isn’t able to connect to the OperationsManagerAC database.  You get a bunch of errors in your Operations Manager and Application event logs on your ACS Collector: Event Type:    Error Event Source:    AdtServer Event Category:    None Event ID:    4618 Date:        3/13/2008 Time:        12:23:30 AM User:        N/A…

6

Management Group Performance Evaluation and Tuning Reports

I created a small management pack a couple years ago to help identify performance bottlenecks in an Operations Manager 2007 R2 environment.  It started with a couple collection rules targeting the core SCOM server roles.  I would then query the database and paste results into an Excel spreadsheet.  Evaluating all the data and formatting the…

6

Data Protection Manager 2010 management pack just released – Things you need to know!

Download the management pack I recently had the opportunity to sit down for a conversation with the DPM 2010 management pack team. I was elated with some of the new features and the approach they took in designing this management pack. This one is definitely the first of its kind, and there are some really…

5

Service Level Dashboard 2.0 – An error has occurred. View the logs for more information.

This usually indicates a security issue with SLD or WSS configuration. The SLD site was working, but the Service Level Dashboard page element in SharePoint is generating an error. By examining the SLD logs, located under %ProgramFiles%\Service Level Dashboard 2.0\Logs\Dashboard.log, you might also see this login failure event. Message :System.Data.SqlClient.SqlException: Login failed for user ‘OPSMGRLAB\WSSContentPoolSvc’….

5

Agents: remove configured management group or uninstall agent using command line

I had a question today about uninstalling an agent using the command line.  The options referenced here are great for installing, configuring and modifying an agent and all possible options.  Here are some additional notes that may come in handy, which supplements Rob’s excellent command line post. Beware of word wrap on these commands.  They…

5

Find collection rule for specific Event Id

Beware of word wrap. foreach ($rule in get-rule | where {$_.category -eq "EventCollection"} | foreach-object {$_.DataSourceCollection})     {     if ($rule.get_configuration().ToString() -match "event number")         {$rule.get_ParentElement().DisplayName}     } main menu

5

Using Expressions and Wildcards to create groups, author rules and monitors, create console views and notification subscriptions, and in the Command Shell

We posted a great document on OpsManJam a couple years ago entitled “Regular Expression Support in SCOM 2007”.  I believe this document was originally authored by our very own Dan Rogers.  I have referenced this document more times than I can recall over the past couple years, because I’m terrible at remembering finer details like…

5

Discover and install agent using Powershell

Here’s an example of how you can run discovery and agent installation using the OpsMgr Command Shell. $query = New-LdapQueryDiscoveryCriteria -domain <your_domain> -ldapquery "(cn=<target_netbios_name>)" $discoverycfg = New-WindowsDiscoveryConfiguration -ldapquery $query $discoveryResults = Start-Discovery -managementServer (get-managementServer) -windowsDiscoveryConfiguration $discoverycfg Install-Agent -managementServer (get-ManagementServer) -agentManagedComputer $discoveryResults.CustomMonitoringObjects Note: This will configure the agent to report to the Management Server you are…

5

List of supported network devices in Operations Manager 2012

This question came in today and Vishnu Nath, Program Manager at Microsoft, gave a very concise answer.  This made for an excellent blog post! “In Operations Manager 2012 we support monitoring of network devices that support SNMP.  Port monitoring is available for devices that have implemented the interface MIB (RFC 2863) and MIB-II (RFC 1213)…

5

Monitor Default Management Pack

It seems almost inevitable that the Default Management Pack will become cluttered in time.  This primarily comes down to educating staff on being careful not to save anything to the Default Management Pack.  This is one of those "gotchas" in Operations Manager 2007, which we always need to keep in mind while customizing the product…

5