Unsolved
This post is more than 5 years old
4 Posts
0
103226
August 21st, 2007 07:00
clearing OMCI event notifications
Hello all,
Please can someone explain how to clear OMCI event log warnings (i.e. chassis intrusion detected, etc). I have ensured that the BIOS event log on the client has been cleared, however the OS on the client is an MS RIS image that must have still had the event logged when sysprep'd, thus whenever OMCI is installed on a client it keeps popping up with a chassis intrusion warning... which is very annoying for the end user.
0 events found
No Events found!


OMNavigator
291 Posts
0
August 21st, 2007 10:00
angy titan
4 Posts
0
August 21st, 2007 12:00
atxjayhawk
33 Posts
0
October 26th, 2007 22:00
angy titan
4 Posts
0
October 30th, 2007 07:00
atxjayhawk
33 Posts
0
October 30th, 2007 12:00
'*** Name: SampleChssisIntrusionClear.vbs
'*** Purpose: To clear the chassis intrusion status on a Dell OMCI client.
'*** Usage: cscript.exe //nologo SampleChassisIntrusionClear.vbs
'***
'*** This sample script is provided as an example only, and has not been
'*** tested, nor is warranted in any way by Dell; Dell disclaims any
'*** liability in connection therewith. Dell provides no technical
'*** support with regard to such scripting. For more information on WMI
'*** scripting, refer to applicable Microsoft documentation.
'**********************************************************************
Dim strNameSpace
Dim strComputerName
Dim strClassName
Dim strKeyValue
Dim objInstance
Dim strPropName
Dim strPropValue
'*** and that all parameters were passed
If (LCase(Right(WScript.FullName, 11)) = "wscript.exe" ) Or _
(Wscript.Arguments.Count < 1) Then
Call Usage()
WScript.Quit
End If
strNameSpace = "root/Dellomci"
strComputerName = WScript.Arguments(0)
strClassName = "Dell_SMBIOSSettings"
strKeyValue = "0"
strPropName = "ChassisIntrusionStatus"
'*** only be 1 instance).
Set objInstance = GetObject("WinMgmts:{impersonationLevel=impersonate}//" &_
strComputerName & "/" & strNameSpace & ":" & strClassName & "=" &_
Chr(34) & strKeyValue & Chr(34))
'*** Set the new value for the property and save the instance
objInstance.Properties_.Item(strPropName).Value = 5
objInstance.Put_
If Err.Number <> 0 Then
WScript.Echo "An error occurred during the operation."
End If
Sub Usage()
Dim strMessage
strMessage = "incorrect syntax. You should run: " & vbCRLF & _
"cscript.exe /nologo SampleChassisIntrusionClear.vbs "
WScript.Echo strMessage
End Sub
strKeyValue = "Dell.OMCI.Events.ChassisIntrusion"
strPropName = "PollEnabled"
strKeyValue = "Dell.OMCI.Events.ChassisIntrusion"
strPropName = "MaxDisplayNotifications"
angy titan
4 Posts
0
October 30th, 2007 13:00
atxjayhawk
33 Posts
0
November 9th, 2007 13:00
DanVolpe
11 Posts
0
February 13th, 2012 13:00
is there a way of turning off alerting all together