Skip to main content

Posts

Showing posts from 2012

WMI Error: 424 Object required The processing of Group Policy failed. Windows could not evaluate the Windows Management Instrumentation (WMI) filter for the Group Policy object

Sometimes on the Citrix Xenapp servers (which are based on windows 2008 R2  RDS) , we face WMI issues which we get notified by users trying to Launch applications and getting errors: When we check the %temp% folder for the user on the server where they are launching the apps from we see the log file for Logon Script showing entries like Error: 424 Object required Machine details 27-11-2012 10:31:46 0 (0x0000) The detected IP (Computer is Unreachable!) is not the expected value, switching to alternate IP discovery method Machine details 27-11-2012 10:31:46 0 (0x0000) Also you may see the event 1065 in System Event log on the Server. The processing of Group Policy failed. Windows could not evaluate the Windows Management Instrumentation (WMI) filter for the Group Policy object  When we try to connect to WMI , we see error as shown. Basic Steps: -Ensure that the Windows Management Instrumentation (WMI) service is running on this computer. -Ensu

SCOM 2012 Service Level Dashboard SLD Empty

Faced an issue when we created the Service Level Dashboard in SCOM 2012 As SLD can be created in the SCOM console in 2012 version of it , i went ahead and created a Distributed Application , then associated Service level monitoring with it. Finally i went ahead and created the SLD from SCOM Console. However once the dashboard was created it did not show any data. The Image is shown here: As i was checking online i found a thread on technet forum: http://social.technet.microsoft.com/Forums/en-US/operationsmanagergeneral/thread/def9592c-0de6-47e5-9312-5a5fbbc8df34 Accordingly i checked the Data Warehouse Synchronization Server Discovered Inventory in our case. It was empty. Image as shown: Ran the Powershell Script given in the technet forum: #Note: change these values appropriately $OperationalDbSqlServerInstance = "SDOHHQDBA107.mog.maerskoil.com" $OperationalDbDatabaseName = "OperationsManager" $DataWarehouseSqlServerInstance = "SDOHH

CItrix Edgesight not showing Updated License information

Facing issue with Citrix EdgeSight Server not showing License Trending Usage : As we can see from the Image there was no data from 8th Sept 2012 . When looking into the license details i found somehow the license detail is not updated . Checked the core_lsm_license_poller log  08/09/2012 13:34:42: LicenseServerMonitor: OnTimer: end  08/09/2012 13:49:43: LicenseServerMonitor: OnTimer: begin  08/09/2012 13:49:43: LicenseServerMonitor: PollLicenseServers: begin  08/09/2012 13:49:43: LicenseServerMonitor: PollLicenseServers method invoked *********************************  08/09/2012 13:49:43: LicenseServerMonitor: Begin polling Server LIcServr01 on port 27000  08/09/2012 13:49:43: LicenseServerMonitor: Total Polling Time: 00:00.35  08/09/2012 13:49:43: LicenseServerMonitor: Polling Successful. Total Licenses Retrieved: 13  08/09/2012 13:49:43: LicenseServerMonitor: PollLicenseServers method completed. *******************************  08/09/2012 13:49:4

Monitor Output of SQL Query with SCOM using Property{@Name='State'} Script

We had a requirement to monitor the the output of a Query (Stored Procedure in our case) and the Alert based on the result it generated. In Our case we wanted to monitor something like SELECT statusno from XXX table  If statusno > 0 alert = OK Else Alert = fail End if So it was like If the Output is anything but 0 we wanted an alert. I referenced these 2 articles to create our Script based Monitor http://systemcenter.no/?p=190 http://www.systemcentercentral.com/downloads/downloadsdetails/tabid/144/indexid/7362/default.aspx I faced some issues where in the script gave errors and did not execute correctly. The Script i used and that worked for us is a slight modification of one listed here  http://systemcenter.no/?p=190  to suit our requirement. ****************************************************************************** Dim objCN, strConnection Dim objAPI, oBag Set objCN = CreateObject("ADODB.Connection") Set objAPI = CreateObject("MOM.Scr

SCOM 2012 AppAdvisor Kerberos Issue

Update Sept 23 2012 ******************************** This may not work as i have started to see this issue again ******************************************* I am facing issues while trying to access the AppAdvisor after Installing SCOM 2012 After troubleshooting for a while now i have seen different behaviors and errors that have changed over times. First Error: While Trying to access the http://servername/AppAdvisor or http://servername/AppDiagnostics site locally or remotely it gave an error The event log on the SCOM Server Showed the following Log Name:      Application Source:        ASP.NET 4.0.30319.0 Date:          20-08-2012 11:27:41 Event ID:      1309 Task Category: Web Event Level:         Warning Keywords:      Classic User:          N/A Computer:      SCOMSERVER.domain.com Description: Event code: 3005 Event message: An unhandled exception has occurred. Event time: 20-08-2012 11:27:41 Event time (UTC): 20-08-2012 08:27:41 Event ID: 5af

Failed to Read Icon File from error while Publishing SCCM 2007 Console

Today we had a request to publish SCCM 2007 Console through Citrix I installed the SCCM Console on a couple of XenApp 6.5 servers While Publishing the Console i faced an issue of the ICON file not getting applied while i choose the msc file Below Images Shows the error: "Failed to Read Icon File from" While Searching for dlls in the install directory for the SCCM Console, i found a dll for smssnapinresources.dll i guessed it might have the Icon embedded somewhere in it :) And it did have it. So i choose the icon And it finally worked while publishing the application. Hope this Helps