Skip to main content

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.
-Ensure that the Remote Procedure Call (RPC) service is running on this computer.

Resolution in our Case:

What i did was to run the following commands to solve the issue:

winmgmt /verifyrepository

This may give you some details like errors :  WMI repository is INCONSISTENT

then run the following command: 

winmgmt /salvagerepository 

(In my case i had to run winmgmt /salvagerepository  twice as 1st time it showed me an error)

C:\>winmgmt /salvagerepository
WMI repository salvage failed


Once you run it the 2nd time you should see this :

C:\>winmgmt /salvagerepository
WMI repository has been salvaged


Sometimes you may get this error when you run the command


WMI repository salvage failed
Error code:     0x8007041B
Facility:       Win32
Description:    A stop control has been sent to a service that other running services are dependent on.


You might have to stop the Windows Management Instrumentation manually , and then re-run the same command.



Hope this Helps

Comments

Popular posts from this blog

Group Policy Object did not apply because it failed with error code '0x80070534 No mapping between account names and security IDs was done

One of our servers was losing the Local Admin settings as we control them using GPO (restricted Groups) We were receiving the following event on this particular server : Event ID 4098 Application Event Log The computer 'Administrators (built-in)' preference item in the 'Servers Local Admins {odjd9DBD-22AF-48EA-ADF5-F42ADE4182hst}' Group Policy Object did not apply because it failed with error code '0x80070534 No mapping between account names and security IDs was done.' This error was suppressed. To fix the issue we deleted all the folders from the following location and rebooted the server C:\ProgramData\Microsoft\Group Policy\History Hope this helps.

iDRAC 7 Shows no Signal in Virtual Console Preview

Recently i logged on to iDRAC for one of our Dell R720 servers,however somehow the console redirection did not work at all. I kept on seeing No Signal on the Virtual console Preview. I tried Rebooting the server but that did not help. Finally i clicked on Reset iDRAC and this did the trick. It may take around 2 -5 minutes before you can access iDRAC page again. I had to power on the server through iDRAC before anything showed up on console. Hope this Helps.

Close Open Files in Isilon

To close Open files in Isilon Sometimes we may have to Close open files on Isilon , This is how we can accomplish it First find all the Open Files using the Following Command: isi_for_array  "isi smb openfiles list" To Narrow the search  we can grep the result  as an example isi_for_array  "isi smb openfiles list" | grep -i abc Once you find the files the 6 digit number is the id for that open file. To close the open file run the following command isi_for_array isi smb openfiles close "123456" -f Hope this helps