jkuta
Posts: 14
Score: 0 Joined: 9/13/2007 Status: offline
|
Thanks gjones, prior to your post and through alot of trial and error I had discovered what you stated above as being true so I ended up going with the following WQL collection query: select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System left join SMS_G_System_SYSTEM_CONSOLE_USAGE on SMS_G_System_SYSTEM_CONSOLE_USAGE.ResourceID = SMS_R_System.ResourceId where SMS_G_System_SYSTEM_CONSOLE_USAGE.ResourceID is null and SMS_R_System.Decommissioned = 0 and SMS_R_System.Client = 1 and SMS_R_System.Obsolete = 0 This appears to be working as my collection is showing me all my workstations whose security event logs are not registering events properly. On a side note and in case anyone else is experiencing the same issue whereby security events are not registering in the Security Event log on Windows XP workstations, the fix I am going to deploy involves running the following commands via batch file to recreate the local group policy database. md %windir%\security\oldsec move /y %windir%\security\*.log %windir%\security\oldsec move /y %windir%\security\database\*.sdb %windir%\security\oldsec secedit /configure /db %windir%\security\database\repaired.sdb /cfg "%windir%\security\templates\setup security.inf" /log %windir%\security\repaired.log Thanks again jnelson993 and gjones for your insight.
< Message edited by jkuta -- 12/6/2008 1:47:42 PM >
_____________________________
JK
|