Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18215 lines
444 KiB

  1. #pragma namespace("\\\\.\\ROOT")
  2. instance of __namespace{
  3. name="EMM";
  4. };
  5. #pragma namespace("\\\\.\\ROOT\\EMM")
  6. // Event Log record
  7. Class Microsoft_EELEntry
  8. {
  9. [Description ("The EventID property is the GUID. It identifies "
  10. "the event. This is specific to the source that generated "
  11. "the event log entry, and is used, together with SourceSubsystemName, "
  12. "to uniquely identify an event type."), DisplayName("Event ID")]
  13. uint64 EventID;
  14. [Description ("The SourceSubsystemType property reveals the source within "
  15. "the node - Ntevent log, SMS log, etc.."), DisplayName("Source Subsystem Type")]
  16. string SourceSubsystemType;
  17. [Description (" The SourceSubsystemName specifies the name of the "
  18. "source (application, service, driver, subsystem) that generated the "
  19. "entry."), DisplayName("Source Subsystem Name")]
  20. string SourceSubsystemName;
  21. [Description ("The SystemAbout property specifies the name of the ""system that generated this event."), DisplayName("System About")]
  22. string SystemAbout;
  23. [Description ("The SystemFrom property is the original machine that ""reported the event. This may be the same as the SystemAbout property, ""but often will be different."), DisplayName("System From")]
  24. string SystemFrom;
  25. [Description ("The DeliveredBy property specifies the name of the ""computer that deliverd this event. This may be the same as the ""SystemAbout property, but often will be different."), DisplayName("Delivered By")]
  26. string DeliveredBy;
  27. [Description ("The Category property represent the 'standard' category ""of the event as determined by system management guidelines."), DisplayName("Category")]
  28. string Category;
  29. [Description ("The Subcategory property represents additional ""categorization of the event with the Category."), DisplayName("Sub-Category")]
  30. string Subcategory;
  31. [Description ("The Severity property shows the severity level ""assigned to the event by the logging facility."), DisplayName("Severity")]
  32. uint16 Severity;
  33. [Description ("The Priority property contains the priority level ""assigned to the event by the logging facility."),DisplayName("Priority")]
  34. uint16 Priority;
  35. [Description ("The TimeGenerated property specifies the time at which ""the source generated the event. This is the actual event time on the ""local machine."), DisplayName("Time Generated")]
  36. datetime TimeGenerated;
  37. [Description ("The LoggingTime property holds the time when the ""event was recorded on the system. As events are rolledup to higher ""tiers, this time will change and be overwritten. I will always hold ""the time which coresponds to the current tier it was logged on."), DisplayName("Logging Time")]
  38. datetime LoggingTime;
  39. [Description ("The RollupTime property holds the time when the event ""was rolled up, or last forwarded from one level to the next. This ""time will change as event are forwarded, but it will always hold the ""time the event was last sent."), DisplayName("Rollup Time")]
  40. datetime RollupTime;
  41. [Description ("The Message property has additional text attached to ""the log entry (optional). Provides additional details of the event ""occurrence."), DisplayName("Message")]
  42. string Message;
  43. [Description ("The OriginalEvent property is an embedded copy of the ""event instance received by the local logging consumer."),DisplayName("Original Event")]
  44. __Event OriginalEvent;
  45. [Key, Description ("The RecordNumber identifies the event within the ""Eventlog logfile. This is specific to the logfile and is used ""together with the logfile name to uniquely identify an instance ""of this class."), DisplayName("Record Number")]
  46. uint64 RecordNumber;
  47. [Description ("The User property indentifies the name of the logged on ""user when the event ocurred. If the user name cannot be determined this ""will be NULL."), DisplayName("User")]
  48. string User;
  49. [Description ("The Type property specifies the type of event."),DisplayName("Type Event"),ValueMap {"0","1", "2", "3","4","5", "6"}, Values {"red alert", "error", "warning", "information", "security audit success","security audit failure", "garbage"}]
  50. uint8 Type;
  51. [Description ("The classification property specifies the usage of the ""type of event."), DisplayName("Classification"),ValueMap {"1", "2", "3","4","5","6","7","8"} ,Values {"discovery", "inventory", "configuration","operation/availability", "problem management", "threshold crossings","Performance and Capacity","Billing"} ]
  52. uint32 Classification;
  53. [Description ("The LogType property indicates which type of log file ""this EELEntry belongs to. For example, 'System'."), DisplayName("Log Type"), ValueMap {"1", "2", "3"}, Values {"System", "Application", "Security"}]
  54. uint32 LogType;
  55. };
  56. Class Microsoft_EELTOC
  57. {
  58. [key] string Category;
  59. string Description;
  60. };
  61. Class Microsoft_EELTOCEntryInFile
  62. {
  63. [key] Microsoft_EELTOC REF TOC;
  64. [key] Microsoft_EELEntry REF Entry;
  65. };
  66. // Various mouse events
  67. [AbstractEvent]
  68. class Win32_MouseRelatedEvent : __ExtrinsicEvent
  69. {
  70. uint32 Xcoordinate;
  71. uint32 Ycoordinate;
  72. boolean ControlPressed;
  73. boolean AltPressed;
  74. };
  75. class Win32_MouseMoveEvent : Win32_MouseRelatedEvent
  76. {
  77. };
  78. [AbstractEvent]
  79. class Win32_MouseClickEvent : Win32_MouseRelatedEvent
  80. {
  81. uint8 ButtonIndex;
  82. };
  83. class Win32_MouseDownEvent : Win32_MouseClickEvent
  84. {
  85. uint8 ButtonIndex;
  86. };
  87. class Win32_MouseUpEvent : Win32_MouseClickEvent
  88. {
  89. uint8 ButtonIndex;
  90. };
  91. instance of Microsoft_EELEntry
  92. {
  93. EventId = "2";
  94. SourceSubsystemType="SMS Log";
  95. SourceSubsystemName ="server";
  96. SystemAbout = "amitc_i1";
  97. SystemFrom = "amitc_i2";
  98. DeliveredBy = "amitc_i2";
  99. Category="message";
  100. Subcategory="mice";
  101. Priority = 3;
  102. Severity = 2;
  103. TimeGenerated = "19950610155726.151753+480";
  104. LoggingTime = "20001119140326.170129+480";
  105. RollupTime = "19910222234309.189709+480";
  106. Message = "Message with key to search = 1881725647";
  107. RecordNumber = "2";
  108. User = "N/A";
  109. Type = 4;
  110. Classification = 7;
  111. LogType = 3;
  112. OriginalEvent = instance of Win32_MouseUpEvent
  113. {
  114. XCoordinate = 800;
  115. YCoordinate = 190;
  116. AltPressed = true;
  117. ControlPressed = true;
  118. ButtonIndex = 0;
  119. };
  120. };
  121. instance of Microsoft_EELTOCEntryInFile
  122. {
  123. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  124. Entry ="Microsoft_EELEntry='2'";
  125. };
  126. instance of Microsoft_EELEntry
  127. {
  128. EventId = "3";
  129. SourceSubsystemType="SMS Log";
  130. SourceSubsystemName ="application";
  131. SystemAbout = "ruchitan_1";
  132. SystemFrom = "ruchitan_1";
  133. DeliveredBy = "ruchitan_1";
  134. Category="message";
  135. Subcategory="mice";
  136. Priority = 3;
  137. Severity = 2;
  138. TimeGenerated = "19930412093827.162387+480";
  139. LoggingTime = "19960711162225.199947+480";
  140. RollupTime = "19980905063923.191940+480";
  141. Message = "Message with key to search = 2011444092";
  142. RecordNumber = "3";
  143. User = "sriravi";
  144. Type = 0;
  145. Classification = 3;
  146. LogType = 2;
  147. OriginalEvent = instance of Win32_MouseDownEvent
  148. {
  149. XCoordinate = 901;
  150. YCoordinate = 570;
  151. AltPressed = false;
  152. ControlPressed = true;
  153. ButtonIndex = 2;
  154. };
  155. };
  156. instance of Microsoft_EELTOCEntryInFile
  157. {
  158. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  159. Entry ="Microsoft_EELEntry='3'";
  160. };
  161. instance of Microsoft_EELEntry
  162. {
  163. EventId = "4";
  164. SourceSubsystemType="NT Event Log";
  165. SourceSubsystemName ="application";
  166. SystemAbout = "amitc_i2";
  167. SystemFrom = "ruchitan_1";
  168. DeliveredBy = "ruchitan_1";
  169. Category="message";
  170. Subcategory="mice";
  171. Priority = 2;
  172. Severity = 2;
  173. TimeGenerated = "19960703055218.175223+480";
  174. LoggingTime = "19960727084509.100480+480";
  175. RollupTime = "19960723130703.170768+480";
  176. Message = "Message with key to search = 1439765616";
  177. RecordNumber = "4";
  178. User = "amit";
  179. Type = 6;
  180. Classification = 2;
  181. LogType = 1;
  182. OriginalEvent = instance of Win32_MouseMoveEvent
  183. {
  184. XCoordinate = 398;
  185. YCoordinate = 424;
  186. AltPressed = true;
  187. ControlPressed = false;
  188. };
  189. };
  190. instance of Microsoft_EELTOCEntryInFile
  191. {
  192. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  193. Entry ="Microsoft_EELEntry='4'";
  194. };
  195. instance of Microsoft_EELEntry
  196. {
  197. EventId = "5";
  198. SourceSubsystemType="SMS Log";
  199. SourceSubsystemName ="application";
  200. SystemAbout = "ruchitan_2";
  201. SystemFrom = "ruchitan_2";
  202. DeliveredBy = "ruchitan_1";
  203. Category="message";
  204. Subcategory="mice";
  205. Priority = 4;
  206. Severity = 1;
  207. TimeGenerated = "19910214072226.138663+480";
  208. LoggingTime = "19991006230209.135986+480";
  209. RollupTime = "19960707154025.175377+480";
  210. Message = "Message with key to search = 1944029089";
  211. RecordNumber = "5";
  212. User = "rishi";
  213. Type = 0;
  214. Classification = 7;
  215. LogType = 2;
  216. OriginalEvent = instance of Win32_MouseClickEvent
  217. {
  218. XCoordinate = 184;
  219. YCoordinate = 156;
  220. AltPressed = true;
  221. ControlPressed = false;
  222. ButtonIndex = 0;
  223. };
  224. };
  225. instance of Microsoft_EELTOCEntryInFile
  226. {
  227. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  228. Entry ="Microsoft_EELEntry='5'";
  229. };
  230. instance of Microsoft_EELEntry
  231. {
  232. EventId = "6";
  233. SourceSubsystemType="SMS Log";
  234. SourceSubsystemName ="server";
  235. SystemAbout = "ruchitan_1";
  236. SystemFrom = "ruchitan_2";
  237. DeliveredBy = "amitc_i1";
  238. Category="message";
  239. Subcategory="mice";
  240. Priority = 4;
  241. Severity = 1;
  242. TimeGenerated = "19930404004524.170933+480";
  243. LoggingTime = "20001127112019.136580+480";
  244. RollupTime = "19930428043520.172954+480";
  245. Message = "Message with key to search = 1598572795";
  246. RecordNumber = "6";
  247. User = "rishi";
  248. Type = 1;
  249. Classification = 8;
  250. LogType = 2;
  251. OriginalEvent = instance of Win32_MouseUpEvent
  252. {
  253. XCoordinate = 371;
  254. YCoordinate = 417;
  255. AltPressed = true;
  256. ControlPressed = true;
  257. ButtonIndex = 1;
  258. };
  259. };
  260. instance of Microsoft_EELTOCEntryInFile
  261. {
  262. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  263. Entry ="Microsoft_EELEntry='6'";
  264. };
  265. instance of Microsoft_EELEntry
  266. {
  267. EventId = "7";
  268. SourceSubsystemType="SMS Log";
  269. SourceSubsystemName ="application";
  270. SystemAbout = "amitc_i2";
  271. SystemFrom = "ruchitan_2";
  272. DeliveredBy = "ruchitan_1";
  273. Category="message";
  274. Subcategory="mice";
  275. Priority = 1;
  276. Severity = 3;
  277. TimeGenerated = "19920303042617.116909+480";
  278. LoggingTime = "20001107031808.134121+480";
  279. RollupTime = "20011228180914.185412+480";
  280. Message = "Message with key to search = 52351648";
  281. RecordNumber = "7";
  282. User = "sriravi";
  283. Type = 4;
  284. Classification = 6;
  285. LogType = 1;
  286. OriginalEvent = instance of Win32_MouseDownEvent
  287. {
  288. XCoordinate = 793;
  289. YCoordinate = 681;
  290. AltPressed = true;
  291. ControlPressed = false;
  292. ButtonIndex = 0;
  293. };
  294. };
  295. instance of Microsoft_EELTOCEntryInFile
  296. {
  297. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  298. Entry ="Microsoft_EELEntry='7'";
  299. };
  300. instance of Microsoft_EELEntry
  301. {
  302. EventId = "8";
  303. SourceSubsystemType="NT Event Log";
  304. SourceSubsystemName ="driver";
  305. SystemAbout = "ruchitan_2";
  306. SystemFrom = "amitc_i2";
  307. DeliveredBy = "amitc_i2";
  308. Category="message";
  309. Subcategory="mice";
  310. Priority = 2;
  311. Severity = 3;
  312. TimeGenerated = "19960711075504.126762+480";
  313. LoggingTime = "19960703104711.126881+480";
  314. RollupTime = "19930424161315.197799+480";
  315. Message = "Message with key to search = 366666560";
  316. RecordNumber = "8";
  317. User = "sriravi";
  318. Type = 3;
  319. Classification = 2;
  320. LogType = 3;
  321. OriginalEvent = instance of Win32_MouseMoveEvent
  322. {
  323. XCoordinate = 784;
  324. YCoordinate = 470;
  325. AltPressed = false;
  326. ControlPressed = true;
  327. };
  328. };
  329. instance of Microsoft_EELTOCEntryInFile
  330. {
  331. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  332. Entry ="Microsoft_EELEntry='8'";
  333. };
  334. instance of Microsoft_EELEntry
  335. {
  336. EventId = "9";
  337. SourceSubsystemType="NT Event Log";
  338. SourceSubsystemName ="server";
  339. SystemAbout = "amitc_i1";
  340. SystemFrom = "amitc_i1";
  341. DeliveredBy = "amitc_i1";
  342. Category="message";
  343. Subcategory="mice";
  344. Priority = 2;
  345. Severity = 4;
  346. TimeGenerated = "19980921122105.157932+480";
  347. LoggingTime = "19960715163119.158053+480";
  348. RollupTime = "19980917134223.182569+480";
  349. Message = "Message with key to search = 1893537332";
  350. RecordNumber = "9";
  351. User = "rishi";
  352. Type = 5;
  353. Classification = 2;
  354. LogType = 2;
  355. OriginalEvent = instance of Win32_MouseClickEvent
  356. {
  357. XCoordinate = 31;
  358. YCoordinate = 368;
  359. AltPressed = true;
  360. ControlPressed = true;
  361. ButtonIndex = 2;
  362. };
  363. };
  364. instance of Microsoft_EELTOCEntryInFile
  365. {
  366. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  367. Entry ="Microsoft_EELEntry='9'";
  368. };
  369. instance of Microsoft_EELEntry
  370. {
  371. EventId = "10";
  372. SourceSubsystemType="NT Event Log";
  373. SourceSubsystemName ="server";
  374. SystemAbout = "ruchitan_2";
  375. SystemFrom = "ruchitan_2";
  376. DeliveredBy = "amitc_i1";
  377. Category="message";
  378. Subcategory="mice";
  379. Priority = 2;
  380. Severity = 2;
  381. TimeGenerated = "19960703055200.132165+480";
  382. LoggingTime = "19991026033900.112810+480";
  383. RollupTime = "19970808133026.117980+480";
  384. Message = "Message with key to search = 1615537439";
  385. RecordNumber = "10";
  386. User = "N/A";
  387. Type = 0;
  388. Classification = 7;
  389. LogType = 3;
  390. OriginalEvent = instance of Win32_MouseUpEvent
  391. {
  392. XCoordinate = 643;
  393. YCoordinate = 47;
  394. AltPressed = true;
  395. ControlPressed = true;
  396. ButtonIndex = 1;
  397. };
  398. };
  399. instance of Microsoft_EELTOCEntryInFile
  400. {
  401. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  402. Entry ="Microsoft_EELEntry='10'";
  403. };
  404. instance of Microsoft_EELEntry
  405. {
  406. EventId = "11";
  407. SourceSubsystemType="SMS Log";
  408. SourceSubsystemName ="Unknown";
  409. SystemAbout = "ruchitan_2";
  410. SystemFrom = "ruchitan_1";
  411. DeliveredBy = "amitc_i2";
  412. Category="message";
  413. Subcategory="mice";
  414. Priority = 4;
  415. Severity = 1;
  416. TimeGenerated = "19970820003112.105754+480";
  417. LoggingTime = "19900121041809.135008+480";
  418. RollupTime = "19970820220914.113426+480";
  419. Message = "Message with key to search = 934680001";
  420. RecordNumber = "11";
  421. User = "sriravi";
  422. Type = 6;
  423. Classification = 1;
  424. LogType = 1;
  425. OriginalEvent = instance of Win32_MouseDownEvent
  426. {
  427. XCoordinate = 945;
  428. YCoordinate = 496;
  429. AltPressed = true;
  430. ControlPressed = false;
  431. ButtonIndex = 1;
  432. };
  433. };
  434. instance of Microsoft_EELTOCEntryInFile
  435. {
  436. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  437. Entry ="Microsoft_EELEntry='11'";
  438. };
  439. instance of Microsoft_EELEntry
  440. {
  441. EventId = "12";
  442. SourceSubsystemType="NT Event Log";
  443. SourceSubsystemName ="driver";
  444. SystemAbout = "amitc_i1";
  445. SystemFrom = "amitc_i1";
  446. DeliveredBy = "ruchitan_1";
  447. Category="message";
  448. Subcategory="mice";
  449. Priority = 3;
  450. Severity = 1;
  451. TimeGenerated = "19920315160628.145573+480";
  452. LoggingTime = "20001115000505.140927+480";
  453. RollupTime = "19900101190622.121281+480";
  454. Message = "Message with key to search = 1995047675";
  455. RecordNumber = "12";
  456. User = "N/A";
  457. Type = 6;
  458. Classification = 4;
  459. LogType = 2;
  460. OriginalEvent = instance of Win32_MouseMoveEvent
  461. {
  462. XCoordinate = 8;
  463. YCoordinate = 667;
  464. AltPressed = false;
  465. ControlPressed = true;
  466. };
  467. };
  468. instance of Microsoft_EELTOCEntryInFile
  469. {
  470. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  471. Entry ="Microsoft_EELEntry='12'";
  472. };
  473. instance of Microsoft_EELEntry
  474. {
  475. EventId = "13";
  476. SourceSubsystemType="SMS Log";
  477. SourceSubsystemName ="Unknown";
  478. SystemAbout = "ruchitan_2";
  479. SystemFrom = "amitc_i1";
  480. DeliveredBy = "ruchitan_2";
  481. Category="message";
  482. Subcategory="mice";
  483. Priority = 4;
  484. Severity = 1;
  485. TimeGenerated = "19950618155621.185340+480";
  486. LoggingTime = "19960711070622.177716+480";
  487. RollupTime = "19991022132801.152087+480";
  488. Message = "Message with key to search = 2098297320";
  489. RecordNumber = "13";
  490. User = "rishi";
  491. Type = 2;
  492. Classification = 4;
  493. LogType = 1;
  494. OriginalEvent = instance of Win32_MouseClickEvent
  495. {
  496. XCoordinate = 98;
  497. YCoordinate = 217;
  498. AltPressed = true;
  499. ControlPressed = false;
  500. ButtonIndex = 2;
  501. };
  502. };
  503. instance of Microsoft_EELTOCEntryInFile
  504. {
  505. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  506. Entry ="Microsoft_EELEntry='13'";
  507. };
  508. instance of Microsoft_EELEntry
  509. {
  510. EventId = "14";
  511. SourceSubsystemType="NT Event Log";
  512. SourceSubsystemName ="Unknown";
  513. SystemAbout = "amitc_i1";
  514. SystemFrom = "ruchitan_2";
  515. DeliveredBy = "amitc_i2";
  516. Category="message";
  517. Subcategory="mice";
  518. Priority = 1;
  519. Severity = 2;
  520. TimeGenerated = "19950618050914.110562+480";
  521. LoggingTime = "19930416160120.147874+480";
  522. RollupTime = "19980905052404.153166+480";
  523. Message = "Message with key to search = 1512696655";
  524. RecordNumber = "14";
  525. User = "N/A";
  526. Type = 6;
  527. Classification = 2;
  528. LogType = 2;
  529. OriginalEvent = instance of Win32_MouseUpEvent
  530. {
  531. XCoordinate = 777;
  532. YCoordinate = 574;
  533. AltPressed = false;
  534. ControlPressed = true;
  535. ButtonIndex = 2;
  536. };
  537. };
  538. instance of Microsoft_EELTOCEntryInFile
  539. {
  540. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  541. Entry ="Microsoft_EELEntry='14'";
  542. };
  543. instance of Microsoft_EELEntry
  544. {
  545. EventId = "15";
  546. SourceSubsystemType="SMS Log";
  547. SourceSubsystemName ="server";
  548. SystemAbout = "ruchitan_2";
  549. SystemFrom = "ruchitan_1";
  550. DeliveredBy = "ruchitan_2";
  551. Category="message";
  552. Subcategory="mice";
  553. Priority = 4;
  554. Severity = 4;
  555. TimeGenerated = "19960711233423.153055+480";
  556. LoggingTime = "19970816093010.190510+480";
  557. RollupTime = "19900113170312.146908+480";
  558. Message = "Message with key to search = 268694144";
  559. RecordNumber = "15";
  560. User = "sriravi";
  561. Type = 0;
  562. Classification = 1;
  563. LogType = 3;
  564. OriginalEvent = instance of Win32_MouseDownEvent
  565. {
  566. XCoordinate = 201;
  567. YCoordinate = 41;
  568. AltPressed = false;
  569. ControlPressed = true;
  570. ButtonIndex = 2;
  571. };
  572. };
  573. instance of Microsoft_EELTOCEntryInFile
  574. {
  575. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  576. Entry ="Microsoft_EELEntry='15'";
  577. };
  578. instance of Microsoft_EELEntry
  579. {
  580. EventId = "16";
  581. SourceSubsystemType="NT Event Log";
  582. SourceSubsystemName ="Unknown";
  583. SystemAbout = "ruchitan_1";
  584. SystemFrom = "ruchitan_2";
  585. DeliveredBy = "amitc_i2";
  586. Category="message";
  587. Subcategory="mice";
  588. Priority = 1;
  589. Severity = 4;
  590. TimeGenerated = "19910218020114.129970+480";
  591. LoggingTime = "20011208020901.124527+480";
  592. RollupTime = "19920315005517.105990+480";
  593. Message = "Message with key to search = 911042379";
  594. RecordNumber = "16";
  595. User = "sriravi";
  596. Type = 0;
  597. Classification = 7;
  598. LogType = 3;
  599. OriginalEvent = instance of Win32_MouseMoveEvent
  600. {
  601. XCoordinate = 938;
  602. YCoordinate = 620;
  603. AltPressed = true;
  604. ControlPressed = true;
  605. };
  606. };
  607. instance of Microsoft_EELTOCEntryInFile
  608. {
  609. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  610. Entry ="Microsoft_EELEntry='16'";
  611. };
  612. instance of Microsoft_EELEntry
  613. {
  614. EventId = "17";
  615. SourceSubsystemType="SMS Log";
  616. SourceSubsystemName ="Unknown";
  617. SystemAbout = "ruchitan_2";
  618. SystemFrom = "amitc_i2";
  619. DeliveredBy = "ruchitan_1";
  620. Category="message";
  621. Subcategory="mice";
  622. Priority = 1;
  623. Severity = 2;
  624. TimeGenerated = "19970828004607.102275+480";
  625. LoggingTime = "19980917164701.143267+480";
  626. RollupTime = "19991018034618.185910+480";
  627. Message = "Message with key to search = 2050057783";
  628. RecordNumber = "17";
  629. User = "rishi";
  630. Type = 3;
  631. Classification = 4;
  632. LogType = 2;
  633. OriginalEvent = instance of Win32_MouseClickEvent
  634. {
  635. XCoordinate = 82;
  636. YCoordinate = 172;
  637. AltPressed = false;
  638. ControlPressed = true;
  639. ButtonIndex = 0;
  640. };
  641. };
  642. instance of Microsoft_EELTOCEntryInFile
  643. {
  644. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  645. Entry ="Microsoft_EELEntry='17'";
  646. };
  647. instance of Microsoft_EELEntry
  648. {
  649. EventId = "18";
  650. SourceSubsystemType="NT Event Log";
  651. SourceSubsystemName ="driver";
  652. SystemAbout = "ruchitan_2";
  653. SystemFrom = "amitc_i1";
  654. DeliveredBy = "amitc_i1";
  655. Category="message";
  656. Subcategory="mice";
  657. Priority = 2;
  658. Severity = 3;
  659. TimeGenerated = "19900105224505.171001+480";
  660. LoggingTime = "19920311133427.159521+480";
  661. RollupTime = "19950618225000.139459+480";
  662. Message = "Message with key to search = 1920750131";
  663. RecordNumber = "18";
  664. User = "N/A";
  665. Type = 3;
  666. Classification = 3;
  667. LogType = 1;
  668. OriginalEvent = instance of Win32_MouseUpEvent
  669. {
  670. XCoordinate = 691;
  671. YCoordinate = 601;
  672. AltPressed = false;
  673. ControlPressed = false;
  674. ButtonIndex = 1;
  675. };
  676. };
  677. instance of Microsoft_EELTOCEntryInFile
  678. {
  679. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  680. Entry ="Microsoft_EELEntry='18'";
  681. };
  682. instance of Microsoft_EELEntry
  683. {
  684. EventId = "19";
  685. SourceSubsystemType="NT Event Log";
  686. SourceSubsystemName ="Unknown";
  687. SystemAbout = "amitc_i1";
  688. SystemFrom = "ruchitan_1";
  689. DeliveredBy = "ruchitan_1";
  690. Category="message";
  691. Subcategory="mice";
  692. Priority = 2;
  693. Severity = 1;
  694. TimeGenerated = "19920307064618.192254+480";
  695. LoggingTime = "19970828204001.179378+480";
  696. RollupTime = "19940517020115.161513+480";
  697. Message = "Message with key to search = 860659350";
  698. RecordNumber = "19";
  699. User = "amit";
  700. Type = 1;
  701. Classification = 4;
  702. LogType = 1;
  703. OriginalEvent = instance of Win32_MouseDownEvent
  704. {
  705. XCoordinate = 812;
  706. YCoordinate = 96;
  707. AltPressed = true;
  708. ControlPressed = false;
  709. ButtonIndex = 2;
  710. };
  711. };
  712. instance of Microsoft_EELTOCEntryInFile
  713. {
  714. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  715. Entry ="Microsoft_EELEntry='19'";
  716. };
  717. instance of Microsoft_EELEntry
  718. {
  719. EventId = "20";
  720. SourceSubsystemType="SMS Log";
  721. SourceSubsystemName ="application";
  722. SystemAbout = "amitc_i1";
  723. SystemFrom = "ruchitan_2";
  724. DeliveredBy = "amitc_i2";
  725. Category="message";
  726. Subcategory="mice";
  727. Priority = 1;
  728. Severity = 1;
  729. TimeGenerated = "19920327035621.110986+480";
  730. LoggingTime = "19991022174424.190373+480";
  731. RollupTime = "19980905095018.136478+480";
  732. Message = "Message with key to search = 1692250937";
  733. RecordNumber = "20";
  734. User = "rishi";
  735. Type = 3;
  736. Classification = 8;
  737. LogType = 3;
  738. OriginalEvent = instance of Win32_MouseMoveEvent
  739. {
  740. XCoordinate = 909;
  741. YCoordinate = 400;
  742. AltPressed = true;
  743. ControlPressed = false;
  744. };
  745. };
  746. instance of Microsoft_EELTOCEntryInFile
  747. {
  748. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  749. Entry ="Microsoft_EELEntry='20'";
  750. };
  751. instance of Microsoft_EELEntry
  752. {
  753. EventId = "21";
  754. SourceSubsystemType="NT Event Log";
  755. SourceSubsystemName ="Unknown";
  756. SystemAbout = "ruchitan_1";
  757. SystemFrom = "amitc_i1";
  758. DeliveredBy = "amitc_i1";
  759. Category="message";
  760. Subcategory="mice";
  761. Priority = 2;
  762. Severity = 2;
  763. TimeGenerated = "19930416014613.173256+480";
  764. LoggingTime = "19980905064527.125402+480";
  765. RollupTime = "19970816121826.161869+480";
  766. Message = "Message with key to search = 1195205867";
  767. RecordNumber = "21";
  768. User = "sriravi";
  769. Type = 3;
  770. Classification = 5;
  771. LogType = 1;
  772. OriginalEvent = instance of Win32_MouseClickEvent
  773. {
  774. XCoordinate = 681;
  775. YCoordinate = 527;
  776. AltPressed = false;
  777. ControlPressed = false;
  778. ButtonIndex = 1;
  779. };
  780. };
  781. instance of Microsoft_EELTOCEntryInFile
  782. {
  783. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  784. Entry ="Microsoft_EELEntry='21'";
  785. };
  786. instance of Microsoft_EELEntry
  787. {
  788. EventId = "22";
  789. SourceSubsystemType="NT Event Log";
  790. SourceSubsystemName ="server";
  791. SystemAbout = "ruchitan_2";
  792. SystemFrom = "ruchitan_1";
  793. DeliveredBy = "ruchitan_1";
  794. Category="message";
  795. Subcategory="mice";
  796. Priority = 2;
  797. Severity = 4;
  798. TimeGenerated = "19980909003005.154466+480";
  799. LoggingTime = "19950602133607.178217+480";
  800. RollupTime = "19940501195500.100338+480";
  801. Message = "Message with key to search = 188663958";
  802. RecordNumber = "22";
  803. User = "rishi";
  804. Type = 1;
  805. Classification = 1;
  806. LogType = 1;
  807. OriginalEvent = instance of Win32_MouseUpEvent
  808. {
  809. XCoordinate = 837;
  810. YCoordinate = 304;
  811. AltPressed = true;
  812. ControlPressed = true;
  813. ButtonIndex = 2;
  814. };
  815. };
  816. instance of Microsoft_EELTOCEntryInFile
  817. {
  818. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  819. Entry ="Microsoft_EELEntry='22'";
  820. };
  821. instance of Microsoft_EELEntry
  822. {
  823. EventId = "23";
  824. SourceSubsystemType="SMS Log";
  825. SourceSubsystemName ="driver";
  826. SystemAbout = "amitc_i1";
  827. SystemFrom = "ruchitan_1";
  828. DeliveredBy = "ruchitan_2";
  829. Category="message";
  830. Subcategory="mice";
  831. Priority = 2;
  832. Severity = 4;
  833. TimeGenerated = "19930404074820.138172+480";
  834. LoggingTime = "19950602095010.142845+480";
  835. RollupTime = "19940505013210.150789+480";
  836. Message = "Message with key to search = 820110793";
  837. RecordNumber = "23";
  838. User = "sriravi";
  839. Type = 3;
  840. Classification = 5;
  841. LogType = 1;
  842. OriginalEvent = instance of Win32_MouseDownEvent
  843. {
  844. XCoordinate = 82;
  845. YCoordinate = 606;
  846. AltPressed = true;
  847. ControlPressed = true;
  848. ButtonIndex = 1;
  849. };
  850. };
  851. instance of Microsoft_EELTOCEntryInFile
  852. {
  853. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  854. Entry ="Microsoft_EELEntry='23'";
  855. };
  856. instance of Microsoft_EELEntry
  857. {
  858. EventId = "24";
  859. SourceSubsystemType="NT Event Log";
  860. SourceSubsystemName ="driver";
  861. SystemAbout = "amitc_i2";
  862. SystemFrom = "ruchitan_1";
  863. DeliveredBy = "amitc_i2";
  864. Category="message";
  865. Subcategory="mice";
  866. Priority = 1;
  867. Severity = 4;
  868. TimeGenerated = "19940509174024.157763+480";
  869. LoggingTime = "19950622043013.156814+480";
  870. RollupTime = "19970816045718.191873+480";
  871. Message = "Message with key to search = 1835353422";
  872. RecordNumber = "24";
  873. User = "amit";
  874. Type = 4;
  875. Classification = 5;
  876. LogType = 2;
  877. OriginalEvent = instance of Win32_MouseMoveEvent
  878. {
  879. XCoordinate = 929;
  880. YCoordinate = 403;
  881. AltPressed = false;
  882. ControlPressed = true;
  883. };
  884. };
  885. instance of Microsoft_EELTOCEntryInFile
  886. {
  887. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  888. Entry ="Microsoft_EELEntry='24'";
  889. };
  890. instance of Microsoft_EELEntry
  891. {
  892. EventId = "25";
  893. SourceSubsystemType="NT Event Log";
  894. SourceSubsystemName ="server";
  895. SystemAbout = "amitc_i1";
  896. SystemFrom = "ruchitan_1";
  897. DeliveredBy = "amitc_i2";
  898. Category="message";
  899. Subcategory="mice";
  900. Priority = 3;
  901. Severity = 1;
  902. TimeGenerated = "19920303150825.170060+480";
  903. LoggingTime = "19960703104711.126881+480";
  904. RollupTime = "19970804180823.187344+480";
  905. Message = "Message with key to search = 1420187784";
  906. RecordNumber = "25";
  907. User = "rishi";
  908. Type = 1;
  909. Classification = 2;
  910. LogType = 2;
  911. OriginalEvent = instance of Win32_MouseClickEvent
  912. {
  913. XCoordinate = 703;
  914. YCoordinate = 457;
  915. AltPressed = true;
  916. ControlPressed = false;
  917. ButtonIndex = 1;
  918. };
  919. };
  920. instance of Microsoft_EELTOCEntryInFile
  921. {
  922. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  923. Entry ="Microsoft_EELEntry='25'";
  924. };
  925. instance of Microsoft_EELEntry
  926. {
  927. EventId = "26";
  928. SourceSubsystemType="SMS Log";
  929. SourceSubsystemName ="driver";
  930. SystemAbout = "ruchitan_1";
  931. SystemFrom = "ruchitan_2";
  932. DeliveredBy = "ruchitan_1";
  933. Category="message";
  934. Subcategory="mice";
  935. Priority = 2;
  936. Severity = 2;
  937. TimeGenerated = "19900117054321.198969+480";
  938. LoggingTime = "19980913182411.163960+480";
  939. RollupTime = "19980909200525.184953+480";
  940. Message = "Message with key to search = 1717431413";
  941. RecordNumber = "26";
  942. User = "amit";
  943. Type = 4;
  944. Classification = 8;
  945. LogType = 3;
  946. OriginalEvent = instance of Win32_MouseUpEvent
  947. {
  948. XCoordinate = 35;
  949. YCoordinate = 315;
  950. AltPressed = true;
  951. ControlPressed = false;
  952. ButtonIndex = 0;
  953. };
  954. };
  955. instance of Microsoft_EELTOCEntryInFile
  956. {
  957. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  958. Entry ="Microsoft_EELEntry='26'";
  959. };
  960. instance of Microsoft_EELEntry
  961. {
  962. EventId = "27";
  963. SourceSubsystemType="NT Event Log";
  964. SourceSubsystemName ="driver";
  965. SystemAbout = "ruchitan_2";
  966. SystemFrom = "ruchitan_2";
  967. DeliveredBy = "amitc_i2";
  968. Category="message";
  969. Subcategory="mice";
  970. Priority = 3;
  971. Severity = 4;
  972. TimeGenerated = "19920307150420.115541+480";
  973. LoggingTime = "19970828061705.151958+480";
  974. RollupTime = "19930416010010.129644+480";
  975. Message = "Message with key to search = 997631946";
  976. RecordNumber = "27";
  977. User = "N/A";
  978. Type = 0;
  979. Classification = 8;
  980. LogType = 1;
  981. OriginalEvent = instance of Win32_MouseDownEvent
  982. {
  983. XCoordinate = 632;
  984. YCoordinate = 715;
  985. AltPressed = true;
  986. ControlPressed = true;
  987. ButtonIndex = 1;
  988. };
  989. };
  990. instance of Microsoft_EELTOCEntryInFile
  991. {
  992. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  993. Entry ="Microsoft_EELEntry='27'";
  994. };
  995. instance of Microsoft_EELEntry
  996. {
  997. EventId = "28";
  998. SourceSubsystemType="SMS Log";
  999. SourceSubsystemName ="server";
  1000. SystemAbout = "ruchitan_2";
  1001. SystemFrom = "amitc_i1";
  1002. DeliveredBy = "amitc_i1";
  1003. Category="message";
  1004. Subcategory="mice";
  1005. Priority = 3;
  1006. Severity = 2;
  1007. TimeGenerated = "19920311202315.116683+480";
  1008. LoggingTime = "19950614230603.179186+480";
  1009. RollupTime = "19920315091508.140255+480";
  1010. Message = "Message with key to search = 1581271226";
  1011. RecordNumber = "28";
  1012. User = "amit";
  1013. Type = 4;
  1014. Classification = 6;
  1015. LogType = 1;
  1016. OriginalEvent = instance of Win32_MouseMoveEvent
  1017. {
  1018. XCoordinate = 472;
  1019. YCoordinate = 297;
  1020. AltPressed = false;
  1021. ControlPressed = true;
  1022. };
  1023. };
  1024. instance of Microsoft_EELTOCEntryInFile
  1025. {
  1026. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  1027. Entry ="Microsoft_EELEntry='28'";
  1028. };
  1029. instance of Microsoft_EELEntry
  1030. {
  1031. EventId = "29";
  1032. SourceSubsystemType="NT Event Log";
  1033. SourceSubsystemName ="driver";
  1034. SystemAbout = "ruchitan_2";
  1035. SystemFrom = "ruchitan_1";
  1036. DeliveredBy = "ruchitan_1";
  1037. Category="message";
  1038. Subcategory="mice";
  1039. Priority = 3;
  1040. Severity = 2;
  1041. TimeGenerated = "19930420201307.160651+480";
  1042. LoggingTime = "19960707072109.163480+480";
  1043. RollupTime = "20011228215601.130757+480";
  1044. Message = "Message with key to search = 790312106";
  1045. RecordNumber = "29";
  1046. User = "N/A";
  1047. Type = 1;
  1048. Classification = 5;
  1049. LogType = 3;
  1050. OriginalEvent = instance of Win32_MouseClickEvent
  1051. {
  1052. XCoordinate = 520;
  1053. YCoordinate = 12;
  1054. AltPressed = false;
  1055. ControlPressed = true;
  1056. ButtonIndex = 2;
  1057. };
  1058. };
  1059. instance of Microsoft_EELTOCEntryInFile
  1060. {
  1061. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  1062. Entry ="Microsoft_EELEntry='29'";
  1063. };
  1064. instance of Microsoft_EELEntry
  1065. {
  1066. EventId = "30";
  1067. SourceSubsystemType="NT Event Log";
  1068. SourceSubsystemName ="application";
  1069. SystemAbout = "ruchitan_1";
  1070. SystemFrom = "ruchitan_1";
  1071. DeliveredBy = "ruchitan_1";
  1072. Category="message";
  1073. Subcategory="mice";
  1074. Priority = 4;
  1075. Severity = 4;
  1076. TimeGenerated = "19900121141905.148275+480";
  1077. LoggingTime = "20011204141510.145658+480";
  1078. RollupTime = "19930416093711.109456+480";
  1079. Message = "Message with key to search = 912751663";
  1080. RecordNumber = "30";
  1081. User = "N/A";
  1082. Type = 2;
  1083. Classification = 2;
  1084. LogType = 2;
  1085. OriginalEvent = instance of Win32_MouseUpEvent
  1086. {
  1087. XCoordinate = 330;
  1088. YCoordinate = 644;
  1089. AltPressed = false;
  1090. ControlPressed = false;
  1091. ButtonIndex = 1;
  1092. };
  1093. };
  1094. instance of Microsoft_EELTOCEntryInFile
  1095. {
  1096. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  1097. Entry ="Microsoft_EELEntry='30'";
  1098. };
  1099. instance of Microsoft_EELEntry
  1100. {
  1101. EventId = "31";
  1102. SourceSubsystemType="NT Event Log";
  1103. SourceSubsystemName ="Unknown";
  1104. SystemAbout = "amitc_i2";
  1105. SystemFrom = "amitc_i1";
  1106. DeliveredBy = "ruchitan_1";
  1107. Category="message";
  1108. Subcategory="mice";
  1109. Priority = 3;
  1110. Severity = 4;
  1111. TimeGenerated = "19900109202213.107873+480";
  1112. LoggingTime = "20011212044715.158653+480";
  1113. RollupTime = "19900125004328.184653+480";
  1114. Message = "Message with key to search = 760815005";
  1115. RecordNumber = "31";
  1116. User = "amit";
  1117. Type = 4;
  1118. Classification = 8;
  1119. LogType = 3;
  1120. OriginalEvent = instance of Win32_MouseDownEvent
  1121. {
  1122. XCoordinate = 897;
  1123. YCoordinate = 5;
  1124. AltPressed = false;
  1125. ControlPressed = false;
  1126. ButtonIndex = 0;
  1127. };
  1128. };
  1129. instance of Microsoft_EELTOCEntryInFile
  1130. {
  1131. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  1132. Entry ="Microsoft_EELEntry='31'";
  1133. };
  1134. instance of Microsoft_EELEntry
  1135. {
  1136. EventId = "32";
  1137. SourceSubsystemType="SMS Log";
  1138. SourceSubsystemName ="server";
  1139. SystemAbout = "amitc_i1";
  1140. SystemFrom = "ruchitan_1";
  1141. DeliveredBy = "amitc_i1";
  1142. Category="message";
  1143. Subcategory="mice";
  1144. Priority = 1;
  1145. Severity = 3;
  1146. TimeGenerated = "19900101140107.111333+480";
  1147. LoggingTime = "19950606122401.139369+480";
  1148. RollupTime = "19980913210624.134097+480";
  1149. Message = "Message with key to search = 1938275207";
  1150. RecordNumber = "32";
  1151. User = "sriravi";
  1152. Type = 2;
  1153. Classification = 5;
  1154. LogType = 3;
  1155. OriginalEvent = instance of Win32_MouseMoveEvent
  1156. {
  1157. XCoordinate = 375;
  1158. YCoordinate = 401;
  1159. AltPressed = true;
  1160. ControlPressed = false;
  1161. };
  1162. };
  1163. instance of Microsoft_EELTOCEntryInFile
  1164. {
  1165. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  1166. Entry ="Microsoft_EELEntry='32'";
  1167. };
  1168. instance of Microsoft_EELEntry
  1169. {
  1170. EventId = "33";
  1171. SourceSubsystemType="SMS Log";
  1172. SourceSubsystemName ="driver";
  1173. SystemAbout = "ruchitan_1";
  1174. SystemFrom = "amitc_i2";
  1175. DeliveredBy = "amitc_i2";
  1176. Category="message";
  1177. Subcategory="mice";
  1178. Priority = 2;
  1179. Severity = 1;
  1180. TimeGenerated = "19980909003023.195372+480";
  1181. LoggingTime = "19940525214827.170764+480";
  1182. RollupTime = "19970816153927.192388+480";
  1183. Message = "Message with key to search = 506102411";
  1184. RecordNumber = "33";
  1185. User = "amit";
  1186. Type = 2;
  1187. Classification = 8;
  1188. LogType = 1;
  1189. OriginalEvent = instance of Win32_MouseClickEvent
  1190. {
  1191. XCoordinate = 811;
  1192. YCoordinate = 69;
  1193. AltPressed = false;
  1194. ControlPressed = false;
  1195. ButtonIndex = 2;
  1196. };
  1197. };
  1198. instance of Microsoft_EELTOCEntryInFile
  1199. {
  1200. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  1201. Entry ="Microsoft_EELEntry='33'";
  1202. };
  1203. instance of Microsoft_EELEntry
  1204. {
  1205. EventId = "34";
  1206. SourceSubsystemType="NT Event Log";
  1207. SourceSubsystemName ="driver";
  1208. SystemAbout = "amitc_i2";
  1209. SystemFrom = "ruchitan_1";
  1210. DeliveredBy = "amitc_i1";
  1211. Category="message";
  1212. Subcategory="mice";
  1213. Priority = 2;
  1214. Severity = 3;
  1215. TimeGenerated = "19940521214719.130747+480";
  1216. LoggingTime = "20011208134327.143750+480";
  1217. RollupTime = "19991018044003.138814+480";
  1218. Message = "Message with key to search = 1050370646";
  1219. RecordNumber = "34";
  1220. User = "amit";
  1221. Type = 5;
  1222. Classification = 8;
  1223. LogType = 3;
  1224. OriginalEvent = instance of Win32_MouseUpEvent
  1225. {
  1226. XCoordinate = 760;
  1227. YCoordinate = 524;
  1228. AltPressed = true;
  1229. ControlPressed = false;
  1230. ButtonIndex = 1;
  1231. };
  1232. };
  1233. instance of Microsoft_EELTOCEntryInFile
  1234. {
  1235. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  1236. Entry ="Microsoft_EELEntry='34'";
  1237. };
  1238. instance of Microsoft_EELEntry
  1239. {
  1240. EventId = "35";
  1241. SourceSubsystemType="NT Event Log";
  1242. SourceSubsystemName ="Unknown";
  1243. SystemAbout = "ruchitan_1";
  1244. SystemFrom = "amitc_i2";
  1245. DeliveredBy = "amitc_i1";
  1246. Category="message";
  1247. Subcategory="mice";
  1248. Priority = 2;
  1249. Severity = 2;
  1250. TimeGenerated = "19900109150210.159804+480";
  1251. LoggingTime = "20001119220816.189144+480";
  1252. RollupTime = "19980917185910.162490+480";
  1253. Message = "Message with key to search = 1401188753";
  1254. RecordNumber = "35";
  1255. User = "amit";
  1256. Type = 5;
  1257. Classification = 7;
  1258. LogType = 3;
  1259. OriginalEvent = instance of Win32_MouseDownEvent
  1260. {
  1261. XCoordinate = 389;
  1262. YCoordinate = 42;
  1263. AltPressed = true;
  1264. ControlPressed = false;
  1265. ButtonIndex = 0;
  1266. };
  1267. };
  1268. instance of Microsoft_EELTOCEntryInFile
  1269. {
  1270. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  1271. Entry ="Microsoft_EELEntry='35'";
  1272. };
  1273. instance of Microsoft_EELEntry
  1274. {
  1275. EventId = "36";
  1276. SourceSubsystemType="SMS Log";
  1277. SourceSubsystemName ="Unknown";
  1278. SystemAbout = "ruchitan_2";
  1279. SystemFrom = "amitc_i1";
  1280. DeliveredBy = "ruchitan_2";
  1281. Category="message";
  1282. Subcategory="mice";
  1283. Priority = 4;
  1284. Severity = 4;
  1285. TimeGenerated = "19910226211127.198590+480";
  1286. LoggingTime = "19920319045508.135617+480";
  1287. RollupTime = "19920323023914.146232+480";
  1288. Message = "Message with key to search = 1200179960";
  1289. RecordNumber = "36";
  1290. User = "N/A";
  1291. Type = 0;
  1292. Classification = 4;
  1293. LogType = 1;
  1294. OriginalEvent = instance of Win32_MouseMoveEvent
  1295. {
  1296. XCoordinate = 674;
  1297. YCoordinate = 477;
  1298. AltPressed = true;
  1299. ControlPressed = false;
  1300. };
  1301. };
  1302. instance of Microsoft_EELTOCEntryInFile
  1303. {
  1304. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  1305. Entry ="Microsoft_EELEntry='36'";
  1306. };
  1307. instance of Microsoft_EELEntry
  1308. {
  1309. EventId = "37";
  1310. SourceSubsystemType="SMS Log";
  1311. SourceSubsystemName ="Unknown";
  1312. SystemAbout = "amitc_i1";
  1313. SystemFrom = "amitc_i2";
  1314. DeliveredBy = "ruchitan_2";
  1315. Category="message";
  1316. Subcategory="mice";
  1317. Priority = 1;
  1318. Severity = 4;
  1319. TimeGenerated = "19940509064518.164400+480";
  1320. LoggingTime = "19950602015427.111845+480";
  1321. RollupTime = "20011208012508.151111+480";
  1322. Message = "Message with key to search = 1434402672";
  1323. RecordNumber = "37";
  1324. User = "N/A";
  1325. Type = 2;
  1326. Classification = 1;
  1327. LogType = 3;
  1328. OriginalEvent = instance of Win32_MouseClickEvent
  1329. {
  1330. XCoordinate = 812;
  1331. YCoordinate = 99;
  1332. AltPressed = true;
  1333. ControlPressed = true;
  1334. ButtonIndex = 1;
  1335. };
  1336. };
  1337. instance of Microsoft_EELTOCEntryInFile
  1338. {
  1339. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  1340. Entry ="Microsoft_EELEntry='37'";
  1341. };
  1342. instance of Microsoft_EELEntry
  1343. {
  1344. EventId = "38";
  1345. SourceSubsystemType="NT Event Log";
  1346. SourceSubsystemName ="application";
  1347. SystemAbout = "ruchitan_2";
  1348. SystemFrom = "amitc_i1";
  1349. DeliveredBy = "amitc_i1";
  1350. Category="message";
  1351. Subcategory="mice";
  1352. Priority = 3;
  1353. Severity = 2;
  1354. TimeGenerated = "19960703232912.139104+480";
  1355. LoggingTime = "19910218141904.150455+480";
  1356. RollupTime = "19930428043520.172954+480";
  1357. Message = "Message with key to search = 1565838232";
  1358. RecordNumber = "38";
  1359. User = "rishi";
  1360. Type = 0;
  1361. Classification = 8;
  1362. LogType = 3;
  1363. OriginalEvent = instance of Win32_MouseUpEvent
  1364. {
  1365. XCoordinate = 120;
  1366. YCoordinate = 456;
  1367. AltPressed = true;
  1368. ControlPressed = true;
  1369. ButtonIndex = 1;
  1370. };
  1371. };
  1372. instance of Microsoft_EELTOCEntryInFile
  1373. {
  1374. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  1375. Entry ="Microsoft_EELEntry='38'";
  1376. };
  1377. instance of Microsoft_EELEntry
  1378. {
  1379. EventId = "39";
  1380. SourceSubsystemType="NT Event Log";
  1381. SourceSubsystemName ="application";
  1382. SystemAbout = "ruchitan_2";
  1383. SystemFrom = "ruchitan_2";
  1384. DeliveredBy = "ruchitan_2";
  1385. Category="message";
  1386. Subcategory="mice";
  1387. Priority = 2;
  1388. Severity = 1;
  1389. TimeGenerated = "19930408000215.190836+480";
  1390. LoggingTime = "20011212044715.158653+480";
  1391. RollupTime = "20011228220205.120365+480";
  1392. Message = "Message with key to search = 1901613009";
  1393. RecordNumber = "39";
  1394. User = "N/A";
  1395. Type = 3;
  1396. Classification = 6;
  1397. LogType = 2;
  1398. OriginalEvent = instance of Win32_MouseDownEvent
  1399. {
  1400. XCoordinate = 461;
  1401. YCoordinate = 531;
  1402. AltPressed = true;
  1403. ControlPressed = true;
  1404. ButtonIndex = 1;
  1405. };
  1406. };
  1407. instance of Microsoft_EELTOCEntryInFile
  1408. {
  1409. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  1410. Entry ="Microsoft_EELEntry='39'";
  1411. };
  1412. instance of Microsoft_EELEntry
  1413. {
  1414. EventId = "40";
  1415. SourceSubsystemType="SMS Log";
  1416. SourceSubsystemName ="Unknown";
  1417. SystemAbout = "ruchitan_1";
  1418. SystemFrom = "ruchitan_2";
  1419. DeliveredBy = "amitc_i2";
  1420. Category="message";
  1421. Subcategory="mice";
  1422. Priority = 4;
  1423. Severity = 3;
  1424. TimeGenerated = "19950614234306.164827+480";
  1425. LoggingTime = "19991026012801.128883+480";
  1426. RollupTime = "19950622080523.140540+480";
  1427. Message = "Message with key to search = 1929991834";
  1428. RecordNumber = "40";
  1429. User = "sriravi";
  1430. Type = 3;
  1431. Classification = 4;
  1432. LogType = 3;
  1433. OriginalEvent = instance of Win32_MouseMoveEvent
  1434. {
  1435. XCoordinate = 496;
  1436. YCoordinate = 734;
  1437. AltPressed = false;
  1438. ControlPressed = false;
  1439. };
  1440. };
  1441. instance of Microsoft_EELTOCEntryInFile
  1442. {
  1443. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  1444. Entry ="Microsoft_EELEntry='40'";
  1445. };
  1446. instance of Microsoft_EELEntry
  1447. {
  1448. EventId = "41";
  1449. SourceSubsystemType="SMS Log";
  1450. SourceSubsystemName ="Unknown";
  1451. SystemAbout = "amitc_i2";
  1452. SystemFrom = "ruchitan_1";
  1453. DeliveredBy = "amitc_i1";
  1454. Category="message";
  1455. Subcategory="mice";
  1456. Priority = 1;
  1457. Severity = 4;
  1458. TimeGenerated = "19920303100806.175276+480";
  1459. LoggingTime = "20011220094612.186176+480";
  1460. RollupTime = "19950626104800.131136+480";
  1461. Message = "Message with key to search = 431919296";
  1462. RecordNumber = "41";
  1463. User = "N/A";
  1464. Type = 2;
  1465. Classification = 6;
  1466. LogType = 3;
  1467. OriginalEvent = instance of Win32_MouseClickEvent
  1468. {
  1469. XCoordinate = 246;
  1470. YCoordinate = 205;
  1471. AltPressed = true;
  1472. ControlPressed = true;
  1473. ButtonIndex = 2;
  1474. };
  1475. };
  1476. instance of Microsoft_EELTOCEntryInFile
  1477. {
  1478. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  1479. Entry ="Microsoft_EELEntry='41'";
  1480. };
  1481. instance of Microsoft_EELEntry
  1482. {
  1483. EventId = "42";
  1484. SourceSubsystemType="NT Event Log";
  1485. SourceSubsystemName ="Unknown";
  1486. SystemAbout = "amitc_i1";
  1487. SystemFrom = "ruchitan_1";
  1488. DeliveredBy = "amitc_i2";
  1489. Category="message";
  1490. Subcategory="mice";
  1491. Priority = 2;
  1492. Severity = 1;
  1493. TimeGenerated = "19940517004801.185330+480";
  1494. LoggingTime = "19970812082803.168616+480";
  1495. RollupTime = "19970824011206.192782+480";
  1496. Message = "Message with key to search = 1605673430";
  1497. RecordNumber = "42";
  1498. User = "sriravi";
  1499. Type = 5;
  1500. Classification = 7;
  1501. LogType = 2;
  1502. OriginalEvent = instance of Win32_MouseUpEvent
  1503. {
  1504. XCoordinate = 396;
  1505. YCoordinate = 336;
  1506. AltPressed = false;
  1507. ControlPressed = true;
  1508. ButtonIndex = 0;
  1509. };
  1510. };
  1511. instance of Microsoft_EELTOCEntryInFile
  1512. {
  1513. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  1514. Entry ="Microsoft_EELEntry='42'";
  1515. };
  1516. instance of Microsoft_EELEntry
  1517. {
  1518. EventId = "43";
  1519. SourceSubsystemType="NT Event Log";
  1520. SourceSubsystemName ="Unknown";
  1521. SystemAbout = "amitc_i2";
  1522. SystemFrom = "amitc_i1";
  1523. DeliveredBy = "ruchitan_1";
  1524. Category="message";
  1525. Subcategory="mice";
  1526. Priority = 4;
  1527. Severity = 3;
  1528. TimeGenerated = "19930416121409.128483+480";
  1529. LoggingTime = "19930416223117.142862+480";
  1530. RollupTime = "19910226175904.118477+480";
  1531. Message = "Message with key to search = 1447479578";
  1532. RecordNumber = "43";
  1533. User = "rishi";
  1534. Type = 2;
  1535. Classification = 1;
  1536. LogType = 2;
  1537. OriginalEvent = instance of Win32_MouseDownEvent
  1538. {
  1539. XCoordinate = 1014;
  1540. YCoordinate = 189;
  1541. AltPressed = true;
  1542. ControlPressed = false;
  1543. ButtonIndex = 0;
  1544. };
  1545. };
  1546. instance of Microsoft_EELTOCEntryInFile
  1547. {
  1548. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  1549. Entry ="Microsoft_EELEntry='43'";
  1550. };
  1551. instance of Microsoft_EELEntry
  1552. {
  1553. EventId = "44";
  1554. SourceSubsystemType="NT Event Log";
  1555. SourceSubsystemName ="Unknown";
  1556. SystemAbout = "amitc_i1";
  1557. SystemFrom = "ruchitan_2";
  1558. DeliveredBy = "ruchitan_2";
  1559. Category="message";
  1560. Subcategory="mice";
  1561. Priority = 1;
  1562. Severity = 2;
  1563. TimeGenerated = "19950602020322.175259+480";
  1564. LoggingTime = "19950602152812.189491+480";
  1565. RollupTime = "19950606215213.195252+480";
  1566. Message = "Message with key to search = 1311644715";
  1567. RecordNumber = "44";
  1568. User = "N/A";
  1569. Type = 3;
  1570. Classification = 2;
  1571. LogType = 2;
  1572. OriginalEvent = instance of Win32_MouseMoveEvent
  1573. {
  1574. XCoordinate = 6;
  1575. YCoordinate = 205;
  1576. AltPressed = true;
  1577. ControlPressed = true;
  1578. };
  1579. };
  1580. instance of Microsoft_EELTOCEntryInFile
  1581. {
  1582. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  1583. Entry ="Microsoft_EELEntry='44'";
  1584. };
  1585. instance of Microsoft_EELEntry
  1586. {
  1587. EventId = "45";
  1588. SourceSubsystemType="NT Event Log";
  1589. SourceSubsystemName ="driver";
  1590. SystemAbout = "ruchitan_1";
  1591. SystemFrom = "amitc_i1";
  1592. DeliveredBy = "ruchitan_2";
  1593. Category="message";
  1594. Subcategory="mice";
  1595. Priority = 3;
  1596. Severity = 1;
  1597. TimeGenerated = "19940505040210.130721+480";
  1598. LoggingTime = "20001115084714.185802+480";
  1599. RollupTime = "19991014234119.109086+480";
  1600. Message = "Message with key to search = 1103663604";
  1601. RecordNumber = "45";
  1602. User = "sriravi";
  1603. Type = 6;
  1604. Classification = 7;
  1605. LogType = 3;
  1606. OriginalEvent = instance of Win32_MouseClickEvent
  1607. {
  1608. XCoordinate = 243;
  1609. YCoordinate = 399;
  1610. AltPressed = false;
  1611. ControlPressed = true;
  1612. ButtonIndex = 1;
  1613. };
  1614. };
  1615. instance of Microsoft_EELTOCEntryInFile
  1616. {
  1617. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  1618. Entry ="Microsoft_EELEntry='45'";
  1619. };
  1620. instance of Microsoft_EELEntry
  1621. {
  1622. EventId = "46";
  1623. SourceSubsystemType="NT Event Log";
  1624. SourceSubsystemName ="server";
  1625. SystemAbout = "ruchitan_2";
  1626. SystemFrom = "amitc_i1";
  1627. DeliveredBy = "amitc_i2";
  1628. Category="message";
  1629. Subcategory="mice";
  1630. Priority = 4;
  1631. Severity = 4;
  1632. TimeGenerated = "19920315145208.148794+480";
  1633. LoggingTime = "19930420171503.118119+480";
  1634. RollupTime = "19980913210624.134097+480";
  1635. Message = "Message with key to search = 1366833141";
  1636. RecordNumber = "46";
  1637. User = "amit";
  1638. Type = 5;
  1639. Classification = 5;
  1640. LogType = 1;
  1641. OriginalEvent = instance of Win32_MouseUpEvent
  1642. {
  1643. XCoordinate = 545;
  1644. YCoordinate = 569;
  1645. AltPressed = true;
  1646. ControlPressed = true;
  1647. ButtonIndex = 2;
  1648. };
  1649. };
  1650. instance of Microsoft_EELTOCEntryInFile
  1651. {
  1652. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  1653. Entry ="Microsoft_EELEntry='46'";
  1654. };
  1655. instance of Microsoft_EELEntry
  1656. {
  1657. EventId = "47";
  1658. SourceSubsystemType="NT Event Log";
  1659. SourceSubsystemName ="driver";
  1660. SystemAbout = "ruchitan_1";
  1661. SystemFrom = "amitc_i1";
  1662. DeliveredBy = "ruchitan_1";
  1663. Category="message";
  1664. Subcategory="mice";
  1665. Priority = 4;
  1666. Severity = 1;
  1667. TimeGenerated = "19900101031008.111581+480";
  1668. LoggingTime = "19940513104812.109298+480";
  1669. RollupTime = "19960703162413.176837+480";
  1670. Message = "Message with key to search = 1845284654";
  1671. RecordNumber = "47";
  1672. User = "amit";
  1673. Type = 0;
  1674. Classification = 4;
  1675. LogType = 3;
  1676. OriginalEvent = instance of Win32_MouseDownEvent
  1677. {
  1678. XCoordinate = 974;
  1679. YCoordinate = 531;
  1680. AltPressed = true;
  1681. ControlPressed = false;
  1682. ButtonIndex = 1;
  1683. };
  1684. };
  1685. instance of Microsoft_EELTOCEntryInFile
  1686. {
  1687. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  1688. Entry ="Microsoft_EELEntry='47'";
  1689. };
  1690. instance of Microsoft_EELEntry
  1691. {
  1692. EventId = "48";
  1693. SourceSubsystemType="NT Event Log";
  1694. SourceSubsystemName ="server";
  1695. SystemAbout = "amitc_i2";
  1696. SystemFrom = "ruchitan_1";
  1697. DeliveredBy = "amitc_i1";
  1698. Category="message";
  1699. Subcategory="mice";
  1700. Priority = 1;
  1701. Severity = 4;
  1702. TimeGenerated = "19930424221303.142627+480";
  1703. LoggingTime = "19970812234527.196295+480";
  1704. RollupTime = "19980917134223.182569+480";
  1705. Message = "Message with key to search = 1676726396";
  1706. RecordNumber = "48";
  1707. User = "amit";
  1708. Type = 4;
  1709. Classification = 8;
  1710. LogType = 3;
  1711. OriginalEvent = instance of Win32_MouseMoveEvent
  1712. {
  1713. XCoordinate = 305;
  1714. YCoordinate = 99;
  1715. AltPressed = false;
  1716. ControlPressed = true;
  1717. };
  1718. };
  1719. instance of Microsoft_EELTOCEntryInFile
  1720. {
  1721. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  1722. Entry ="Microsoft_EELEntry='48'";
  1723. };
  1724. instance of Microsoft_EELEntry
  1725. {
  1726. EventId = "49";
  1727. SourceSubsystemType="NT Event Log";
  1728. SourceSubsystemName ="Unknown";
  1729. SystemAbout = "ruchitan_2";
  1730. SystemFrom = "ruchitan_2";
  1731. DeliveredBy = "ruchitan_2";
  1732. Category="message";
  1733. Subcategory="mice";
  1734. Priority = 3;
  1735. Severity = 4;
  1736. TimeGenerated = "19900113125218.111619+480";
  1737. LoggingTime = "20001111225809.103783+480";
  1738. RollupTime = "19950626050628.142210+480";
  1739. Message = "Message with key to search = 298827499";
  1740. RecordNumber = "49";
  1741. User = "sriravi";
  1742. Type = 0;
  1743. Classification = 6;
  1744. LogType = 1;
  1745. OriginalEvent = instance of Win32_MouseClickEvent
  1746. {
  1747. XCoordinate = 975;
  1748. YCoordinate = 617;
  1749. AltPressed = false;
  1750. ControlPressed = false;
  1751. ButtonIndex = 1;
  1752. };
  1753. };
  1754. instance of Microsoft_EELTOCEntryInFile
  1755. {
  1756. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  1757. Entry ="Microsoft_EELEntry='49'";
  1758. };
  1759. instance of Microsoft_EELEntry
  1760. {
  1761. EventId = "50";
  1762. SourceSubsystemType="SMS Log";
  1763. SourceSubsystemName ="Unknown";
  1764. SystemAbout = "ruchitan_1";
  1765. SystemFrom = "ruchitan_2";
  1766. DeliveredBy = "amitc_i1";
  1767. Category="message";
  1768. Subcategory="mice";
  1769. Priority = 4;
  1770. Severity = 2;
  1771. TimeGenerated = "19900125152204.155829+480";
  1772. LoggingTime = "19991014220009.104444+480";
  1773. RollupTime = "19920307201921.155166+480";
  1774. Message = "Message with key to search = 1412045317";
  1775. RecordNumber = "50";
  1776. User = "rishi";
  1777. Type = 2;
  1778. Classification = 2;
  1779. LogType = 1;
  1780. OriginalEvent = instance of Win32_MouseUpEvent
  1781. {
  1782. XCoordinate = 256;
  1783. YCoordinate = 622;
  1784. AltPressed = true;
  1785. ControlPressed = true;
  1786. ButtonIndex = 0;
  1787. };
  1788. };
  1789. instance of Microsoft_EELTOCEntryInFile
  1790. {
  1791. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  1792. Entry ="Microsoft_EELEntry='50'";
  1793. };
  1794. instance of Microsoft_EELEntry
  1795. {
  1796. EventId = "51";
  1797. SourceSubsystemType="SMS Log";
  1798. SourceSubsystemName ="server";
  1799. SystemAbout = "amitc_i2";
  1800. SystemFrom = "amitc_i1";
  1801. DeliveredBy = "amitc_i1";
  1802. Category="message";
  1803. Subcategory="mice";
  1804. Priority = 3;
  1805. Severity = 4;
  1806. TimeGenerated = "19920303065210.197168+480";
  1807. LoggingTime = "19960707090823.195909+480";
  1808. RollupTime = "19970824105303.188840+480";
  1809. Message = "Message with key to search = 625656869";
  1810. RecordNumber = "51";
  1811. User = "amit";
  1812. Type = 0;
  1813. Classification = 2;
  1814. LogType = 2;
  1815. OriginalEvent = instance of Win32_MouseDownEvent
  1816. {
  1817. XCoordinate = 381;
  1818. YCoordinate = 436;
  1819. AltPressed = false;
  1820. ControlPressed = false;
  1821. ButtonIndex = 1;
  1822. };
  1823. };
  1824. instance of Microsoft_EELTOCEntryInFile
  1825. {
  1826. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  1827. Entry ="Microsoft_EELEntry='51'";
  1828. };
  1829. instance of Microsoft_EELEntry
  1830. {
  1831. EventId = "52";
  1832. SourceSubsystemType="NT Event Log";
  1833. SourceSubsystemName ="application";
  1834. SystemAbout = "ruchitan_2";
  1835. SystemFrom = "ruchitan_1";
  1836. DeliveredBy = "amitc_i1";
  1837. Category="message";
  1838. Subcategory="mice";
  1839. Priority = 1;
  1840. Severity = 2;
  1841. TimeGenerated = "19900105020505.194772+480";
  1842. LoggingTime = "19960711220712.162105+480";
  1843. RollupTime = "20001127133902.138830+480";
  1844. Message = "Message with key to search = 1803430182";
  1845. RecordNumber = "52";
  1846. User = "amit";
  1847. Type = 6;
  1848. Classification = 2;
  1849. LogType = 1;
  1850. OriginalEvent = instance of Win32_MouseMoveEvent
  1851. {
  1852. XCoordinate = 618;
  1853. YCoordinate = 174;
  1854. AltPressed = true;
  1855. ControlPressed = false;
  1856. };
  1857. };
  1858. instance of Microsoft_EELTOCEntryInFile
  1859. {
  1860. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  1861. Entry ="Microsoft_EELEntry='52'";
  1862. };
  1863. instance of Microsoft_EELEntry
  1864. {
  1865. EventId = "53";
  1866. SourceSubsystemType="SMS Log";
  1867. SourceSubsystemName ="server";
  1868. SystemAbout = "amitc_i2";
  1869. SystemFrom = "amitc_i1";
  1870. DeliveredBy = "ruchitan_2";
  1871. Category="message";
  1872. Subcategory="mice";
  1873. Priority = 1;
  1874. Severity = 1;
  1875. TimeGenerated = "19910222235425.121988+480";
  1876. LoggingTime = "20011220063519.170458+480";
  1877. RollupTime = "20011220194319.108440+480";
  1878. Message = "Message with key to search = 1862621851";
  1879. RecordNumber = "53";
  1880. User = "sriravi";
  1881. Type = 4;
  1882. Classification = 7;
  1883. LogType = 3;
  1884. OriginalEvent = instance of Win32_MouseClickEvent
  1885. {
  1886. XCoordinate = 842;
  1887. YCoordinate = 557;
  1888. AltPressed = true;
  1889. ControlPressed = false;
  1890. ButtonIndex = 2;
  1891. };
  1892. };
  1893. instance of Microsoft_EELTOCEntryInFile
  1894. {
  1895. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  1896. Entry ="Microsoft_EELEntry='53'";
  1897. };
  1898. instance of Microsoft_EELEntry
  1899. {
  1900. EventId = "54";
  1901. SourceSubsystemType="SMS Log";
  1902. SourceSubsystemName ="driver";
  1903. SystemAbout = "ruchitan_2";
  1904. SystemFrom = "ruchitan_2";
  1905. DeliveredBy = "amitc_i2";
  1906. Category="message";
  1907. Subcategory="mice";
  1908. Priority = 3;
  1909. Severity = 2;
  1910. TimeGenerated = "19991006172314.104268+480";
  1911. LoggingTime = "19970828125915.137990+480";
  1912. RollupTime = "19920323124506.147785+480";
  1913. Message = "Message with key to search = 1013471328";
  1914. RecordNumber = "54";
  1915. User = "amit";
  1916. Type = 5;
  1917. Classification = 6;
  1918. LogType = 2;
  1919. OriginalEvent = instance of Win32_MouseUpEvent
  1920. {
  1921. XCoordinate = 1006;
  1922. YCoordinate = 144;
  1923. AltPressed = true;
  1924. ControlPressed = true;
  1925. ButtonIndex = 1;
  1926. };
  1927. };
  1928. instance of Microsoft_EELTOCEntryInFile
  1929. {
  1930. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  1931. Entry ="Microsoft_EELEntry='54'";
  1932. };
  1933. instance of Microsoft_EELEntry
  1934. {
  1935. EventId = "55";
  1936. SourceSubsystemType="SMS Log";
  1937. SourceSubsystemName ="driver";
  1938. SystemAbout = "ruchitan_2";
  1939. SystemFrom = "ruchitan_2";
  1940. DeliveredBy = "amitc_i2";
  1941. Category="message";
  1942. Subcategory="mice";
  1943. Priority = 2;
  1944. Severity = 1;
  1945. TimeGenerated = "19950622190218.155257+480";
  1946. LoggingTime = "19950606122401.139369+480";
  1947. RollupTime = "19960727192402.116878+480";
  1948. Message = "Message with key to search = 1080514803";
  1949. RecordNumber = "55";
  1950. User = "sriravi";
  1951. Type = 3;
  1952. Classification = 3;
  1953. LogType = 2;
  1954. OriginalEvent = instance of Win32_MouseDownEvent
  1955. {
  1956. XCoordinate = 305;
  1957. YCoordinate = 193;
  1958. AltPressed = false;
  1959. ControlPressed = true;
  1960. ButtonIndex = 1;
  1961. };
  1962. };
  1963. instance of Microsoft_EELTOCEntryInFile
  1964. {
  1965. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  1966. Entry ="Microsoft_EELEntry='55'";
  1967. };
  1968. instance of Microsoft_EELEntry
  1969. {
  1970. EventId = "56";
  1971. SourceSubsystemType="NT Event Log";
  1972. SourceSubsystemName ="application";
  1973. SystemAbout = "amitc_i2";
  1974. SystemFrom = "ruchitan_2";
  1975. DeliveredBy = "amitc_i1";
  1976. Category="message";
  1977. Subcategory="mice";
  1978. Priority = 1;
  1979. Severity = 1;
  1980. TimeGenerated = "19900105235416.153243+480";
  1981. LoggingTime = "19950622013011.158705+480";
  1982. RollupTime = "19970824005327.158841+480";
  1983. Message = "Message with key to search = 551891363";
  1984. RecordNumber = "56";
  1985. User = "N/A";
  1986. Type = 0;
  1987. Classification = 7;
  1988. LogType = 1;
  1989. OriginalEvent = instance of Win32_MouseMoveEvent
  1990. {
  1991. XCoordinate = 275;
  1992. YCoordinate = 492;
  1993. AltPressed = true;
  1994. ControlPressed = false;
  1995. };
  1996. };
  1997. instance of Microsoft_EELTOCEntryInFile
  1998. {
  1999. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2000. Entry ="Microsoft_EELEntry='56'";
  2001. };
  2002. instance of Microsoft_EELEntry
  2003. {
  2004. EventId = "57";
  2005. SourceSubsystemType="NT Event Log";
  2006. SourceSubsystemName ="driver";
  2007. SystemAbout = "ruchitan_1";
  2008. SystemFrom = "amitc_i2";
  2009. DeliveredBy = "ruchitan_1";
  2010. Category="message";
  2011. Subcategory="mice";
  2012. Priority = 1;
  2013. Severity = 2;
  2014. TimeGenerated = "19930424060807.150797+480";
  2015. LoggingTime = "20001127020725.154821+480";
  2016. RollupTime = "19930424161315.197799+480";
  2017. Message = "Message with key to search = 469447648";
  2018. RecordNumber = "57";
  2019. User = "rishi";
  2020. Type = 2;
  2021. Classification = 5;
  2022. LogType = 2;
  2023. OriginalEvent = instance of Win32_MouseClickEvent
  2024. {
  2025. XCoordinate = 119;
  2026. YCoordinate = 455;
  2027. AltPressed = true;
  2028. ControlPressed = true;
  2029. ButtonIndex = 2;
  2030. };
  2031. };
  2032. instance of Microsoft_EELTOCEntryInFile
  2033. {
  2034. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  2035. Entry ="Microsoft_EELEntry='57'";
  2036. };
  2037. instance of Microsoft_EELEntry
  2038. {
  2039. EventId = "58";
  2040. SourceSubsystemType="SMS Log";
  2041. SourceSubsystemName ="Unknown";
  2042. SystemAbout = "amitc_i1";
  2043. SystemFrom = "amitc_i2";
  2044. DeliveredBy = "ruchitan_1";
  2045. Category="message";
  2046. Subcategory="mice";
  2047. Priority = 3;
  2048. Severity = 4;
  2049. TimeGenerated = "19910206093508.122184+480";
  2050. LoggingTime = "20011204141510.145658+480";
  2051. RollupTime = "19910222142609.186506+480";
  2052. Message = "Message with key to search = 808109582";
  2053. RecordNumber = "58";
  2054. User = "rishi";
  2055. Type = 1;
  2056. Classification = 7;
  2057. LogType = 3;
  2058. OriginalEvent = instance of Win32_MouseUpEvent
  2059. {
  2060. XCoordinate = 70;
  2061. YCoordinate = 668;
  2062. AltPressed = false;
  2063. ControlPressed = true;
  2064. ButtonIndex = 1;
  2065. };
  2066. };
  2067. instance of Microsoft_EELTOCEntryInFile
  2068. {
  2069. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  2070. Entry ="Microsoft_EELEntry='58'";
  2071. };
  2072. instance of Microsoft_EELEntry
  2073. {
  2074. EventId = "59";
  2075. SourceSubsystemType="NT Event Log";
  2076. SourceSubsystemName ="server";
  2077. SystemAbout = "amitc_i2";
  2078. SystemFrom = "ruchitan_2";
  2079. DeliveredBy = "amitc_i1";
  2080. Category="message";
  2081. Subcategory="mice";
  2082. Priority = 1;
  2083. Severity = 3;
  2084. TimeGenerated = "19920315165822.169283+480";
  2085. LoggingTime = "19950622223304.173186+480";
  2086. RollupTime = "20001111001511.129100+480";
  2087. Message = "Message with key to search = 1684043975";
  2088. RecordNumber = "59";
  2089. User = "amit";
  2090. Type = 3;
  2091. Classification = 3;
  2092. LogType = 2;
  2093. OriginalEvent = instance of Win32_MouseDownEvent
  2094. {
  2095. XCoordinate = 55;
  2096. YCoordinate = 570;
  2097. AltPressed = false;
  2098. ControlPressed = true;
  2099. ButtonIndex = 1;
  2100. };
  2101. };
  2102. instance of Microsoft_EELTOCEntryInFile
  2103. {
  2104. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  2105. Entry ="Microsoft_EELEntry='59'";
  2106. };
  2107. instance of Microsoft_EELEntry
  2108. {
  2109. EventId = "60";
  2110. SourceSubsystemType="SMS Log";
  2111. SourceSubsystemName ="server";
  2112. SystemAbout = "amitc_i2";
  2113. SystemFrom = "amitc_i1";
  2114. DeliveredBy = "amitc_i2";
  2115. Category="message";
  2116. Subcategory="mice";
  2117. Priority = 2;
  2118. Severity = 1;
  2119. TimeGenerated = "19910206091802.104356+480";
  2120. LoggingTime = "19960711020719.184658+480";
  2121. RollupTime = "19960719104511.141485+480";
  2122. Message = "Message with key to search = 2078823031";
  2123. RecordNumber = "60";
  2124. User = "sriravi";
  2125. Type = 3;
  2126. Classification = 2;
  2127. LogType = 1;
  2128. OriginalEvent = instance of Win32_MouseMoveEvent
  2129. {
  2130. XCoordinate = 788;
  2131. YCoordinate = 85;
  2132. AltPressed = true;
  2133. ControlPressed = true;
  2134. };
  2135. };
  2136. instance of Microsoft_EELTOCEntryInFile
  2137. {
  2138. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2139. Entry ="Microsoft_EELEntry='60'";
  2140. };
  2141. instance of Microsoft_EELEntry
  2142. {
  2143. EventId = "61";
  2144. SourceSubsystemType="SMS Log";
  2145. SourceSubsystemName ="Unknown";
  2146. SystemAbout = "ruchitan_2";
  2147. SystemFrom = "ruchitan_1";
  2148. DeliveredBy = "ruchitan_2";
  2149. Category="message";
  2150. Subcategory="mice";
  2151. Priority = 3;
  2152. Severity = 1;
  2153. TimeGenerated = "19940501061510.184934+480";
  2154. LoggingTime = "20011228164820.145190+480";
  2155. RollupTime = "19970824055725.179579+480";
  2156. Message = "Message with key to search = 482600140";
  2157. RecordNumber = "61";
  2158. User = "rishi";
  2159. Type = 0;
  2160. Classification = 4;
  2161. LogType = 2;
  2162. OriginalEvent = instance of Win32_MouseClickEvent
  2163. {
  2164. XCoordinate = 42;
  2165. YCoordinate = 648;
  2166. AltPressed = false;
  2167. ControlPressed = false;
  2168. ButtonIndex = 1;
  2169. };
  2170. };
  2171. instance of Microsoft_EELTOCEntryInFile
  2172. {
  2173. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  2174. Entry ="Microsoft_EELEntry='61'";
  2175. };
  2176. instance of Microsoft_EELEntry
  2177. {
  2178. EventId = "62";
  2179. SourceSubsystemType="SMS Log";
  2180. SourceSubsystemName ="driver";
  2181. SystemAbout = "amitc_i2";
  2182. SystemFrom = "amitc_i1";
  2183. DeliveredBy = "ruchitan_1";
  2184. Category="message";
  2185. Subcategory="mice";
  2186. Priority = 3;
  2187. Severity = 1;
  2188. TimeGenerated = "19900113054518.173364+480";
  2189. LoggingTime = "19991018134414.187797+480";
  2190. RollupTime = "19920307191217.168093+480";
  2191. Message = "Message with key to search = 1277102472";
  2192. RecordNumber = "62";
  2193. User = "amit";
  2194. Type = 5;
  2195. Classification = 4;
  2196. LogType = 3;
  2197. OriginalEvent = instance of Win32_MouseUpEvent
  2198. {
  2199. XCoordinate = 723;
  2200. YCoordinate = 537;
  2201. AltPressed = true;
  2202. ControlPressed = false;
  2203. ButtonIndex = 0;
  2204. };
  2205. };
  2206. instance of Microsoft_EELTOCEntryInFile
  2207. {
  2208. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  2209. Entry ="Microsoft_EELEntry='62'";
  2210. };
  2211. instance of Microsoft_EELEntry
  2212. {
  2213. EventId = "63";
  2214. SourceSubsystemType="SMS Log";
  2215. SourceSubsystemName ="application";
  2216. SystemAbout = "amitc_i1";
  2217. SystemFrom = "amitc_i1";
  2218. DeliveredBy = "amitc_i1";
  2219. Category="message";
  2220. Subcategory="mice";
  2221. Priority = 4;
  2222. Severity = 4;
  2223. TimeGenerated = "19960711212825.126669+480";
  2224. LoggingTime = "20011212044715.158653+480";
  2225. RollupTime = "19930404011622.142997+480";
  2226. Message = "Message with key to search = 1474448817";
  2227. RecordNumber = "63";
  2228. User = "N/A";
  2229. Type = 3;
  2230. Classification = 4;
  2231. LogType = 3;
  2232. OriginalEvent = instance of Win32_MouseDownEvent
  2233. {
  2234. XCoordinate = 31;
  2235. YCoordinate = 109;
  2236. AltPressed = true;
  2237. ControlPressed = false;
  2238. ButtonIndex = 1;
  2239. };
  2240. };
  2241. instance of Microsoft_EELTOCEntryInFile
  2242. {
  2243. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  2244. Entry ="Microsoft_EELEntry='63'";
  2245. };
  2246. instance of Microsoft_EELEntry
  2247. {
  2248. EventId = "64";
  2249. SourceSubsystemType="SMS Log";
  2250. SourceSubsystemName ="Unknown";
  2251. SystemAbout = "ruchitan_1";
  2252. SystemFrom = "amitc_i1";
  2253. DeliveredBy = "amitc_i2";
  2254. Category="message";
  2255. Subcategory="mice";
  2256. Priority = 3;
  2257. Severity = 1;
  2258. TimeGenerated = "19920303221304.129982+480";
  2259. LoggingTime = "20011208032425.177011+480";
  2260. RollupTime = "19950606123718.139395+480";
  2261. Message = "Message with key to search = 598319828";
  2262. RecordNumber = "64";
  2263. User = "sriravi";
  2264. Type = 2;
  2265. Classification = 2;
  2266. LogType = 3;
  2267. OriginalEvent = instance of Win32_MouseMoveEvent
  2268. {
  2269. XCoordinate = 534;
  2270. YCoordinate = 716;
  2271. AltPressed = false;
  2272. ControlPressed = false;
  2273. };
  2274. };
  2275. instance of Microsoft_EELTOCEntryInFile
  2276. {
  2277. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2278. Entry ="Microsoft_EELEntry='64'";
  2279. };
  2280. instance of Microsoft_EELEntry
  2281. {
  2282. EventId = "65";
  2283. SourceSubsystemType="NT Event Log";
  2284. SourceSubsystemName ="application";
  2285. SystemAbout = "ruchitan_1";
  2286. SystemFrom = "amitc_i1";
  2287. DeliveredBy = "amitc_i1";
  2288. Category="message";
  2289. Subcategory="mice";
  2290. Priority = 2;
  2291. Severity = 2;
  2292. TimeGenerated = "19970812194822.168071+480";
  2293. LoggingTime = "20011220110015.172773+480";
  2294. RollupTime = "19930404060221.157808+480";
  2295. Message = "Message with key to search = 1618701643";
  2296. RecordNumber = "65";
  2297. User = "rishi";
  2298. Type = 4;
  2299. Classification = 1;
  2300. LogType = 3;
  2301. OriginalEvent = instance of Win32_MouseClickEvent
  2302. {
  2303. XCoordinate = 467;
  2304. YCoordinate = 349;
  2305. AltPressed = true;
  2306. ControlPressed = false;
  2307. ButtonIndex = 1;
  2308. };
  2309. };
  2310. instance of Microsoft_EELTOCEntryInFile
  2311. {
  2312. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  2313. Entry ="Microsoft_EELEntry='65'";
  2314. };
  2315. instance of Microsoft_EELEntry
  2316. {
  2317. EventId = "66";
  2318. SourceSubsystemType="SMS Log";
  2319. SourceSubsystemName ="application";
  2320. SystemAbout = "amitc_i2";
  2321. SystemFrom = "ruchitan_2";
  2322. DeliveredBy = "ruchitan_2";
  2323. Category="message";
  2324. Subcategory="mice";
  2325. Priority = 1;
  2326. Severity = 1;
  2327. TimeGenerated = "19910222222702.148015+480";
  2328. LoggingTime = "19980921041716.178958+480";
  2329. RollupTime = "19930404125419.173161+480";
  2330. Message = "Message with key to search = 2099236726";
  2331. RecordNumber = "66";
  2332. User = "rishi";
  2333. Type = 1;
  2334. Classification = 6;
  2335. LogType = 3;
  2336. OriginalEvent = instance of Win32_MouseUpEvent
  2337. {
  2338. XCoordinate = 62;
  2339. YCoordinate = 743;
  2340. AltPressed = true;
  2341. ControlPressed = true;
  2342. ButtonIndex = 1;
  2343. };
  2344. };
  2345. instance of Microsoft_EELTOCEntryInFile
  2346. {
  2347. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  2348. Entry ="Microsoft_EELEntry='66'";
  2349. };
  2350. instance of Microsoft_EELEntry
  2351. {
  2352. EventId = "67";
  2353. SourceSubsystemType="SMS Log";
  2354. SourceSubsystemName ="driver";
  2355. SystemAbout = "amitc_i1";
  2356. SystemFrom = "ruchitan_1";
  2357. DeliveredBy = "amitc_i2";
  2358. Category="message";
  2359. Subcategory="mice";
  2360. Priority = 4;
  2361. Severity = 2;
  2362. TimeGenerated = "19910210110227.194627+480";
  2363. LoggingTime = "19960707212620.108183+480";
  2364. RollupTime = "20011216065724.164367+480";
  2365. Message = "Message with key to search = 357907345";
  2366. RecordNumber = "67";
  2367. User = "sriravi";
  2368. Type = 4;
  2369. Classification = 5;
  2370. LogType = 3;
  2371. OriginalEvent = instance of Win32_MouseDownEvent
  2372. {
  2373. XCoordinate = 896;
  2374. YCoordinate = 85;
  2375. AltPressed = true;
  2376. ControlPressed = true;
  2377. ButtonIndex = 1;
  2378. };
  2379. };
  2380. instance of Microsoft_EELTOCEntryInFile
  2381. {
  2382. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  2383. Entry ="Microsoft_EELEntry='67'";
  2384. };
  2385. instance of Microsoft_EELEntry
  2386. {
  2387. EventId = "68";
  2388. SourceSubsystemType="SMS Log";
  2389. SourceSubsystemName ="application";
  2390. SystemAbout = "amitc_i2";
  2391. SystemFrom = "amitc_i1";
  2392. DeliveredBy = "ruchitan_1";
  2393. Category="message";
  2394. Subcategory="mice";
  2395. Priority = 4;
  2396. Severity = 2;
  2397. TimeGenerated = "19940525140127.150260+480";
  2398. LoggingTime = "20001115063428.114297+480";
  2399. RollupTime = "19991010072301.181727+480";
  2400. Message = "Message with key to search = 165278053";
  2401. RecordNumber = "68";
  2402. User = "N/A";
  2403. Type = 6;
  2404. Classification = 1;
  2405. LogType = 2;
  2406. OriginalEvent = instance of Win32_MouseMoveEvent
  2407. {
  2408. XCoordinate = 446;
  2409. YCoordinate = 697;
  2410. AltPressed = false;
  2411. ControlPressed = false;
  2412. };
  2413. };
  2414. instance of Microsoft_EELTOCEntryInFile
  2415. {
  2416. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2417. Entry ="Microsoft_EELEntry='68'";
  2418. };
  2419. instance of Microsoft_EELEntry
  2420. {
  2421. EventId = "69";
  2422. SourceSubsystemType="SMS Log";
  2423. SourceSubsystemName ="Unknown";
  2424. SystemAbout = "ruchitan_1";
  2425. SystemFrom = "amitc_i2";
  2426. DeliveredBy = "ruchitan_2";
  2427. Category="message";
  2428. Subcategory="mice";
  2429. Priority = 4;
  2430. Severity = 1;
  2431. TimeGenerated = "19940501083717.105478+480";
  2432. LoggingTime = "19960711002103.116524+480";
  2433. RollupTime = "19940505223702.135315+480";
  2434. Message = "Message with key to search = 547289563";
  2435. RecordNumber = "69";
  2436. User = "amit";
  2437. Type = 1;
  2438. Classification = 7;
  2439. LogType = 1;
  2440. OriginalEvent = instance of Win32_MouseClickEvent
  2441. {
  2442. XCoordinate = 313;
  2443. YCoordinate = 245;
  2444. AltPressed = true;
  2445. ControlPressed = true;
  2446. ButtonIndex = 2;
  2447. };
  2448. };
  2449. instance of Microsoft_EELTOCEntryInFile
  2450. {
  2451. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  2452. Entry ="Microsoft_EELEntry='69'";
  2453. };
  2454. instance of Microsoft_EELEntry
  2455. {
  2456. EventId = "70";
  2457. SourceSubsystemType="SMS Log";
  2458. SourceSubsystemName ="Unknown";
  2459. SystemAbout = "ruchitan_2";
  2460. SystemFrom = "amitc_i1";
  2461. DeliveredBy = "amitc_i1";
  2462. Category="message";
  2463. Subcategory="mice";
  2464. Priority = 2;
  2465. Severity = 2;
  2466. TimeGenerated = "19960711090100.143768+480";
  2467. LoggingTime = "19980901211514.135514+480";
  2468. RollupTime = "20011208063404.179680+480";
  2469. Message = "Message with key to search = 889172207";
  2470. RecordNumber = "70";
  2471. User = "rishi";
  2472. Type = 3;
  2473. Classification = 2;
  2474. LogType = 3;
  2475. OriginalEvent = instance of Win32_MouseUpEvent
  2476. {
  2477. XCoordinate = 78;
  2478. YCoordinate = 337;
  2479. AltPressed = false;
  2480. ControlPressed = true;
  2481. ButtonIndex = 1;
  2482. };
  2483. };
  2484. instance of Microsoft_EELTOCEntryInFile
  2485. {
  2486. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  2487. Entry ="Microsoft_EELEntry='70'";
  2488. };
  2489. instance of Microsoft_EELEntry
  2490. {
  2491. EventId = "71";
  2492. SourceSubsystemType="NT Event Log";
  2493. SourceSubsystemName ="Unknown";
  2494. SystemAbout = "amitc_i2";
  2495. SystemFrom = "amitc_i2";
  2496. DeliveredBy = "ruchitan_2";
  2497. Category="message";
  2498. Subcategory="mice";
  2499. Priority = 3;
  2500. Severity = 4;
  2501. TimeGenerated = "19900101163406.159308+480";
  2502. LoggingTime = "20011224223004.110481+480";
  2503. RollupTime = "19920327033316.107236+480";
  2504. Message = "Message with key to search = 1544492521";
  2505. RecordNumber = "71";
  2506. User = "N/A";
  2507. Type = 4;
  2508. Classification = 5;
  2509. LogType = 3;
  2510. OriginalEvent = instance of Win32_MouseDownEvent
  2511. {
  2512. XCoordinate = 69;
  2513. YCoordinate = 480;
  2514. AltPressed = false;
  2515. ControlPressed = false;
  2516. ButtonIndex = 0;
  2517. };
  2518. };
  2519. instance of Microsoft_EELTOCEntryInFile
  2520. {
  2521. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  2522. Entry ="Microsoft_EELEntry='71'";
  2523. };
  2524. instance of Microsoft_EELEntry
  2525. {
  2526. EventId = "72";
  2527. SourceSubsystemType="NT Event Log";
  2528. SourceSubsystemName ="application";
  2529. SystemAbout = "ruchitan_1";
  2530. SystemFrom = "ruchitan_1";
  2531. DeliveredBy = "ruchitan_2";
  2532. Category="message";
  2533. Subcategory="mice";
  2534. Priority = 4;
  2535. Severity = 3;
  2536. TimeGenerated = "19920311152020.114344+480";
  2537. LoggingTime = "20001103220813.180786+480";
  2538. RollupTime = "19980913015118.154893+480";
  2539. Message = "Message with key to search = 1850647024";
  2540. RecordNumber = "72";
  2541. User = "rishi";
  2542. Type = 0;
  2543. Classification = 5;
  2544. LogType = 1;
  2545. OriginalEvent = instance of Win32_MouseMoveEvent
  2546. {
  2547. XCoordinate = 555;
  2548. YCoordinate = 734;
  2549. AltPressed = false;
  2550. ControlPressed = true;
  2551. };
  2552. };
  2553. instance of Microsoft_EELTOCEntryInFile
  2554. {
  2555. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2556. Entry ="Microsoft_EELEntry='72'";
  2557. };
  2558. instance of Microsoft_EELEntry
  2559. {
  2560. EventId = "73";
  2561. SourceSubsystemType="NT Event Log";
  2562. SourceSubsystemName ="server";
  2563. SystemAbout = "ruchitan_1";
  2564. SystemFrom = "amitc_i2";
  2565. DeliveredBy = "amitc_i2";
  2566. Category="message";
  2567. Subcategory="mice";
  2568. Priority = 3;
  2569. Severity = 2;
  2570. TimeGenerated = "19900113220214.134771+480";
  2571. LoggingTime = "19930408193601.147568+480";
  2572. RollupTime = "19970824235011.118855+480";
  2573. Message = "Message with key to search = 1423246891";
  2574. RecordNumber = "73";
  2575. User = "rishi";
  2576. Type = 6;
  2577. Classification = 2;
  2578. LogType = 2;
  2579. OriginalEvent = instance of Win32_MouseClickEvent
  2580. {
  2581. XCoordinate = 236;
  2582. YCoordinate = 670;
  2583. AltPressed = false;
  2584. ControlPressed = false;
  2585. ButtonIndex = 0;
  2586. };
  2587. };
  2588. instance of Microsoft_EELTOCEntryInFile
  2589. {
  2590. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  2591. Entry ="Microsoft_EELEntry='73'";
  2592. };
  2593. instance of Microsoft_EELEntry
  2594. {
  2595. EventId = "74";
  2596. SourceSubsystemType="SMS Log";
  2597. SourceSubsystemName ="server";
  2598. SystemAbout = "ruchitan_2";
  2599. SystemFrom = "ruchitan_1";
  2600. DeliveredBy = "amitc_i1";
  2601. Category="message";
  2602. Subcategory="mice";
  2603. Priority = 2;
  2604. Severity = 4;
  2605. TimeGenerated = "19960703055218.175223+480";
  2606. LoggingTime = "19970828133227.117015+480";
  2607. RollupTime = "19940525014023.119374+480";
  2608. Message = "Message with key to search = 1289694135";
  2609. RecordNumber = "74";
  2610. User = "amit";
  2611. Type = 3;
  2612. Classification = 2;
  2613. LogType = 3;
  2614. OriginalEvent = instance of Win32_MouseUpEvent
  2615. {
  2616. XCoordinate = 668;
  2617. YCoordinate = 138;
  2618. AltPressed = true;
  2619. ControlPressed = false;
  2620. ButtonIndex = 2;
  2621. };
  2622. };
  2623. instance of Microsoft_EELTOCEntryInFile
  2624. {
  2625. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  2626. Entry ="Microsoft_EELEntry='74'";
  2627. };
  2628. instance of Microsoft_EELEntry
  2629. {
  2630. EventId = "75";
  2631. SourceSubsystemType="SMS Log";
  2632. SourceSubsystemName ="application";
  2633. SystemAbout = "amitc_i2";
  2634. SystemFrom = "amitc_i2";
  2635. DeliveredBy = "amitc_i1";
  2636. Category="message";
  2637. Subcategory="mice";
  2638. Priority = 4;
  2639. Severity = 2;
  2640. TimeGenerated = "19910222154805.160575+480";
  2641. LoggingTime = "19970808095503.108246+480";
  2642. RollupTime = "19960711081827.181272+480";
  2643. Message = "Message with key to search = 179362659";
  2644. RecordNumber = "75";
  2645. User = "sriravi";
  2646. Type = 5;
  2647. Classification = 2;
  2648. LogType = 3;
  2649. OriginalEvent = instance of Win32_MouseDownEvent
  2650. {
  2651. XCoordinate = 128;
  2652. YCoordinate = 767;
  2653. AltPressed = true;
  2654. ControlPressed = false;
  2655. ButtonIndex = 0;
  2656. };
  2657. };
  2658. instance of Microsoft_EELTOCEntryInFile
  2659. {
  2660. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  2661. Entry ="Microsoft_EELEntry='75'";
  2662. };
  2663. instance of Microsoft_EELEntry
  2664. {
  2665. EventId = "76";
  2666. SourceSubsystemType="SMS Log";
  2667. SourceSubsystemName ="driver";
  2668. SystemAbout = "ruchitan_2";
  2669. SystemFrom = "ruchitan_1";
  2670. DeliveredBy = "amitc_i2";
  2671. Category="message";
  2672. Subcategory="mice";
  2673. Priority = 3;
  2674. Severity = 2;
  2675. TimeGenerated = "19940509105323.110462+480";
  2676. LoggingTime = "19991010050504.158970+480";
  2677. RollupTime = "19991010214012.157605+480";
  2678. Message = "Message with key to search = 2122844024";
  2679. RecordNumber = "76";
  2680. User = "sriravi";
  2681. Type = 0;
  2682. Classification = 4;
  2683. LogType = 3;
  2684. OriginalEvent = instance of Win32_MouseMoveEvent
  2685. {
  2686. XCoordinate = 144;
  2687. YCoordinate = 441;
  2688. AltPressed = false;
  2689. ControlPressed = true;
  2690. };
  2691. };
  2692. instance of Microsoft_EELTOCEntryInFile
  2693. {
  2694. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2695. Entry ="Microsoft_EELEntry='76'";
  2696. };
  2697. instance of Microsoft_EELEntry
  2698. {
  2699. EventId = "77";
  2700. SourceSubsystemType="SMS Log";
  2701. SourceSubsystemName ="driver";
  2702. SystemAbout = "amitc_i2";
  2703. SystemFrom = "amitc_i2";
  2704. DeliveredBy = "amitc_i1";
  2705. Category="message";
  2706. Subcategory="mice";
  2707. Priority = 2;
  2708. Severity = 1;
  2709. TimeGenerated = "19970828164021.180215+480";
  2710. LoggingTime = "20011216091419.192244+480";
  2711. RollupTime = "19950606232517.181897+480";
  2712. Message = "Message with key to search = 797100183";
  2713. RecordNumber = "77";
  2714. User = "rishi";
  2715. Type = 6;
  2716. Classification = 5;
  2717. LogType = 3;
  2718. OriginalEvent = instance of Win32_MouseClickEvent
  2719. {
  2720. XCoordinate = 1003;
  2721. YCoordinate = 645;
  2722. AltPressed = false;
  2723. ControlPressed = true;
  2724. ButtonIndex = 1;
  2725. };
  2726. };
  2727. instance of Microsoft_EELTOCEntryInFile
  2728. {
  2729. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  2730. Entry ="Microsoft_EELEntry='77'";
  2731. };
  2732. instance of Microsoft_EELEntry
  2733. {
  2734. EventId = "78";
  2735. SourceSubsystemType="SMS Log";
  2736. SourceSubsystemName ="Unknown";
  2737. SystemAbout = "amitc_i1";
  2738. SystemFrom = "amitc_i1";
  2739. DeliveredBy = "amitc_i1";
  2740. Category="message";
  2741. Subcategory="mice";
  2742. Priority = 2;
  2743. Severity = 3;
  2744. TimeGenerated = "19910218230825.123145+480";
  2745. LoggingTime = "19950626091916.163015+480";
  2746. RollupTime = "19950610004814.145348+480";
  2747. Message = "Message with key to search = 1754582106";
  2748. RecordNumber = "78";
  2749. User = "N/A";
  2750. Type = 3;
  2751. Classification = 7;
  2752. LogType = 2;
  2753. OriginalEvent = instance of Win32_MouseUpEvent
  2754. {
  2755. XCoordinate = 994;
  2756. YCoordinate = 214;
  2757. AltPressed = true;
  2758. ControlPressed = false;
  2759. ButtonIndex = 2;
  2760. };
  2761. };
  2762. instance of Microsoft_EELTOCEntryInFile
  2763. {
  2764. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  2765. Entry ="Microsoft_EELEntry='78'";
  2766. };
  2767. instance of Microsoft_EELEntry
  2768. {
  2769. EventId = "79";
  2770. SourceSubsystemType="SMS Log";
  2771. SourceSubsystemName ="Unknown";
  2772. SystemAbout = "amitc_i2";
  2773. SystemFrom = "amitc_i1";
  2774. DeliveredBy = "ruchitan_1";
  2775. Category="message";
  2776. Subcategory="mice";
  2777. Priority = 1;
  2778. Severity = 4;
  2779. TimeGenerated = "19950606061117.186852+480";
  2780. LoggingTime = "19950626160509.189118+480";
  2781. RollupTime = "19970816205425.115273+480";
  2782. Message = "Message with key to search = 1533972134";
  2783. RecordNumber = "79";
  2784. User = "sriravi";
  2785. Type = 1;
  2786. Classification = 6;
  2787. LogType = 1;
  2788. OriginalEvent = instance of Win32_MouseDownEvent
  2789. {
  2790. XCoordinate = 154;
  2791. YCoordinate = 317;
  2792. AltPressed = true;
  2793. ControlPressed = true;
  2794. ButtonIndex = 0;
  2795. };
  2796. };
  2797. instance of Microsoft_EELTOCEntryInFile
  2798. {
  2799. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  2800. Entry ="Microsoft_EELEntry='79'";
  2801. };
  2802. instance of Microsoft_EELEntry
  2803. {
  2804. EventId = "80";
  2805. SourceSubsystemType="NT Event Log";
  2806. SourceSubsystemName ="application";
  2807. SystemAbout = "amitc_i1";
  2808. SystemFrom = "amitc_i2";
  2809. DeliveredBy = "ruchitan_2";
  2810. Category="message";
  2811. Subcategory="mice";
  2812. Priority = 2;
  2813. Severity = 3;
  2814. TimeGenerated = "19900109151800.108936+480";
  2815. LoggingTime = "19980921014028.126871+480";
  2816. RollupTime = "19980921003516.184963+480";
  2817. Message = "Message with key to search = 628694288";
  2818. RecordNumber = "80";
  2819. User = "amit";
  2820. Type = 6;
  2821. Classification = 2;
  2822. LogType = 3;
  2823. OriginalEvent = instance of Win32_MouseMoveEvent
  2824. {
  2825. XCoordinate = 718;
  2826. YCoordinate = 583;
  2827. AltPressed = false;
  2828. ControlPressed = false;
  2829. };
  2830. };
  2831. instance of Microsoft_EELTOCEntryInFile
  2832. {
  2833. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2834. Entry ="Microsoft_EELEntry='80'";
  2835. };
  2836. instance of Microsoft_EELEntry
  2837. {
  2838. EventId = "81";
  2839. SourceSubsystemType="NT Event Log";
  2840. SourceSubsystemName ="application";
  2841. SystemAbout = "ruchitan_2";
  2842. SystemFrom = "ruchitan_1";
  2843. DeliveredBy = "ruchitan_1";
  2844. Category="message";
  2845. Subcategory="mice";
  2846. Priority = 3;
  2847. Severity = 2;
  2848. TimeGenerated = "19940505013921.168843+480";
  2849. LoggingTime = "19960707003501.178280+480";
  2850. RollupTime = "19930428094003.155053+480";
  2851. Message = "Message with key to search = 1581979312";
  2852. RecordNumber = "81";
  2853. User = "rishi";
  2854. Type = 6;
  2855. Classification = 2;
  2856. LogType = 1;
  2857. OriginalEvent = instance of Win32_MouseClickEvent
  2858. {
  2859. XCoordinate = 510;
  2860. YCoordinate = 760;
  2861. AltPressed = true;
  2862. ControlPressed = false;
  2863. ButtonIndex = 2;
  2864. };
  2865. };
  2866. instance of Microsoft_EELTOCEntryInFile
  2867. {
  2868. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  2869. Entry ="Microsoft_EELEntry='81'";
  2870. };
  2871. instance of Microsoft_EELEntry
  2872. {
  2873. EventId = "82";
  2874. SourceSubsystemType="SMS Log";
  2875. SourceSubsystemName ="server";
  2876. SystemAbout = "amitc_i1";
  2877. SystemFrom = "ruchitan_2";
  2878. DeliveredBy = "amitc_i1";
  2879. Category="message";
  2880. Subcategory="mice";
  2881. Priority = 4;
  2882. Severity = 2;
  2883. TimeGenerated = "19920323072303.119440+480";
  2884. LoggingTime = "19930424192308.170845+480";
  2885. RollupTime = "19970812153600.135739+480";
  2886. Message = "Message with key to search = 1093913582";
  2887. RecordNumber = "82";
  2888. User = "N/A";
  2889. Type = 1;
  2890. Classification = 5;
  2891. LogType = 3;
  2892. OriginalEvent = instance of Win32_MouseUpEvent
  2893. {
  2894. XCoordinate = 541;
  2895. YCoordinate = 256;
  2896. AltPressed = true;
  2897. ControlPressed = true;
  2898. ButtonIndex = 0;
  2899. };
  2900. };
  2901. instance of Microsoft_EELTOCEntryInFile
  2902. {
  2903. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  2904. Entry ="Microsoft_EELEntry='82'";
  2905. };
  2906. instance of Microsoft_EELEntry
  2907. {
  2908. EventId = "83";
  2909. SourceSubsystemType="SMS Log";
  2910. SourceSubsystemName ="Unknown";
  2911. SystemAbout = "amitc_i2";
  2912. SystemFrom = "amitc_i2";
  2913. DeliveredBy = "amitc_i2";
  2914. Category="message";
  2915. Subcategory="mice";
  2916. Priority = 3;
  2917. Severity = 1;
  2918. TimeGenerated = "19920311110102.137108+480";
  2919. LoggingTime = "19970812053526.192581+480";
  2920. RollupTime = "19940521133915.195737+480";
  2921. Message = "Message with key to search = 1701938560";
  2922. RecordNumber = "83";
  2923. User = "N/A";
  2924. Type = 2;
  2925. Classification = 6;
  2926. LogType = 3;
  2927. OriginalEvent = instance of Win32_MouseDownEvent
  2928. {
  2929. XCoordinate = 229;
  2930. YCoordinate = 569;
  2931. AltPressed = false;
  2932. ControlPressed = true;
  2933. ButtonIndex = 1;
  2934. };
  2935. };
  2936. instance of Microsoft_EELTOCEntryInFile
  2937. {
  2938. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  2939. Entry ="Microsoft_EELEntry='83'";
  2940. };
  2941. instance of Microsoft_EELEntry
  2942. {
  2943. EventId = "84";
  2944. SourceSubsystemType="SMS Log";
  2945. SourceSubsystemName ="driver";
  2946. SystemAbout = "ruchitan_1";
  2947. SystemFrom = "ruchitan_1";
  2948. DeliveredBy = "ruchitan_2";
  2949. Category="message";
  2950. Subcategory="mice";
  2951. Priority = 3;
  2952. Severity = 3;
  2953. TimeGenerated = "19950618054924.140786+480";
  2954. LoggingTime = "19960707174723.155114+480";
  2955. RollupTime = "19930428072413.174404+480";
  2956. Message = "Message with key to search = 401073201";
  2957. RecordNumber = "84";
  2958. User = "sriravi";
  2959. Type = 4;
  2960. Classification = 3;
  2961. LogType = 1;
  2962. OriginalEvent = instance of Win32_MouseMoveEvent
  2963. {
  2964. XCoordinate = 113;
  2965. YCoordinate = 326;
  2966. AltPressed = false;
  2967. ControlPressed = false;
  2968. };
  2969. };
  2970. instance of Microsoft_EELTOCEntryInFile
  2971. {
  2972. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  2973. Entry ="Microsoft_EELEntry='84'";
  2974. };
  2975. instance of Microsoft_EELEntry
  2976. {
  2977. EventId = "85";
  2978. SourceSubsystemType="NT Event Log";
  2979. SourceSubsystemName ="driver";
  2980. SystemAbout = "amitc_i1";
  2981. SystemFrom = "ruchitan_2";
  2982. DeliveredBy = "amitc_i1";
  2983. Category="message";
  2984. Subcategory="mice";
  2985. Priority = 1;
  2986. Severity = 4;
  2987. TimeGenerated = "19940513145905.165954+480";
  2988. LoggingTime = "20011224104004.118932+480";
  2989. RollupTime = "19970828111922.121211+480";
  2990. Message = "Message with key to search = 1921596380";
  2991. RecordNumber = "85";
  2992. User = "N/A";
  2993. Type = 2;
  2994. Classification = 6;
  2995. LogType = 2;
  2996. OriginalEvent = instance of Win32_MouseClickEvent
  2997. {
  2998. XCoordinate = 737;
  2999. YCoordinate = 141;
  3000. AltPressed = false;
  3001. ControlPressed = true;
  3002. ButtonIndex = 1;
  3003. };
  3004. };
  3005. instance of Microsoft_EELTOCEntryInFile
  3006. {
  3007. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3008. Entry ="Microsoft_EELEntry='85'";
  3009. };
  3010. instance of Microsoft_EELEntry
  3011. {
  3012. EventId = "86";
  3013. SourceSubsystemType="NT Event Log";
  3014. SourceSubsystemName ="application";
  3015. SystemAbout = "ruchitan_2";
  3016. SystemFrom = "amitc_i1";
  3017. DeliveredBy = "ruchitan_2";
  3018. Category="message";
  3019. Subcategory="mice";
  3020. Priority = 4;
  3021. Severity = 4;
  3022. TimeGenerated = "19900125231324.172831+480";
  3023. LoggingTime = "19930408224525.100774+480";
  3024. RollupTime = "20001111132102.122546+480";
  3025. Message = "Message with key to search = 1002273164";
  3026. RecordNumber = "86";
  3027. User = "N/A";
  3028. Type = 4;
  3029. Classification = 7;
  3030. LogType = 1;
  3031. OriginalEvent = instance of Win32_MouseUpEvent
  3032. {
  3033. XCoordinate = 346;
  3034. YCoordinate = 585;
  3035. AltPressed = true;
  3036. ControlPressed = false;
  3037. ButtonIndex = 1;
  3038. };
  3039. };
  3040. instance of Microsoft_EELTOCEntryInFile
  3041. {
  3042. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  3043. Entry ="Microsoft_EELEntry='86'";
  3044. };
  3045. instance of Microsoft_EELEntry
  3046. {
  3047. EventId = "87";
  3048. SourceSubsystemType="NT Event Log";
  3049. SourceSubsystemName ="Unknown";
  3050. SystemAbout = "ruchitan_2";
  3051. SystemFrom = "amitc_i2";
  3052. DeliveredBy = "ruchitan_2";
  3053. Category="message";
  3054. Subcategory="mice";
  3055. Priority = 1;
  3056. Severity = 3;
  3057. TimeGenerated = "19900121103215.152244+480";
  3058. LoggingTime = "19940521203327.151140+480";
  3059. RollupTime = "19980921081506.149092+480";
  3060. Message = "Message with key to search = 806522193";
  3061. RecordNumber = "87";
  3062. User = "amit";
  3063. Type = 4;
  3064. Classification = 4;
  3065. LogType = 1;
  3066. OriginalEvent = instance of Win32_MouseDownEvent
  3067. {
  3068. XCoordinate = 662;
  3069. YCoordinate = 597;
  3070. AltPressed = false;
  3071. ControlPressed = true;
  3072. ButtonIndex = 2;
  3073. };
  3074. };
  3075. instance of Microsoft_EELTOCEntryInFile
  3076. {
  3077. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  3078. Entry ="Microsoft_EELEntry='87'";
  3079. };
  3080. instance of Microsoft_EELEntry
  3081. {
  3082. EventId = "88";
  3083. SourceSubsystemType="NT Event Log";
  3084. SourceSubsystemName ="driver";
  3085. SystemAbout = "amitc_i2";
  3086. SystemFrom = "ruchitan_2";
  3087. DeliveredBy = "ruchitan_2";
  3088. Category="message";
  3089. Subcategory="mice";
  3090. Priority = 4;
  3091. Severity = 3;
  3092. TimeGenerated = "19910214003400.141043+480";
  3093. LoggingTime = "19960711090405.126848+480";
  3094. RollupTime = "19910206050720.135902+480";
  3095. Message = "Message with key to search = 413235948";
  3096. RecordNumber = "88";
  3097. User = "amit";
  3098. Type = 6;
  3099. Classification = 5;
  3100. LogType = 3;
  3101. OriginalEvent = instance of Win32_MouseMoveEvent
  3102. {
  3103. XCoordinate = 612;
  3104. YCoordinate = 325;
  3105. AltPressed = false;
  3106. ControlPressed = true;
  3107. };
  3108. };
  3109. instance of Microsoft_EELTOCEntryInFile
  3110. {
  3111. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  3112. Entry ="Microsoft_EELEntry='88'";
  3113. };
  3114. instance of Microsoft_EELEntry
  3115. {
  3116. EventId = "89";
  3117. SourceSubsystemType="NT Event Log";
  3118. SourceSubsystemName ="server";
  3119. SystemAbout = "amitc_i1";
  3120. SystemFrom = "ruchitan_1";
  3121. DeliveredBy = "ruchitan_1";
  3122. Category="message";
  3123. Subcategory="mice";
  3124. Priority = 3;
  3125. Severity = 2;
  3126. TimeGenerated = "19920303221304.129982+480";
  3127. LoggingTime = "19991018084414.166417+480";
  3128. RollupTime = "19980913185206.155897+480";
  3129. Message = "Message with key to search = 1212287395";
  3130. RecordNumber = "89";
  3131. User = "amit";
  3132. Type = 5;
  3133. Classification = 4;
  3134. LogType = 2;
  3135. OriginalEvent = instance of Win32_MouseClickEvent
  3136. {
  3137. XCoordinate = 250;
  3138. YCoordinate = 419;
  3139. AltPressed = false;
  3140. ControlPressed = true;
  3141. ButtonIndex = 0;
  3142. };
  3143. };
  3144. instance of Microsoft_EELTOCEntryInFile
  3145. {
  3146. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3147. Entry ="Microsoft_EELEntry='89'";
  3148. };
  3149. instance of Microsoft_EELEntry
  3150. {
  3151. EventId = "90";
  3152. SourceSubsystemType="NT Event Log";
  3153. SourceSubsystemName ="application";
  3154. SystemAbout = "ruchitan_2";
  3155. SystemFrom = "amitc_i1";
  3156. DeliveredBy = "ruchitan_2";
  3157. Category="message";
  3158. Subcategory="mice";
  3159. Priority = 2;
  3160. Severity = 2;
  3161. TimeGenerated = "19930416233523.175118+480";
  3162. LoggingTime = "20011204222419.116910+480";
  3163. RollupTime = "19991002073722.136447+480";
  3164. Message = "Message with key to search = 226795435";
  3165. RecordNumber = "90";
  3166. User = "rishi";
  3167. Type = 3;
  3168. Classification = 5;
  3169. LogType = 2;
  3170. OriginalEvent = instance of Win32_MouseUpEvent
  3171. {
  3172. XCoordinate = 486;
  3173. YCoordinate = 533;
  3174. AltPressed = true;
  3175. ControlPressed = false;
  3176. ButtonIndex = 1;
  3177. };
  3178. };
  3179. instance of Microsoft_EELTOCEntryInFile
  3180. {
  3181. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  3182. Entry ="Microsoft_EELEntry='90'";
  3183. };
  3184. instance of Microsoft_EELEntry
  3185. {
  3186. EventId = "91";
  3187. SourceSubsystemType="SMS Log";
  3188. SourceSubsystemName ="driver";
  3189. SystemAbout = "amitc_i1";
  3190. SystemFrom = "ruchitan_2";
  3191. DeliveredBy = "amitc_i2";
  3192. Category="message";
  3193. Subcategory="mice";
  3194. Priority = 1;
  3195. Severity = 4;
  3196. TimeGenerated = "19980917004420.106399+480";
  3197. LoggingTime = "19920327050715.119676+480";
  3198. RollupTime = "19930404210008.163736+480";
  3199. Message = "Message with key to search = 2137085585";
  3200. RecordNumber = "91";
  3201. User = "rishi";
  3202. Type = 4;
  3203. Classification = 7;
  3204. LogType = 1;
  3205. OriginalEvent = instance of Win32_MouseDownEvent
  3206. {
  3207. XCoordinate = 234;
  3208. YCoordinate = 123;
  3209. AltPressed = true;
  3210. ControlPressed = false;
  3211. ButtonIndex = 1;
  3212. };
  3213. };
  3214. instance of Microsoft_EELTOCEntryInFile
  3215. {
  3216. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  3217. Entry ="Microsoft_EELEntry='91'";
  3218. };
  3219. instance of Microsoft_EELEntry
  3220. {
  3221. EventId = "92";
  3222. SourceSubsystemType="NT Event Log";
  3223. SourceSubsystemName ="Unknown";
  3224. SystemAbout = "amitc_i2";
  3225. SystemFrom = "ruchitan_2";
  3226. DeliveredBy = "ruchitan_1";
  3227. Category="message";
  3228. Subcategory="mice";
  3229. Priority = 2;
  3230. Severity = 1;
  3231. TimeGenerated = "19900101123522.114032+480";
  3232. LoggingTime = "19980921082214.163551+480";
  3233. RollupTime = "19980921191823.105755+480";
  3234. Message = "Message with key to search = 122690811";
  3235. RecordNumber = "92";
  3236. User = "sriravi";
  3237. Type = 0;
  3238. Classification = 7;
  3239. LogType = 1;
  3240. OriginalEvent = instance of Win32_MouseMoveEvent
  3241. {
  3242. XCoordinate = 720;
  3243. YCoordinate = 432;
  3244. AltPressed = true;
  3245. ControlPressed = true;
  3246. };
  3247. };
  3248. instance of Microsoft_EELTOCEntryInFile
  3249. {
  3250. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  3251. Entry ="Microsoft_EELEntry='92'";
  3252. };
  3253. instance of Microsoft_EELEntry
  3254. {
  3255. EventId = "93";
  3256. SourceSubsystemType="NT Event Log";
  3257. SourceSubsystemName ="Unknown";
  3258. SystemAbout = "amitc_i1";
  3259. SystemFrom = "amitc_i2";
  3260. DeliveredBy = "amitc_i2";
  3261. Category="message";
  3262. Subcategory="mice";
  3263. Priority = 3;
  3264. Severity = 1;
  3265. TimeGenerated = "19930424162725.145772+480";
  3266. LoggingTime = "20011212020022.176035+480";
  3267. RollupTime = "19950602134716.118491+480";
  3268. Message = "Message with key to search = 1161416970";
  3269. RecordNumber = "93";
  3270. User = "amit";
  3271. Type = 2;
  3272. Classification = 2;
  3273. LogType = 1;
  3274. OriginalEvent = instance of Win32_MouseClickEvent
  3275. {
  3276. XCoordinate = 349;
  3277. YCoordinate = 650;
  3278. AltPressed = false;
  3279. ControlPressed = true;
  3280. ButtonIndex = 2;
  3281. };
  3282. };
  3283. instance of Microsoft_EELTOCEntryInFile
  3284. {
  3285. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3286. Entry ="Microsoft_EELEntry='93'";
  3287. };
  3288. instance of Microsoft_EELEntry
  3289. {
  3290. EventId = "94";
  3291. SourceSubsystemType="NT Event Log";
  3292. SourceSubsystemName ="driver";
  3293. SystemAbout = "ruchitan_1";
  3294. SystemFrom = "ruchitan_1";
  3295. DeliveredBy = "ruchitan_1";
  3296. Category="message";
  3297. Subcategory="mice";
  3298. Priority = 4;
  3299. Severity = 1;
  3300. TimeGenerated = "19930412093827.162387+480";
  3301. LoggingTime = "19980925000303.125307+480";
  3302. RollupTime = "19980913072620.195508+480";
  3303. Message = "Message with key to search = 1279317211";
  3304. RecordNumber = "94";
  3305. User = "rishi";
  3306. Type = 5;
  3307. Classification = 2;
  3308. LogType = 1;
  3309. OriginalEvent = instance of Win32_MouseUpEvent
  3310. {
  3311. XCoordinate = 983;
  3312. YCoordinate = 135;
  3313. AltPressed = false;
  3314. ControlPressed = true;
  3315. ButtonIndex = 2;
  3316. };
  3317. };
  3318. instance of Microsoft_EELTOCEntryInFile
  3319. {
  3320. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  3321. Entry ="Microsoft_EELEntry='94'";
  3322. };
  3323. instance of Microsoft_EELEntry
  3324. {
  3325. EventId = "95";
  3326. SourceSubsystemType="SMS Log";
  3327. SourceSubsystemName ="driver";
  3328. SystemAbout = "ruchitan_1";
  3329. SystemFrom = "ruchitan_1";
  3330. DeliveredBy = "amitc_i1";
  3331. Category="message";
  3332. Subcategory="mice";
  3333. Priority = 3;
  3334. Severity = 2;
  3335. TimeGenerated = "19940505084526.139096+480";
  3336. LoggingTime = "19940525104526.132923+480";
  3337. RollupTime = "19980921081506.149092+480";
  3338. Message = "Message with key to search = 1638963735";
  3339. RecordNumber = "95";
  3340. User = "sriravi";
  3341. Type = 2;
  3342. Classification = 5;
  3343. LogType = 1;
  3344. OriginalEvent = instance of Win32_MouseDownEvent
  3345. {
  3346. XCoordinate = 221;
  3347. YCoordinate = 559;
  3348. AltPressed = false;
  3349. ControlPressed = true;
  3350. ButtonIndex = 1;
  3351. };
  3352. };
  3353. instance of Microsoft_EELTOCEntryInFile
  3354. {
  3355. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  3356. Entry ="Microsoft_EELEntry='95'";
  3357. };
  3358. instance of Microsoft_EELEntry
  3359. {
  3360. EventId = "96";
  3361. SourceSubsystemType="SMS Log";
  3362. SourceSubsystemName ="application";
  3363. SystemAbout = "amitc_i1";
  3364. SystemFrom = "ruchitan_2";
  3365. DeliveredBy = "amitc_i2";
  3366. Category="message";
  3367. Subcategory="mice";
  3368. Priority = 1;
  3369. Severity = 3;
  3370. TimeGenerated = "19920311051926.147955+480";
  3371. LoggingTime = "19991002090723.157483+480";
  3372. RollupTime = "19991010041921.151226+480";
  3373. Message = "Message with key to search = 712806686";
  3374. RecordNumber = "96";
  3375. User = "N/A";
  3376. Type = 0;
  3377. Classification = 4;
  3378. LogType = 2;
  3379. OriginalEvent = instance of Win32_MouseMoveEvent
  3380. {
  3381. XCoordinate = 538;
  3382. YCoordinate = 512;
  3383. AltPressed = true;
  3384. ControlPressed = true;
  3385. };
  3386. };
  3387. instance of Microsoft_EELTOCEntryInFile
  3388. {
  3389. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  3390. Entry ="Microsoft_EELEntry='96'";
  3391. };
  3392. instance of Microsoft_EELEntry
  3393. {
  3394. EventId = "97";
  3395. SourceSubsystemType="NT Event Log";
  3396. SourceSubsystemName ="Unknown";
  3397. SystemAbout = "amitc_i1";
  3398. SystemFrom = "amitc_i1";
  3399. DeliveredBy = "ruchitan_1";
  3400. Category="message";
  3401. Subcategory="mice";
  3402. Priority = 3;
  3403. Severity = 3;
  3404. TimeGenerated = "19910206095707.128852+480";
  3405. LoggingTime = "19970820130815.187121+480";
  3406. RollupTime = "19970812215018.163279+480";
  3407. Message = "Message with key to search = 1184168924";
  3408. RecordNumber = "97";
  3409. User = "amit";
  3410. Type = 6;
  3411. Classification = 2;
  3412. LogType = 1;
  3413. OriginalEvent = instance of Win32_MouseClickEvent
  3414. {
  3415. XCoordinate = 220;
  3416. YCoordinate = 40;
  3417. AltPressed = false;
  3418. ControlPressed = false;
  3419. ButtonIndex = 0;
  3420. };
  3421. };
  3422. instance of Microsoft_EELTOCEntryInFile
  3423. {
  3424. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3425. Entry ="Microsoft_EELEntry='97'";
  3426. };
  3427. instance of Microsoft_EELEntry
  3428. {
  3429. EventId = "98";
  3430. SourceSubsystemType="NT Event Log";
  3431. SourceSubsystemName ="application";
  3432. SystemAbout = "ruchitan_1";
  3433. SystemFrom = "ruchitan_1";
  3434. DeliveredBy = "amitc_i2";
  3435. Category="message";
  3436. Subcategory="mice";
  3437. Priority = 4;
  3438. Severity = 1;
  3439. TimeGenerated = "19900109003805.191564+480";
  3440. LoggingTime = "19930424064223.130893+480";
  3441. RollupTime = "19980913202925.166808+480";
  3442. Message = "Message with key to search = 1986867999";
  3443. RecordNumber = "98";
  3444. User = "sriravi";
  3445. Type = 4;
  3446. Classification = 1;
  3447. LogType = 1;
  3448. OriginalEvent = instance of Win32_MouseUpEvent
  3449. {
  3450. XCoordinate = 273;
  3451. YCoordinate = 252;
  3452. AltPressed = false;
  3453. ControlPressed = false;
  3454. ButtonIndex = 2;
  3455. };
  3456. };
  3457. instance of Microsoft_EELTOCEntryInFile
  3458. {
  3459. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  3460. Entry ="Microsoft_EELEntry='98'";
  3461. };
  3462. instance of Microsoft_EELEntry
  3463. {
  3464. EventId = "99";
  3465. SourceSubsystemType="SMS Log";
  3466. SourceSubsystemName ="application";
  3467. SystemAbout = "amitc_i1";
  3468. SystemFrom = "ruchitan_2";
  3469. DeliveredBy = "amitc_i2";
  3470. Category="message";
  3471. Subcategory="mice";
  3472. Priority = 1;
  3473. Severity = 4;
  3474. TimeGenerated = "19910226140209.139182+480";
  3475. LoggingTime = "19930416084701.182462+480";
  3476. RollupTime = "19920323201309.172711+480";
  3477. Message = "Message with key to search = 548680995";
  3478. RecordNumber = "99";
  3479. User = "amit";
  3480. Type = 4;
  3481. Classification = 5;
  3482. LogType = 3;
  3483. OriginalEvent = instance of Win32_MouseDownEvent
  3484. {
  3485. XCoordinate = 303;
  3486. YCoordinate = 366;
  3487. AltPressed = true;
  3488. ControlPressed = false;
  3489. ButtonIndex = 0;
  3490. };
  3491. };
  3492. instance of Microsoft_EELTOCEntryInFile
  3493. {
  3494. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  3495. Entry ="Microsoft_EELEntry='99'";
  3496. };
  3497. instance of Microsoft_EELEntry
  3498. {
  3499. EventId = "100";
  3500. SourceSubsystemType="SMS Log";
  3501. SourceSubsystemName ="Unknown";
  3502. SystemAbout = "ruchitan_1";
  3503. SystemFrom = "amitc_i2";
  3504. DeliveredBy = "amitc_i1";
  3505. Category="message";
  3506. Subcategory="mice";
  3507. Priority = 4;
  3508. Severity = 4;
  3509. TimeGenerated = "19900105211510.196264+480";
  3510. LoggingTime = "20001111232110.161900+480";
  3511. RollupTime = "19930420180802.135687+480";
  3512. Message = "Message with key to search = 1783089040";
  3513. RecordNumber = "100";
  3514. User = "sriravi";
  3515. Type = 4;
  3516. Classification = 7;
  3517. LogType = 3;
  3518. OriginalEvent = instance of Win32_MouseMoveEvent
  3519. {
  3520. XCoordinate = 654;
  3521. YCoordinate = 614;
  3522. AltPressed = true;
  3523. ControlPressed = true;
  3524. };
  3525. };
  3526. instance of Microsoft_EELTOCEntryInFile
  3527. {
  3528. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  3529. Entry ="Microsoft_EELEntry='100'";
  3530. };
  3531. instance of Microsoft_EELEntry
  3532. {
  3533. EventId = "101";
  3534. SourceSubsystemType="NT Event Log";
  3535. SourceSubsystemName ="driver";
  3536. SystemAbout = "ruchitan_1";
  3537. SystemFrom = "amitc_i2";
  3538. DeliveredBy = "amitc_i1";
  3539. Category="message";
  3540. Subcategory="mice";
  3541. Priority = 4;
  3542. Severity = 2;
  3543. TimeGenerated = "19960711005112.123742+480";
  3544. LoggingTime = "19991006192204.194544+480";
  3545. RollupTime = "19970816225116.186003+480";
  3546. Message = "Message with key to search = 520316139";
  3547. RecordNumber = "101";
  3548. User = "N/A";
  3549. Type = 3;
  3550. Classification = 6;
  3551. LogType = 2;
  3552. OriginalEvent = instance of Win32_MouseClickEvent
  3553. {
  3554. XCoordinate = 203;
  3555. YCoordinate = 69;
  3556. AltPressed = true;
  3557. ControlPressed = true;
  3558. ButtonIndex = 2;
  3559. };
  3560. };
  3561. instance of Microsoft_EELTOCEntryInFile
  3562. {
  3563. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3564. Entry ="Microsoft_EELEntry='101'";
  3565. };
  3566. instance of Microsoft_EELEntry
  3567. {
  3568. EventId = "102";
  3569. SourceSubsystemType="NT Event Log";
  3570. SourceSubsystemName ="driver";
  3571. SystemAbout = "ruchitan_1";
  3572. SystemFrom = "ruchitan_2";
  3573. DeliveredBy = "ruchitan_1";
  3574. Category="message";
  3575. Subcategory="mice";
  3576. Priority = 2;
  3577. Severity = 2;
  3578. TimeGenerated = "19900109140817.107781+480";
  3579. LoggingTime = "19991006221011.139988+480";
  3580. RollupTime = "20001103115613.161256+480";
  3581. Message = "Message with key to search = 693658768";
  3582. RecordNumber = "102";
  3583. User = "N/A";
  3584. Type = 4;
  3585. Classification = 1;
  3586. LogType = 2;
  3587. OriginalEvent = instance of Win32_MouseUpEvent
  3588. {
  3589. XCoordinate = 478;
  3590. YCoordinate = 456;
  3591. AltPressed = false;
  3592. ControlPressed = true;
  3593. ButtonIndex = 0;
  3594. };
  3595. };
  3596. instance of Microsoft_EELTOCEntryInFile
  3597. {
  3598. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  3599. Entry ="Microsoft_EELEntry='102'";
  3600. };
  3601. instance of Microsoft_EELEntry
  3602. {
  3603. EventId = "103";
  3604. SourceSubsystemType="SMS Log";
  3605. SourceSubsystemName ="server";
  3606. SystemAbout = "ruchitan_2";
  3607. SystemFrom = "ruchitan_1";
  3608. DeliveredBy = "ruchitan_1";
  3609. Category="message";
  3610. Subcategory="mice";
  3611. Priority = 2;
  3612. Severity = 4;
  3613. TimeGenerated = "19900113044009.192086+480";
  3614. LoggingTime = "19960715231111.121117+480";
  3615. RollupTime = "19960723171927.187494+480";
  3616. Message = "Message with key to search = 556982911";
  3617. RecordNumber = "103";
  3618. User = "N/A";
  3619. Type = 4;
  3620. Classification = 8;
  3621. LogType = 3;
  3622. OriginalEvent = instance of Win32_MouseDownEvent
  3623. {
  3624. XCoordinate = 29;
  3625. YCoordinate = 590;
  3626. AltPressed = true;
  3627. ControlPressed = true;
  3628. ButtonIndex = 0;
  3629. };
  3630. };
  3631. instance of Microsoft_EELTOCEntryInFile
  3632. {
  3633. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  3634. Entry ="Microsoft_EELEntry='103'";
  3635. };
  3636. instance of Microsoft_EELEntry
  3637. {
  3638. EventId = "104";
  3639. SourceSubsystemType="SMS Log";
  3640. SourceSubsystemName ="server";
  3641. SystemAbout = "amitc_i1";
  3642. SystemFrom = "amitc_i2";
  3643. DeliveredBy = "amitc_i1";
  3644. Category="message";
  3645. Subcategory="mice";
  3646. Priority = 3;
  3647. Severity = 1;
  3648. TimeGenerated = "19940501064225.142614+480";
  3649. LoggingTime = "19930420063312.163538+480";
  3650. RollupTime = "19940525220211.176198+480";
  3651. Message = "Message with key to search = 2052657686";
  3652. RecordNumber = "104";
  3653. User = "sriravi";
  3654. Type = 3;
  3655. Classification = 5;
  3656. LogType = 3;
  3657. OriginalEvent = instance of Win32_MouseMoveEvent
  3658. {
  3659. XCoordinate = 931;
  3660. YCoordinate = 679;
  3661. AltPressed = false;
  3662. ControlPressed = true;
  3663. };
  3664. };
  3665. instance of Microsoft_EELTOCEntryInFile
  3666. {
  3667. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  3668. Entry ="Microsoft_EELEntry='104'";
  3669. };
  3670. instance of Microsoft_EELEntry
  3671. {
  3672. EventId = "105";
  3673. SourceSubsystemType="SMS Log";
  3674. SourceSubsystemName ="driver";
  3675. SystemAbout = "ruchitan_2";
  3676. SystemFrom = "ruchitan_1";
  3677. DeliveredBy = "ruchitan_1";
  3678. Category="message";
  3679. Subcategory="mice";
  3680. Priority = 2;
  3681. Severity = 3;
  3682. TimeGenerated = "19930420201307.160651+480";
  3683. LoggingTime = "19960703101025.119786+480";
  3684. RollupTime = "20011204172521.165916+480";
  3685. Message = "Message with key to search = 357021685";
  3686. RecordNumber = "105";
  3687. User = "amit";
  3688. Type = 0;
  3689. Classification = 2;
  3690. LogType = 3;
  3691. OriginalEvent = instance of Win32_MouseClickEvent
  3692. {
  3693. XCoordinate = 815;
  3694. YCoordinate = 10;
  3695. AltPressed = true;
  3696. ControlPressed = true;
  3697. ButtonIndex = 2;
  3698. };
  3699. };
  3700. instance of Microsoft_EELTOCEntryInFile
  3701. {
  3702. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3703. Entry ="Microsoft_EELEntry='105'";
  3704. };
  3705. instance of Microsoft_EELEntry
  3706. {
  3707. EventId = "106";
  3708. SourceSubsystemType="SMS Log";
  3709. SourceSubsystemName ="driver";
  3710. SystemAbout = "ruchitan_2";
  3711. SystemFrom = "ruchitan_2";
  3712. DeliveredBy = "amitc_i2";
  3713. Category="message";
  3714. Subcategory="mice";
  3715. Priority = 2;
  3716. Severity = 3;
  3717. TimeGenerated = "19920319014716.103958+480";
  3718. LoggingTime = "19991006025101.197834+480";
  3719. RollupTime = "19920315063713.128371+480";
  3720. Message = "Message with key to search = 1034953530";
  3721. RecordNumber = "106";
  3722. User = "amit";
  3723. Type = 1;
  3724. Classification = 2;
  3725. LogType = 2;
  3726. OriginalEvent = instance of Win32_MouseUpEvent
  3727. {
  3728. XCoordinate = 445;
  3729. YCoordinate = 500;
  3730. AltPressed = false;
  3731. ControlPressed = false;
  3732. ButtonIndex = 2;
  3733. };
  3734. };
  3735. instance of Microsoft_EELTOCEntryInFile
  3736. {
  3737. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  3738. Entry ="Microsoft_EELEntry='106'";
  3739. };
  3740. instance of Microsoft_EELEntry
  3741. {
  3742. EventId = "107";
  3743. SourceSubsystemType="SMS Log";
  3744. SourceSubsystemName ="application";
  3745. SystemAbout = "amitc_i2";
  3746. SystemFrom = "ruchitan_1";
  3747. DeliveredBy = "ruchitan_1";
  3748. Category="message";
  3749. Subcategory="mice";
  3750. Priority = 3;
  3751. Severity = 1;
  3752. TimeGenerated = "19920315013423.170334+480";
  3753. LoggingTime = "19930408193601.147568+480";
  3754. RollupTime = "19970824143927.125745+480";
  3755. Message = "Message with key to search = 848583263";
  3756. RecordNumber = "107";
  3757. User = "amit";
  3758. Type = 0;
  3759. Classification = 3;
  3760. LogType = 3;
  3761. OriginalEvent = instance of Win32_MouseDownEvent
  3762. {
  3763. XCoordinate = 994;
  3764. YCoordinate = 228;
  3765. AltPressed = false;
  3766. ControlPressed = true;
  3767. ButtonIndex = 2;
  3768. };
  3769. };
  3770. instance of Microsoft_EELTOCEntryInFile
  3771. {
  3772. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  3773. Entry ="Microsoft_EELEntry='107'";
  3774. };
  3775. instance of Microsoft_EELEntry
  3776. {
  3777. EventId = "108";
  3778. SourceSubsystemType="NT Event Log";
  3779. SourceSubsystemName ="server";
  3780. SystemAbout = "ruchitan_2";
  3781. SystemFrom = "amitc_i2";
  3782. DeliveredBy = "ruchitan_1";
  3783. Category="message";
  3784. Subcategory="mice";
  3785. Priority = 1;
  3786. Severity = 2;
  3787. TimeGenerated = "19900101221314.153147+480";
  3788. LoggingTime = "19980913185915.191174+480";
  3789. RollupTime = "19950626111419.166510+480";
  3790. Message = "Message with key to search = 1188970073";
  3791. RecordNumber = "108";
  3792. User = "amit";
  3793. Type = 3;
  3794. Classification = 7;
  3795. LogType = 1;
  3796. OriginalEvent = instance of Win32_MouseMoveEvent
  3797. {
  3798. XCoordinate = 716;
  3799. YCoordinate = 330;
  3800. AltPressed = false;
  3801. ControlPressed = true;
  3802. };
  3803. };
  3804. instance of Microsoft_EELTOCEntryInFile
  3805. {
  3806. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  3807. Entry ="Microsoft_EELEntry='108'";
  3808. };
  3809. instance of Microsoft_EELEntry
  3810. {
  3811. EventId = "109";
  3812. SourceSubsystemType="SMS Log";
  3813. SourceSubsystemName ="application";
  3814. SystemAbout = "ruchitan_1";
  3815. SystemFrom = "amitc_i2";
  3816. DeliveredBy = "ruchitan_2";
  3817. Category="message";
  3818. Subcategory="mice";
  3819. Priority = 2;
  3820. Severity = 4;
  3821. TimeGenerated = "19991006063722.170919+480";
  3822. LoggingTime = "20011220092115.118139+480";
  3823. RollupTime = "20001115224014.117302+480";
  3824. Message = "Message with key to search = 1801484857";
  3825. RecordNumber = "109";
  3826. User = "sriravi";
  3827. Type = 2;
  3828. Classification = 5;
  3829. LogType = 2;
  3830. OriginalEvent = instance of Win32_MouseClickEvent
  3831. {
  3832. XCoordinate = 275;
  3833. YCoordinate = 230;
  3834. AltPressed = true;
  3835. ControlPressed = true;
  3836. ButtonIndex = 1;
  3837. };
  3838. };
  3839. instance of Microsoft_EELTOCEntryInFile
  3840. {
  3841. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3842. Entry ="Microsoft_EELEntry='109'";
  3843. };
  3844. instance of Microsoft_EELEntry
  3845. {
  3846. EventId = "110";
  3847. SourceSubsystemType="SMS Log";
  3848. SourceSubsystemName ="application";
  3849. SystemAbout = "amitc_i2";
  3850. SystemFrom = "ruchitan_1";
  3851. DeliveredBy = "amitc_i1";
  3852. Category="message";
  3853. Subcategory="mice";
  3854. Priority = 2;
  3855. Severity = 4;
  3856. TimeGenerated = "19920307064618.192254+480";
  3857. LoggingTime = "19980905214607.111121+480";
  3858. RollupTime = "20011224221012.186064+480";
  3859. Message = "Message with key to search = 161339015";
  3860. RecordNumber = "110";
  3861. User = "rishi";
  3862. Type = 2;
  3863. Classification = 4;
  3864. LogType = 2;
  3865. OriginalEvent = instance of Win32_MouseUpEvent
  3866. {
  3867. XCoordinate = 1012;
  3868. YCoordinate = 215;
  3869. AltPressed = false;
  3870. ControlPressed = false;
  3871. ButtonIndex = 1;
  3872. };
  3873. };
  3874. instance of Microsoft_EELTOCEntryInFile
  3875. {
  3876. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  3877. Entry ="Microsoft_EELEntry='110'";
  3878. };
  3879. instance of Microsoft_EELEntry
  3880. {
  3881. EventId = "111";
  3882. SourceSubsystemType="NT Event Log";
  3883. SourceSubsystemName ="server";
  3884. SystemAbout = "amitc_i1";
  3885. SystemFrom = "ruchitan_1";
  3886. DeliveredBy = "ruchitan_2";
  3887. Category="message";
  3888. Subcategory="mice";
  3889. Priority = 1;
  3890. Severity = 4;
  3891. TimeGenerated = "19910222191028.185594+480";
  3892. LoggingTime = "19920323233612.110247+480";
  3893. RollupTime = "19970824131400.155959+480";
  3894. Message = "Message with key to search = 1046525734";
  3895. RecordNumber = "111";
  3896. User = "amit";
  3897. Type = 5;
  3898. Classification = 2;
  3899. LogType = 1;
  3900. OriginalEvent = instance of Win32_MouseDownEvent
  3901. {
  3902. XCoordinate = 476;
  3903. YCoordinate = 387;
  3904. AltPressed = true;
  3905. ControlPressed = true;
  3906. ButtonIndex = 2;
  3907. };
  3908. };
  3909. instance of Microsoft_EELTOCEntryInFile
  3910. {
  3911. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  3912. Entry ="Microsoft_EELEntry='111'";
  3913. };
  3914. instance of Microsoft_EELEntry
  3915. {
  3916. EventId = "112";
  3917. SourceSubsystemType="SMS Log";
  3918. SourceSubsystemName ="driver";
  3919. SystemAbout = "amitc_i2";
  3920. SystemFrom = "ruchitan_1";
  3921. DeliveredBy = "amitc_i2";
  3922. Category="message";
  3923. Subcategory="mice";
  3924. Priority = 2;
  3925. Severity = 1;
  3926. TimeGenerated = "19950626050614.104166+480";
  3927. LoggingTime = "19950602090623.130632+480";
  3928. RollupTime = "20011224125103.190729+480";
  3929. Message = "Message with key to search = 1287116326";
  3930. RecordNumber = "112";
  3931. User = "amit";
  3932. Type = 2;
  3933. Classification = 8;
  3934. LogType = 3;
  3935. OriginalEvent = instance of Win32_MouseMoveEvent
  3936. {
  3937. XCoordinate = 563;
  3938. YCoordinate = 93;
  3939. AltPressed = false;
  3940. ControlPressed = false;
  3941. };
  3942. };
  3943. instance of Microsoft_EELTOCEntryInFile
  3944. {
  3945. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  3946. Entry ="Microsoft_EELEntry='112'";
  3947. };
  3948. instance of Microsoft_EELEntry
  3949. {
  3950. EventId = "113";
  3951. SourceSubsystemType="SMS Log";
  3952. SourceSubsystemName ="server";
  3953. SystemAbout = "ruchitan_2";
  3954. SystemFrom = "amitc_i1";
  3955. DeliveredBy = "ruchitan_2";
  3956. Category="message";
  3957. Subcategory="mice";
  3958. Priority = 2;
  3959. Severity = 3;
  3960. TimeGenerated = "19910214012113.125013+480";
  3961. LoggingTime = "20001119191814.161285+480";
  3962. RollupTime = "19950622045722.194875+480";
  3963. Message = "Message with key to search = 115274990";
  3964. RecordNumber = "113";
  3965. User = "sriravi";
  3966. Type = 4;
  3967. Classification = 1;
  3968. LogType = 1;
  3969. OriginalEvent = instance of Win32_MouseClickEvent
  3970. {
  3971. XCoordinate = 42;
  3972. YCoordinate = 505;
  3973. AltPressed = true;
  3974. ControlPressed = true;
  3975. ButtonIndex = 2;
  3976. };
  3977. };
  3978. instance of Microsoft_EELTOCEntryInFile
  3979. {
  3980. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  3981. Entry ="Microsoft_EELEntry='113'";
  3982. };
  3983. instance of Microsoft_EELEntry
  3984. {
  3985. EventId = "114";
  3986. SourceSubsystemType="NT Event Log";
  3987. SourceSubsystemName ="server";
  3988. SystemAbout = "ruchitan_1";
  3989. SystemFrom = "amitc_i1";
  3990. DeliveredBy = "amitc_i1";
  3991. Category="message";
  3992. Subcategory="mice";
  3993. Priority = 2;
  3994. Severity = 4;
  3995. TimeGenerated = "19900105000107.138677+480";
  3996. LoggingTime = "19970812042522.195685+480";
  3997. RollupTime = "19970816132116.198796+480";
  3998. Message = "Message with key to search = 1710862727";
  3999. RecordNumber = "114";
  4000. User = "rishi";
  4001. Type = 2;
  4002. Classification = 4;
  4003. LogType = 3;
  4004. OriginalEvent = instance of Win32_MouseUpEvent
  4005. {
  4006. XCoordinate = 957;
  4007. YCoordinate = 185;
  4008. AltPressed = false;
  4009. ControlPressed = true;
  4010. ButtonIndex = 1;
  4011. };
  4012. };
  4013. instance of Microsoft_EELTOCEntryInFile
  4014. {
  4015. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4016. Entry ="Microsoft_EELEntry='114'";
  4017. };
  4018. instance of Microsoft_EELEntry
  4019. {
  4020. EventId = "115";
  4021. SourceSubsystemType="SMS Log";
  4022. SourceSubsystemName ="server";
  4023. SystemAbout = "amitc_i1";
  4024. SystemFrom = "amitc_i2";
  4025. DeliveredBy = "amitc_i1";
  4026. Category="message";
  4027. Subcategory="mice";
  4028. Priority = 4;
  4029. Severity = 2;
  4030. TimeGenerated = "19950618221103.176228+480";
  4031. LoggingTime = "20011212042302.132799+480";
  4032. RollupTime = "19940517150115.127701+480";
  4033. Message = "Message with key to search = 1371381805";
  4034. RecordNumber = "115";
  4035. User = "N/A";
  4036. Type = 6;
  4037. Classification = 2;
  4038. LogType = 3;
  4039. OriginalEvent = instance of Win32_MouseDownEvent
  4040. {
  4041. XCoordinate = 650;
  4042. YCoordinate = 166;
  4043. AltPressed = false;
  4044. ControlPressed = true;
  4045. ButtonIndex = 0;
  4046. };
  4047. };
  4048. instance of Microsoft_EELTOCEntryInFile
  4049. {
  4050. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  4051. Entry ="Microsoft_EELEntry='115'";
  4052. };
  4053. instance of Microsoft_EELEntry
  4054. {
  4055. EventId = "116";
  4056. SourceSubsystemType="NT Event Log";
  4057. SourceSubsystemName ="driver";
  4058. SystemAbout = "ruchitan_2";
  4059. SystemFrom = "ruchitan_2";
  4060. DeliveredBy = "amitc_i2";
  4061. Category="message";
  4062. Subcategory="mice";
  4063. Priority = 3;
  4064. Severity = 2;
  4065. TimeGenerated = "19920311043123.153682+480";
  4066. LoggingTime = "19930404171625.115906+480";
  4067. RollupTime = "19960719160209.163436+480";
  4068. Message = "Message with key to search = 1970682275";
  4069. RecordNumber = "116";
  4070. User = "rishi";
  4071. Type = 3;
  4072. Classification = 4;
  4073. LogType = 2;
  4074. OriginalEvent = instance of Win32_MouseMoveEvent
  4075. {
  4076. XCoordinate = 568;
  4077. YCoordinate = 181;
  4078. AltPressed = true;
  4079. ControlPressed = true;
  4080. };
  4081. };
  4082. instance of Microsoft_EELTOCEntryInFile
  4083. {
  4084. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  4085. Entry ="Microsoft_EELEntry='116'";
  4086. };
  4087. instance of Microsoft_EELEntry
  4088. {
  4089. EventId = "117";
  4090. SourceSubsystemType="SMS Log";
  4091. SourceSubsystemName ="application";
  4092. SystemAbout = "ruchitan_1";
  4093. SystemFrom = "amitc_i2";
  4094. DeliveredBy = "amitc_i2";
  4095. Category="message";
  4096. Subcategory="mice";
  4097. Priority = 3;
  4098. Severity = 4;
  4099. TimeGenerated = "19910210085227.190027+480";
  4100. LoggingTime = "19920311133427.159521+480";
  4101. RollupTime = "19920315082422.164052+480";
  4102. Message = "Message with key to search = 647507990";
  4103. RecordNumber = "117";
  4104. User = "N/A";
  4105. Type = 4;
  4106. Classification = 4;
  4107. LogType = 1;
  4108. OriginalEvent = instance of Win32_MouseClickEvent
  4109. {
  4110. XCoordinate = 519;
  4111. YCoordinate = 423;
  4112. AltPressed = true;
  4113. ControlPressed = true;
  4114. ButtonIndex = 1;
  4115. };
  4116. };
  4117. instance of Microsoft_EELTOCEntryInFile
  4118. {
  4119. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  4120. Entry ="Microsoft_EELEntry='117'";
  4121. };
  4122. instance of Microsoft_EELEntry
  4123. {
  4124. EventId = "118";
  4125. SourceSubsystemType="SMS Log";
  4126. SourceSubsystemName ="driver";
  4127. SystemAbout = "ruchitan_2";
  4128. SystemFrom = "ruchitan_2";
  4129. DeliveredBy = "amitc_i1";
  4130. Category="message";
  4131. Subcategory="mice";
  4132. Priority = 4;
  4133. Severity = 2;
  4134. TimeGenerated = "19900121052527.124615+480";
  4135. LoggingTime = "20001111151400.169690+480";
  4136. RollupTime = "20001115063022.125965+480";
  4137. Message = "Message with key to search = 262766048";
  4138. RecordNumber = "118";
  4139. User = "rishi";
  4140. Type = 2;
  4141. Classification = 6;
  4142. LogType = 3;
  4143. OriginalEvent = instance of Win32_MouseUpEvent
  4144. {
  4145. XCoordinate = 991;
  4146. YCoordinate = 331;
  4147. AltPressed = false;
  4148. ControlPressed = false;
  4149. ButtonIndex = 2;
  4150. };
  4151. };
  4152. instance of Microsoft_EELTOCEntryInFile
  4153. {
  4154. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4155. Entry ="Microsoft_EELEntry='118'";
  4156. };
  4157. instance of Microsoft_EELEntry
  4158. {
  4159. EventId = "119";
  4160. SourceSubsystemType="NT Event Log";
  4161. SourceSubsystemName ="Unknown";
  4162. SystemAbout = "ruchitan_1";
  4163. SystemFrom = "ruchitan_2";
  4164. DeliveredBy = "ruchitan_1";
  4165. Category="message";
  4166. Subcategory="mice";
  4167. Priority = 3;
  4168. Severity = 3;
  4169. TimeGenerated = "19950602020322.175259+480";
  4170. LoggingTime = "19920311124805.176141+480";
  4171. RollupTime = "19980913000605.144117+480";
  4172. Message = "Message with key to search = 801837014";
  4173. RecordNumber = "119";
  4174. User = "amit";
  4175. Type = 6;
  4176. Classification = 8;
  4177. LogType = 3;
  4178. OriginalEvent = instance of Win32_MouseDownEvent
  4179. {
  4180. XCoordinate = 737;
  4181. YCoordinate = 305;
  4182. AltPressed = true;
  4183. ControlPressed = false;
  4184. ButtonIndex = 0;
  4185. };
  4186. };
  4187. instance of Microsoft_EELTOCEntryInFile
  4188. {
  4189. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  4190. Entry ="Microsoft_EELEntry='119'";
  4191. };
  4192. instance of Microsoft_EELEntry
  4193. {
  4194. EventId = "120";
  4195. SourceSubsystemType="NT Event Log";
  4196. SourceSubsystemName ="application";
  4197. SystemAbout = "ruchitan_2";
  4198. SystemFrom = "ruchitan_1";
  4199. DeliveredBy = "amitc_i1";
  4200. Category="message";
  4201. Subcategory="mice";
  4202. Priority = 1;
  4203. Severity = 2;
  4204. TimeGenerated = "19900101041918.128458+480";
  4205. LoggingTime = "19980913235227.181674+480";
  4206. RollupTime = "20011228111423.104190+480";
  4207. Message = "Message with key to search = 2113182781";
  4208. RecordNumber = "120";
  4209. User = "amit";
  4210. Type = 4;
  4211. Classification = 1;
  4212. LogType = 2;
  4213. OriginalEvent = instance of Win32_MouseMoveEvent
  4214. {
  4215. XCoordinate = 41;
  4216. YCoordinate = 535;
  4217. AltPressed = true;
  4218. ControlPressed = false;
  4219. };
  4220. };
  4221. instance of Microsoft_EELTOCEntryInFile
  4222. {
  4223. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  4224. Entry ="Microsoft_EELEntry='120'";
  4225. };
  4226. instance of Microsoft_EELEntry
  4227. {
  4228. EventId = "121";
  4229. SourceSubsystemType="NT Event Log";
  4230. SourceSubsystemName ="server";
  4231. SystemAbout = "amitc_i2";
  4232. SystemFrom = "amitc_i1";
  4233. DeliveredBy = "ruchitan_2";
  4234. Category="message";
  4235. Subcategory="mice";
  4236. Priority = 1;
  4237. Severity = 4;
  4238. TimeGenerated = "19910214012909.172568+480";
  4239. LoggingTime = "20011220221713.110310+480";
  4240. RollupTime = "19970820163122.132594+480";
  4241. Message = "Message with key to search = 792336344";
  4242. RecordNumber = "121";
  4243. User = "rishi";
  4244. Type = 2;
  4245. Classification = 6;
  4246. LogType = 3;
  4247. OriginalEvent = instance of Win32_MouseClickEvent
  4248. {
  4249. XCoordinate = 523;
  4250. YCoordinate = 116;
  4251. AltPressed = true;
  4252. ControlPressed = true;
  4253. ButtonIndex = 2;
  4254. };
  4255. };
  4256. instance of Microsoft_EELTOCEntryInFile
  4257. {
  4258. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  4259. Entry ="Microsoft_EELEntry='121'";
  4260. };
  4261. instance of Microsoft_EELEntry
  4262. {
  4263. EventId = "122";
  4264. SourceSubsystemType="SMS Log";
  4265. SourceSubsystemName ="application";
  4266. SystemAbout = "ruchitan_1";
  4267. SystemFrom = "amitc_i2";
  4268. DeliveredBy = "ruchitan_1";
  4269. Category="message";
  4270. Subcategory="mice";
  4271. Priority = 1;
  4272. Severity = 2;
  4273. TimeGenerated = "19900109070602.111653+480";
  4274. LoggingTime = "19920323233612.110247+480";
  4275. RollupTime = "19940501123407.122940+480";
  4276. Message = "Message with key to search = 1600581099";
  4277. RecordNumber = "122";
  4278. User = "amit";
  4279. Type = 6;
  4280. Classification = 1;
  4281. LogType = 2;
  4282. OriginalEvent = instance of Win32_MouseUpEvent
  4283. {
  4284. XCoordinate = 657;
  4285. YCoordinate = 21;
  4286. AltPressed = true;
  4287. ControlPressed = true;
  4288. ButtonIndex = 0;
  4289. };
  4290. };
  4291. instance of Microsoft_EELTOCEntryInFile
  4292. {
  4293. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4294. Entry ="Microsoft_EELEntry='122'";
  4295. };
  4296. instance of Microsoft_EELEntry
  4297. {
  4298. EventId = "123";
  4299. SourceSubsystemType="NT Event Log";
  4300. SourceSubsystemName ="driver";
  4301. SystemAbout = "amitc_i2";
  4302. SystemFrom = "amitc_i2";
  4303. DeliveredBy = "ruchitan_1";
  4304. Category="message";
  4305. Subcategory="mice";
  4306. Priority = 4;
  4307. Severity = 1;
  4308. TimeGenerated = "19960715193103.179735+480";
  4309. LoggingTime = "19950618033513.122432+480";
  4310. RollupTime = "19930416101206.188741+480";
  4311. Message = "Message with key to search = 1153113496";
  4312. RecordNumber = "123";
  4313. User = "rishi";
  4314. Type = 4;
  4315. Classification = 3;
  4316. LogType = 3;
  4317. OriginalEvent = instance of Win32_MouseDownEvent
  4318. {
  4319. XCoordinate = 323;
  4320. YCoordinate = 299;
  4321. AltPressed = true;
  4322. ControlPressed = false;
  4323. ButtonIndex = 1;
  4324. };
  4325. };
  4326. instance of Microsoft_EELTOCEntryInFile
  4327. {
  4328. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  4329. Entry ="Microsoft_EELEntry='123'";
  4330. };
  4331. instance of Microsoft_EELEntry
  4332. {
  4333. EventId = "124";
  4334. SourceSubsystemType="SMS Log";
  4335. SourceSubsystemName ="Unknown";
  4336. SystemAbout = "amitc_i2";
  4337. SystemFrom = "amitc_i2";
  4338. DeliveredBy = "ruchitan_1";
  4339. Category="message";
  4340. Subcategory="mice";
  4341. Priority = 1;
  4342. Severity = 3;
  4343. TimeGenerated = "19900125160602.186236+480";
  4344. LoggingTime = "19930412021621.118468+480";
  4345. RollupTime = "19970804072419.198909+480";
  4346. Message = "Message with key to search = 574234284";
  4347. RecordNumber = "124";
  4348. User = "amit";
  4349. Type = 0;
  4350. Classification = 8;
  4351. LogType = 2;
  4352. OriginalEvent = instance of Win32_MouseMoveEvent
  4353. {
  4354. XCoordinate = 834;
  4355. YCoordinate = 87;
  4356. AltPressed = false;
  4357. ControlPressed = true;
  4358. };
  4359. };
  4360. instance of Microsoft_EELTOCEntryInFile
  4361. {
  4362. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  4363. Entry ="Microsoft_EELEntry='124'";
  4364. };
  4365. instance of Microsoft_EELEntry
  4366. {
  4367. EventId = "125";
  4368. SourceSubsystemType="SMS Log";
  4369. SourceSubsystemName ="Unknown";
  4370. SystemAbout = "amitc_i1";
  4371. SystemFrom = "amitc_i1";
  4372. DeliveredBy = "amitc_i2";
  4373. Category="message";
  4374. Subcategory="mice";
  4375. Priority = 2;
  4376. Severity = 1;
  4377. TimeGenerated = "19920315160628.145573+480";
  4378. LoggingTime = "19960703104711.126881+480";
  4379. RollupTime = "19980921151807.153998+480";
  4380. Message = "Message with key to search = 1789532014";
  4381. RecordNumber = "125";
  4382. User = "sriravi";
  4383. Type = 0;
  4384. Classification = 4;
  4385. LogType = 2;
  4386. OriginalEvent = instance of Win32_MouseClickEvent
  4387. {
  4388. XCoordinate = 106;
  4389. YCoordinate = 735;
  4390. AltPressed = true;
  4391. ControlPressed = true;
  4392. ButtonIndex = 1;
  4393. };
  4394. };
  4395. instance of Microsoft_EELTOCEntryInFile
  4396. {
  4397. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  4398. Entry ="Microsoft_EELEntry='125'";
  4399. };
  4400. instance of Microsoft_EELEntry
  4401. {
  4402. EventId = "126";
  4403. SourceSubsystemType="SMS Log";
  4404. SourceSubsystemName ="driver";
  4405. SystemAbout = "amitc_i1";
  4406. SystemFrom = "ruchitan_2";
  4407. DeliveredBy = "amitc_i1";
  4408. Category="message";
  4409. Subcategory="mice";
  4410. Priority = 2;
  4411. Severity = 1;
  4412. TimeGenerated = "19900105024512.148044+480";
  4413. LoggingTime = "19940509120404.169092+480";
  4414. RollupTime = "19960727124513.174397+480";
  4415. Message = "Message with key to search = 349098483";
  4416. RecordNumber = "126";
  4417. User = "sriravi";
  4418. Type = 1;
  4419. Classification = 1;
  4420. LogType = 2;
  4421. OriginalEvent = instance of Win32_MouseUpEvent
  4422. {
  4423. XCoordinate = 153;
  4424. YCoordinate = 221;
  4425. AltPressed = false;
  4426. ControlPressed = true;
  4427. ButtonIndex = 2;
  4428. };
  4429. };
  4430. instance of Microsoft_EELTOCEntryInFile
  4431. {
  4432. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4433. Entry ="Microsoft_EELEntry='126'";
  4434. };
  4435. instance of Microsoft_EELEntry
  4436. {
  4437. EventId = "127";
  4438. SourceSubsystemType="NT Event Log";
  4439. SourceSubsystemName ="application";
  4440. SystemAbout = "ruchitan_1";
  4441. SystemFrom = "amitc_i2";
  4442. DeliveredBy = "amitc_i1";
  4443. Category="message";
  4444. Subcategory="mice";
  4445. Priority = 3;
  4446. Severity = 3;
  4447. TimeGenerated = "19930424042328.156148+480";
  4448. LoggingTime = "19960711161801.192013+480";
  4449. RollupTime = "19930420144808.111538+480";
  4450. Message = "Message with key to search = 436477371";
  4451. RecordNumber = "127";
  4452. User = "amit";
  4453. Type = 1;
  4454. Classification = 6;
  4455. LogType = 1;
  4456. OriginalEvent = instance of Win32_MouseDownEvent
  4457. {
  4458. XCoordinate = 8;
  4459. YCoordinate = 279;
  4460. AltPressed = false;
  4461. ControlPressed = true;
  4462. ButtonIndex = 2;
  4463. };
  4464. };
  4465. instance of Microsoft_EELTOCEntryInFile
  4466. {
  4467. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  4468. Entry ="Microsoft_EELEntry='127'";
  4469. };
  4470. instance of Microsoft_EELEntry
  4471. {
  4472. EventId = "128";
  4473. SourceSubsystemType="NT Event Log";
  4474. SourceSubsystemName ="server";
  4475. SystemAbout = "ruchitan_2";
  4476. SystemFrom = "amitc_i2";
  4477. DeliveredBy = "ruchitan_2";
  4478. Category="message";
  4479. Subcategory="mice";
  4480. Priority = 4;
  4481. Severity = 3;
  4482. TimeGenerated = "19910218045406.177118+480";
  4483. LoggingTime = "19980921010611.185509+480";
  4484. RollupTime = "19980917134223.182569+480";
  4485. Message = "Message with key to search = 258938766";
  4486. RecordNumber = "128";
  4487. User = "amit";
  4488. Type = 1;
  4489. Classification = 2;
  4490. LogType = 2;
  4491. OriginalEvent = instance of Win32_MouseMoveEvent
  4492. {
  4493. XCoordinate = 480;
  4494. YCoordinate = 157;
  4495. AltPressed = true;
  4496. ControlPressed = true;
  4497. };
  4498. };
  4499. instance of Microsoft_EELTOCEntryInFile
  4500. {
  4501. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  4502. Entry ="Microsoft_EELEntry='128'";
  4503. };
  4504. instance of Microsoft_EELEntry
  4505. {
  4506. EventId = "129";
  4507. SourceSubsystemType="SMS Log";
  4508. SourceSubsystemName ="application";
  4509. SystemAbout = "amitc_i1";
  4510. SystemFrom = "amitc_i2";
  4511. DeliveredBy = "amitc_i2";
  4512. Category="message";
  4513. Subcategory="mice";
  4514. Priority = 2;
  4515. Severity = 2;
  4516. TimeGenerated = "19910214140028.113168+480";
  4517. LoggingTime = "19950606164727.178737+480";
  4518. RollupTime = "19950606175022.137327+480";
  4519. Message = "Message with key to search = 1673901482";
  4520. RecordNumber = "129";
  4521. User = "rishi";
  4522. Type = 5;
  4523. Classification = 1;
  4524. LogType = 3;
  4525. OriginalEvent = instance of Win32_MouseClickEvent
  4526. {
  4527. XCoordinate = 181;
  4528. YCoordinate = 270;
  4529. AltPressed = true;
  4530. ControlPressed = false;
  4531. ButtonIndex = 2;
  4532. };
  4533. };
  4534. instance of Microsoft_EELTOCEntryInFile
  4535. {
  4536. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  4537. Entry ="Microsoft_EELEntry='129'";
  4538. };
  4539. instance of Microsoft_EELEntry
  4540. {
  4541. EventId = "130";
  4542. SourceSubsystemType="NT Event Log";
  4543. SourceSubsystemName ="driver";
  4544. SystemAbout = "amitc_i1";
  4545. SystemFrom = "ruchitan_1";
  4546. DeliveredBy = "amitc_i1";
  4547. Category="message";
  4548. Subcategory="mice";
  4549. Priority = 2;
  4550. Severity = 3;
  4551. TimeGenerated = "19920327190902.112608+480";
  4552. LoggingTime = "20011224120309.105183+480";
  4553. RollupTime = "20001123142314.184209+480";
  4554. Message = "Message with key to search = 282944212";
  4555. RecordNumber = "130";
  4556. User = "sriravi";
  4557. Type = 0;
  4558. Classification = 1;
  4559. LogType = 1;
  4560. OriginalEvent = instance of Win32_MouseUpEvent
  4561. {
  4562. XCoordinate = 196;
  4563. YCoordinate = 445;
  4564. AltPressed = true;
  4565. ControlPressed = false;
  4566. ButtonIndex = 0;
  4567. };
  4568. };
  4569. instance of Microsoft_EELTOCEntryInFile
  4570. {
  4571. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4572. Entry ="Microsoft_EELEntry='130'";
  4573. };
  4574. instance of Microsoft_EELEntry
  4575. {
  4576. EventId = "131";
  4577. SourceSubsystemType="NT Event Log";
  4578. SourceSubsystemName ="server";
  4579. SystemAbout = "ruchitan_1";
  4580. SystemFrom = "ruchitan_2";
  4581. DeliveredBy = "amitc_i1";
  4582. Category="message";
  4583. Subcategory="mice";
  4584. Priority = 1;
  4585. Severity = 1;
  4586. TimeGenerated = "19910222023309.127350+480";
  4587. LoggingTime = "19960707141708.143734+480";
  4588. RollupTime = "19970824044906.186948+480";
  4589. Message = "Message with key to search = 2069007412";
  4590. RecordNumber = "131";
  4591. User = "sriravi";
  4592. Type = 2;
  4593. Classification = 7;
  4594. LogType = 1;
  4595. OriginalEvent = instance of Win32_MouseDownEvent
  4596. {
  4597. XCoordinate = 455;
  4598. YCoordinate = 729;
  4599. AltPressed = true;
  4600. ControlPressed = true;
  4601. ButtonIndex = 2;
  4602. };
  4603. };
  4604. instance of Microsoft_EELTOCEntryInFile
  4605. {
  4606. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  4607. Entry ="Microsoft_EELEntry='131'";
  4608. };
  4609. instance of Microsoft_EELEntry
  4610. {
  4611. EventId = "132";
  4612. SourceSubsystemType="NT Event Log";
  4613. SourceSubsystemName ="application";
  4614. SystemAbout = "ruchitan_2";
  4615. SystemFrom = "amitc_i1";
  4616. DeliveredBy = "amitc_i1";
  4617. Category="message";
  4618. Subcategory="mice";
  4619. Priority = 4;
  4620. Severity = 4;
  4621. TimeGenerated = "19940525115211.143192+480";
  4622. LoggingTime = "20011204170711.137013+480";
  4623. RollupTime = "20001111023528.198319+480";
  4624. Message = "Message with key to search = 530007505";
  4625. RecordNumber = "132";
  4626. User = "sriravi";
  4627. Type = 4;
  4628. Classification = 2;
  4629. LogType = 1;
  4630. OriginalEvent = instance of Win32_MouseMoveEvent
  4631. {
  4632. XCoordinate = 22;
  4633. YCoordinate = 629;
  4634. AltPressed = true;
  4635. ControlPressed = true;
  4636. };
  4637. };
  4638. instance of Microsoft_EELTOCEntryInFile
  4639. {
  4640. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  4641. Entry ="Microsoft_EELEntry='132'";
  4642. };
  4643. instance of Microsoft_EELEntry
  4644. {
  4645. EventId = "133";
  4646. SourceSubsystemType="NT Event Log";
  4647. SourceSubsystemName ="application";
  4648. SystemAbout = "ruchitan_2";
  4649. SystemFrom = "ruchitan_1";
  4650. DeliveredBy = "ruchitan_2";
  4651. Category="message";
  4652. Subcategory="mice";
  4653. Priority = 3;
  4654. Severity = 4;
  4655. TimeGenerated = "19910214072226.138663+480";
  4656. LoggingTime = "19991002090821.131388+480";
  4657. RollupTime = "19940513090225.154308+480";
  4658. Message = "Message with key to search = 470916904";
  4659. RecordNumber = "133";
  4660. User = "sriravi";
  4661. Type = 2;
  4662. Classification = 5;
  4663. LogType = 3;
  4664. OriginalEvent = instance of Win32_MouseClickEvent
  4665. {
  4666. XCoordinate = 878;
  4667. YCoordinate = 29;
  4668. AltPressed = false;
  4669. ControlPressed = true;
  4670. ButtonIndex = 0;
  4671. };
  4672. };
  4673. instance of Microsoft_EELTOCEntryInFile
  4674. {
  4675. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  4676. Entry ="Microsoft_EELEntry='133'";
  4677. };
  4678. instance of Microsoft_EELEntry
  4679. {
  4680. EventId = "134";
  4681. SourceSubsystemType="SMS Log";
  4682. SourceSubsystemName ="application";
  4683. SystemAbout = "amitc_i2";
  4684. SystemFrom = "amitc_i1";
  4685. DeliveredBy = "amitc_i1";
  4686. Category="message";
  4687. Subcategory="mice";
  4688. Priority = 3;
  4689. Severity = 1;
  4690. TimeGenerated = "19930416081627.127792+480";
  4691. LoggingTime = "20011224204411.102288+480";
  4692. RollupTime = "19960707182725.175265+480";
  4693. Message = "Message with key to search = 1408701629";
  4694. RecordNumber = "134";
  4695. User = "rishi";
  4696. Type = 1;
  4697. Classification = 1;
  4698. LogType = 1;
  4699. OriginalEvent = instance of Win32_MouseUpEvent
  4700. {
  4701. XCoordinate = 483;
  4702. YCoordinate = 765;
  4703. AltPressed = false;
  4704. ControlPressed = false;
  4705. ButtonIndex = 1;
  4706. };
  4707. };
  4708. instance of Microsoft_EELTOCEntryInFile
  4709. {
  4710. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4711. Entry ="Microsoft_EELEntry='134'";
  4712. };
  4713. instance of Microsoft_EELEntry
  4714. {
  4715. EventId = "135";
  4716. SourceSubsystemType="NT Event Log";
  4717. SourceSubsystemName ="driver";
  4718. SystemAbout = "amitc_i2";
  4719. SystemFrom = "amitc_i1";
  4720. DeliveredBy = "amitc_i2";
  4721. Category="message";
  4722. Subcategory="mice";
  4723. Priority = 1;
  4724. Severity = 2;
  4725. TimeGenerated = "19930416044526.108544+480";
  4726. LoggingTime = "20011208154715.184836+480";
  4727. RollupTime = "19960719003411.145238+480";
  4728. Message = "Message with key to search = 1481012115";
  4729. RecordNumber = "135";
  4730. User = "sriravi";
  4731. Type = 4;
  4732. Classification = 7;
  4733. LogType = 3;
  4734. OriginalEvent = instance of Win32_MouseDownEvent
  4735. {
  4736. XCoordinate = 238;
  4737. YCoordinate = 606;
  4738. AltPressed = false;
  4739. ControlPressed = false;
  4740. ButtonIndex = 0;
  4741. };
  4742. };
  4743. instance of Microsoft_EELTOCEntryInFile
  4744. {
  4745. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  4746. Entry ="Microsoft_EELEntry='135'";
  4747. };
  4748. instance of Microsoft_EELEntry
  4749. {
  4750. EventId = "136";
  4751. SourceSubsystemType="SMS Log";
  4752. SourceSubsystemName ="driver";
  4753. SystemAbout = "amitc_i1";
  4754. SystemFrom = "amitc_i2";
  4755. DeliveredBy = "amitc_i1";
  4756. Category="message";
  4757. Subcategory="mice";
  4758. Priority = 3;
  4759. Severity = 3;
  4760. TimeGenerated = "19900125200612.179791+480";
  4761. LoggingTime = "19970824132424.104240+480";
  4762. RollupTime = "19960719201716.100975+480";
  4763. Message = "Message with key to search = 2026437872";
  4764. RecordNumber = "136";
  4765. User = "N/A";
  4766. Type = 1;
  4767. Classification = 5;
  4768. LogType = 1;
  4769. OriginalEvent = instance of Win32_MouseMoveEvent
  4770. {
  4771. XCoordinate = 653;
  4772. YCoordinate = 350;
  4773. AltPressed = false;
  4774. ControlPressed = false;
  4775. };
  4776. };
  4777. instance of Microsoft_EELTOCEntryInFile
  4778. {
  4779. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  4780. Entry ="Microsoft_EELEntry='136'";
  4781. };
  4782. instance of Microsoft_EELEntry
  4783. {
  4784. EventId = "137";
  4785. SourceSubsystemType="NT Event Log";
  4786. SourceSubsystemName ="server";
  4787. SystemAbout = "amitc_i2";
  4788. SystemFrom = "ruchitan_1";
  4789. DeliveredBy = "amitc_i1";
  4790. Category="message";
  4791. Subcategory="mice";
  4792. Priority = 2;
  4793. Severity = 3;
  4794. TimeGenerated = "19940521170518.104733+480";
  4795. LoggingTime = "19991014021128.130843+480";
  4796. RollupTime = "20001123164124.102358+480";
  4797. Message = "Message with key to search = 1670121989";
  4798. RecordNumber = "137";
  4799. User = "amit";
  4800. Type = 2;
  4801. Classification = 3;
  4802. LogType = 2;
  4803. OriginalEvent = instance of Win32_MouseClickEvent
  4804. {
  4805. XCoordinate = 538;
  4806. YCoordinate = 284;
  4807. AltPressed = true;
  4808. ControlPressed = false;
  4809. ButtonIndex = 0;
  4810. };
  4811. };
  4812. instance of Microsoft_EELTOCEntryInFile
  4813. {
  4814. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  4815. Entry ="Microsoft_EELEntry='137'";
  4816. };
  4817. instance of Microsoft_EELEntry
  4818. {
  4819. EventId = "138";
  4820. SourceSubsystemType="SMS Log";
  4821. SourceSubsystemName ="application";
  4822. SystemAbout = "amitc_i1";
  4823. SystemFrom = "amitc_i2";
  4824. DeliveredBy = "amitc_i1";
  4825. Category="message";
  4826. Subcategory="mice";
  4827. Priority = 4;
  4828. Severity = 1;
  4829. TimeGenerated = "19910202214228.103986+480";
  4830. LoggingTime = "20001107125327.147266+480";
  4831. RollupTime = "20001107093418.160953+480";
  4832. Message = "Message with key to search = 1560480982";
  4833. RecordNumber = "138";
  4834. User = "rishi";
  4835. Type = 1;
  4836. Classification = 1;
  4837. LogType = 2;
  4838. OriginalEvent = instance of Win32_MouseUpEvent
  4839. {
  4840. XCoordinate = 82;
  4841. YCoordinate = 609;
  4842. AltPressed = false;
  4843. ControlPressed = false;
  4844. ButtonIndex = 1;
  4845. };
  4846. };
  4847. instance of Microsoft_EELTOCEntryInFile
  4848. {
  4849. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4850. Entry ="Microsoft_EELEntry='138'";
  4851. };
  4852. instance of Microsoft_EELEntry
  4853. {
  4854. EventId = "139";
  4855. SourceSubsystemType="NT Event Log";
  4856. SourceSubsystemName ="driver";
  4857. SystemAbout = "amitc_i2";
  4858. SystemFrom = "ruchitan_1";
  4859. DeliveredBy = "amitc_i1";
  4860. Category="message";
  4861. Subcategory="mice";
  4862. Priority = 3;
  4863. Severity = 2;
  4864. TimeGenerated = "19910206142524.169806+480";
  4865. LoggingTime = "19910226230810.144834+480";
  4866. RollupTime = "19950618155811.181788+480";
  4867. Message = "Message with key to search = 1064697216";
  4868. RecordNumber = "139";
  4869. User = "amit";
  4870. Type = 4;
  4871. Classification = 3;
  4872. LogType = 2;
  4873. OriginalEvent = instance of Win32_MouseDownEvent
  4874. {
  4875. XCoordinate = 676;
  4876. YCoordinate = 152;
  4877. AltPressed = false;
  4878. ControlPressed = false;
  4879. ButtonIndex = 2;
  4880. };
  4881. };
  4882. instance of Microsoft_EELTOCEntryInFile
  4883. {
  4884. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  4885. Entry ="Microsoft_EELEntry='139'";
  4886. };
  4887. instance of Microsoft_EELEntry
  4888. {
  4889. EventId = "140";
  4890. SourceSubsystemType="SMS Log";
  4891. SourceSubsystemName ="server";
  4892. SystemAbout = "ruchitan_1";
  4893. SystemFrom = "amitc_i2";
  4894. DeliveredBy = "amitc_i2";
  4895. Category="message";
  4896. Subcategory="mice";
  4897. Priority = 2;
  4898. Severity = 4;
  4899. TimeGenerated = "19940501215505.126911+480";
  4900. LoggingTime = "19960711113017.149811+480";
  4901. RollupTime = "19970804071419.104085+480";
  4902. Message = "Message with key to search = 437063656";
  4903. RecordNumber = "140";
  4904. User = "amit";
  4905. Type = 6;
  4906. Classification = 2;
  4907. LogType = 2;
  4908. OriginalEvent = instance of Win32_MouseMoveEvent
  4909. {
  4910. XCoordinate = 727;
  4911. YCoordinate = 21;
  4912. AltPressed = true;
  4913. ControlPressed = true;
  4914. };
  4915. };
  4916. instance of Microsoft_EELTOCEntryInFile
  4917. {
  4918. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  4919. Entry ="Microsoft_EELEntry='140'";
  4920. };
  4921. instance of Microsoft_EELEntry
  4922. {
  4923. EventId = "141";
  4924. SourceSubsystemType="NT Event Log";
  4925. SourceSubsystemName ="server";
  4926. SystemAbout = "amitc_i2";
  4927. SystemFrom = "ruchitan_1";
  4928. DeliveredBy = "ruchitan_1";
  4929. Category="message";
  4930. Subcategory="mice";
  4931. Priority = 2;
  4932. Severity = 3;
  4933. TimeGenerated = "19930424162725.145772+480";
  4934. LoggingTime = "19910214141601.143590+480";
  4935. RollupTime = "19970824055013.167906+480";
  4936. Message = "Message with key to search = 1375924033";
  4937. RecordNumber = "141";
  4938. User = "rishi";
  4939. Type = 1;
  4940. Classification = 3;
  4941. LogType = 2;
  4942. OriginalEvent = instance of Win32_MouseClickEvent
  4943. {
  4944. XCoordinate = 13;
  4945. YCoordinate = 726;
  4946. AltPressed = true;
  4947. ControlPressed = true;
  4948. ButtonIndex = 1;
  4949. };
  4950. };
  4951. instance of Microsoft_EELTOCEntryInFile
  4952. {
  4953. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  4954. Entry ="Microsoft_EELEntry='141'";
  4955. };
  4956. instance of Microsoft_EELEntry
  4957. {
  4958. EventId = "142";
  4959. SourceSubsystemType="SMS Log";
  4960. SourceSubsystemName ="driver";
  4961. SystemAbout = "ruchitan_2";
  4962. SystemFrom = "amitc_i1";
  4963. DeliveredBy = "amitc_i2";
  4964. Category="message";
  4965. Subcategory="mice";
  4966. Priority = 1;
  4967. Severity = 4;
  4968. TimeGenerated = "19910206182806.197380+480";
  4969. LoggingTime = "19991010194719.184283+480";
  4970. RollupTime = "19980921231307.116603+480";
  4971. Message = "Message with key to search = 1810019400";
  4972. RecordNumber = "142";
  4973. User = "amit";
  4974. Type = 1;
  4975. Classification = 6;
  4976. LogType = 1;
  4977. OriginalEvent = instance of Win32_MouseUpEvent
  4978. {
  4979. XCoordinate = 1017;
  4980. YCoordinate = 754;
  4981. AltPressed = true;
  4982. ControlPressed = false;
  4983. ButtonIndex = 2;
  4984. };
  4985. };
  4986. instance of Microsoft_EELTOCEntryInFile
  4987. {
  4988. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  4989. Entry ="Microsoft_EELEntry='142'";
  4990. };
  4991. instance of Microsoft_EELEntry
  4992. {
  4993. EventId = "143";
  4994. SourceSubsystemType="NT Event Log";
  4995. SourceSubsystemName ="driver";
  4996. SystemAbout = "amitc_i2";
  4997. SystemFrom = "amitc_i1";
  4998. DeliveredBy = "amitc_i1";
  4999. Category="message";
  5000. Subcategory="mice";
  5001. Priority = 4;
  5002. Severity = 3;
  5003. TimeGenerated = "19960707023817.177589+480";
  5004. LoggingTime = "20011216151217.140690+480";
  5005. RollupTime = "19910226175904.118477+480";
  5006. Message = "Message with key to search = 39208570";
  5007. RecordNumber = "143";
  5008. User = "amit";
  5009. Type = 3;
  5010. Classification = 2;
  5011. LogType = 3;
  5012. OriginalEvent = instance of Win32_MouseDownEvent
  5013. {
  5014. XCoordinate = 392;
  5015. YCoordinate = 615;
  5016. AltPressed = false;
  5017. ControlPressed = false;
  5018. ButtonIndex = 2;
  5019. };
  5020. };
  5021. instance of Microsoft_EELTOCEntryInFile
  5022. {
  5023. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5024. Entry ="Microsoft_EELEntry='143'";
  5025. };
  5026. instance of Microsoft_EELEntry
  5027. {
  5028. EventId = "144";
  5029. SourceSubsystemType="NT Event Log";
  5030. SourceSubsystemName ="application";
  5031. SystemAbout = "amitc_i2";
  5032. SystemFrom = "amitc_i1";
  5033. DeliveredBy = "ruchitan_2";
  5034. Category="message";
  5035. Subcategory="mice";
  5036. Priority = 3;
  5037. Severity = 4;
  5038. TimeGenerated = "19920319175810.147807+480";
  5039. LoggingTime = "20001115080717.182738+480";
  5040. RollupTime = "19930412102807.159636+480";
  5041. Message = "Message with key to search = 1281770749";
  5042. RecordNumber = "144";
  5043. User = "rishi";
  5044. Type = 6;
  5045. Classification = 7;
  5046. LogType = 1;
  5047. OriginalEvent = instance of Win32_MouseMoveEvent
  5048. {
  5049. XCoordinate = 587;
  5050. YCoordinate = 606;
  5051. AltPressed = true;
  5052. ControlPressed = true;
  5053. };
  5054. };
  5055. instance of Microsoft_EELTOCEntryInFile
  5056. {
  5057. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  5058. Entry ="Microsoft_EELEntry='144'";
  5059. };
  5060. instance of Microsoft_EELEntry
  5061. {
  5062. EventId = "145";
  5063. SourceSubsystemType="SMS Log";
  5064. SourceSubsystemName ="application";
  5065. SystemAbout = "amitc_i2";
  5066. SystemFrom = "ruchitan_1";
  5067. DeliveredBy = "ruchitan_1";
  5068. Category="message";
  5069. Subcategory="mice";
  5070. Priority = 2;
  5071. Severity = 1;
  5072. TimeGenerated = "19960711173302.179955+480";
  5073. LoggingTime = "20011212164428.120641+480";
  5074. RollupTime = "19980921141924.133184+480";
  5075. Message = "Message with key to search = 1356797367";
  5076. RecordNumber = "145";
  5077. User = "rishi";
  5078. Type = 2;
  5079. Classification = 4;
  5080. LogType = 3;
  5081. OriginalEvent = instance of Win32_MouseClickEvent
  5082. {
  5083. XCoordinate = 778;
  5084. YCoordinate = 483;
  5085. AltPressed = false;
  5086. ControlPressed = true;
  5087. ButtonIndex = 2;
  5088. };
  5089. };
  5090. instance of Microsoft_EELTOCEntryInFile
  5091. {
  5092. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  5093. Entry ="Microsoft_EELEntry='145'";
  5094. };
  5095. instance of Microsoft_EELEntry
  5096. {
  5097. EventId = "146";
  5098. SourceSubsystemType="NT Event Log";
  5099. SourceSubsystemName ="Unknown";
  5100. SystemAbout = "ruchitan_2";
  5101. SystemFrom = "ruchitan_1";
  5102. DeliveredBy = "amitc_i1";
  5103. Category="message";
  5104. Subcategory="mice";
  5105. Priority = 2;
  5106. Severity = 3;
  5107. TimeGenerated = "19910210184200.107819+480";
  5108. LoggingTime = "20011224053824.111640+480";
  5109. RollupTime = "19920315200723.118707+480";
  5110. Message = "Message with key to search = 924902443";
  5111. RecordNumber = "146";
  5112. User = "amit";
  5113. Type = 4;
  5114. Classification = 7;
  5115. LogType = 1;
  5116. OriginalEvent = instance of Win32_MouseUpEvent
  5117. {
  5118. XCoordinate = 692;
  5119. YCoordinate = 664;
  5120. AltPressed = false;
  5121. ControlPressed = true;
  5122. ButtonIndex = 1;
  5123. };
  5124. };
  5125. instance of Microsoft_EELTOCEntryInFile
  5126. {
  5127. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  5128. Entry ="Microsoft_EELEntry='146'";
  5129. };
  5130. instance of Microsoft_EELEntry
  5131. {
  5132. EventId = "147";
  5133. SourceSubsystemType="NT Event Log";
  5134. SourceSubsystemName ="driver";
  5135. SystemAbout = "amitc_i1";
  5136. SystemFrom = "ruchitan_2";
  5137. DeliveredBy = "amitc_i2";
  5138. Category="message";
  5139. Subcategory="mice";
  5140. Priority = 1;
  5141. Severity = 1;
  5142. TimeGenerated = "19970812212828.177618+480";
  5143. LoggingTime = "20011220235626.188700+480";
  5144. RollupTime = "19940501123407.122940+480";
  5145. Message = "Message with key to search = 677723787";
  5146. RecordNumber = "147";
  5147. User = "amit";
  5148. Type = 3;
  5149. Classification = 1;
  5150. LogType = 2;
  5151. OriginalEvent = instance of Win32_MouseDownEvent
  5152. {
  5153. XCoordinate = 204;
  5154. YCoordinate = 188;
  5155. AltPressed = true;
  5156. ControlPressed = true;
  5157. ButtonIndex = 1;
  5158. };
  5159. };
  5160. instance of Microsoft_EELTOCEntryInFile
  5161. {
  5162. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5163. Entry ="Microsoft_EELEntry='147'";
  5164. };
  5165. instance of Microsoft_EELEntry
  5166. {
  5167. EventId = "148";
  5168. SourceSubsystemType="NT Event Log";
  5169. SourceSubsystemName ="driver";
  5170. SystemAbout = "ruchitan_2";
  5171. SystemFrom = "amitc_i2";
  5172. DeliveredBy = "amitc_i1";
  5173. Category="message";
  5174. Subcategory="mice";
  5175. Priority = 4;
  5176. Severity = 1;
  5177. TimeGenerated = "19980909003023.195372+480";
  5178. LoggingTime = "19970828152505.114750+480";
  5179. RollupTime = "19910222142609.186506+480";
  5180. Message = "Message with key to search = 1878099260";
  5181. RecordNumber = "148";
  5182. User = "N/A";
  5183. Type = 4;
  5184. Classification = 6;
  5185. LogType = 3;
  5186. OriginalEvent = instance of Win32_MouseMoveEvent
  5187. {
  5188. XCoordinate = 740;
  5189. YCoordinate = 332;
  5190. AltPressed = true;
  5191. ControlPressed = true;
  5192. };
  5193. };
  5194. instance of Microsoft_EELTOCEntryInFile
  5195. {
  5196. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  5197. Entry ="Microsoft_EELEntry='148'";
  5198. };
  5199. instance of Microsoft_EELEntry
  5200. {
  5201. EventId = "149";
  5202. SourceSubsystemType="NT Event Log";
  5203. SourceSubsystemName ="driver";
  5204. SystemAbout = "amitc_i1";
  5205. SystemFrom = "ruchitan_1";
  5206. DeliveredBy = "amitc_i1";
  5207. Category="message";
  5208. Subcategory="mice";
  5209. Priority = 3;
  5210. Severity = 3;
  5211. TimeGenerated = "19930428163120.186298+480";
  5212. LoggingTime = "19970824130202.194622+480";
  5213. RollupTime = "19920323025109.148331+480";
  5214. Message = "Message with key to search = 367474000";
  5215. RecordNumber = "149";
  5216. User = "amit";
  5217. Type = 1;
  5218. Classification = 5;
  5219. LogType = 1;
  5220. OriginalEvent = instance of Win32_MouseClickEvent
  5221. {
  5222. XCoordinate = 219;
  5223. YCoordinate = 403;
  5224. AltPressed = true;
  5225. ControlPressed = true;
  5226. ButtonIndex = 2;
  5227. };
  5228. };
  5229. instance of Microsoft_EELTOCEntryInFile
  5230. {
  5231. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  5232. Entry ="Microsoft_EELEntry='149'";
  5233. };
  5234. instance of Microsoft_EELEntry
  5235. {
  5236. EventId = "150";
  5237. SourceSubsystemType="NT Event Log";
  5238. SourceSubsystemName ="driver";
  5239. SystemAbout = "ruchitan_2";
  5240. SystemFrom = "amitc_i1";
  5241. DeliveredBy = "ruchitan_2";
  5242. Category="message";
  5243. Subcategory="mice";
  5244. Priority = 3;
  5245. Severity = 3;
  5246. TimeGenerated = "19900109123110.113775+480";
  5247. LoggingTime = "20001115021723.178569+480";
  5248. RollupTime = "19950614022928.168983+480";
  5249. Message = "Message with key to search = 1630299175";
  5250. RecordNumber = "150";
  5251. User = "N/A";
  5252. Type = 5;
  5253. Classification = 6;
  5254. LogType = 1;
  5255. OriginalEvent = instance of Win32_MouseUpEvent
  5256. {
  5257. XCoordinate = 32;
  5258. YCoordinate = 664;
  5259. AltPressed = true;
  5260. ControlPressed = false;
  5261. ButtonIndex = 1;
  5262. };
  5263. };
  5264. instance of Microsoft_EELTOCEntryInFile
  5265. {
  5266. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  5267. Entry ="Microsoft_EELEntry='150'";
  5268. };
  5269. instance of Microsoft_EELEntry
  5270. {
  5271. EventId = "151";
  5272. SourceSubsystemType="NT Event Log";
  5273. SourceSubsystemName ="application";
  5274. SystemAbout = "ruchitan_2";
  5275. SystemFrom = "ruchitan_2";
  5276. DeliveredBy = "ruchitan_1";
  5277. Category="message";
  5278. Subcategory="mice";
  5279. Priority = 4;
  5280. Severity = 1;
  5281. TimeGenerated = "19910218001220.185710+480";
  5282. LoggingTime = "20011224224010.129689+480";
  5283. RollupTime = "19920323230423.106072+480";
  5284. Message = "Message with key to search = 497713471";
  5285. RecordNumber = "151";
  5286. User = "rishi";
  5287. Type = 4;
  5288. Classification = 8;
  5289. LogType = 3;
  5290. OriginalEvent = instance of Win32_MouseDownEvent
  5291. {
  5292. XCoordinate = 672;
  5293. YCoordinate = 253;
  5294. AltPressed = false;
  5295. ControlPressed = true;
  5296. ButtonIndex = 0;
  5297. };
  5298. };
  5299. instance of Microsoft_EELTOCEntryInFile
  5300. {
  5301. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5302. Entry ="Microsoft_EELEntry='151'";
  5303. };
  5304. instance of Microsoft_EELEntry
  5305. {
  5306. EventId = "152";
  5307. SourceSubsystemType="SMS Log";
  5308. SourceSubsystemName ="driver";
  5309. SystemAbout = "amitc_i2";
  5310. SystemFrom = "amitc_i2";
  5311. DeliveredBy = "ruchitan_2";
  5312. Category="message";
  5313. Subcategory="mice";
  5314. Priority = 1;
  5315. Severity = 4;
  5316. TimeGenerated = "19920323125612.151162+480";
  5317. LoggingTime = "19991002042412.123050+480";
  5318. RollupTime = "19980913134120.116862+480";
  5319. Message = "Message with key to search = 1881726378";
  5320. RecordNumber = "152";
  5321. User = "rishi";
  5322. Type = 6;
  5323. Classification = 2;
  5324. LogType = 2;
  5325. OriginalEvent = instance of Win32_MouseMoveEvent
  5326. {
  5327. XCoordinate = 177;
  5328. YCoordinate = 746;
  5329. AltPressed = false;
  5330. ControlPressed = false;
  5331. };
  5332. };
  5333. instance of Microsoft_EELTOCEntryInFile
  5334. {
  5335. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  5336. Entry ="Microsoft_EELEntry='152'";
  5337. };
  5338. instance of Microsoft_EELEntry
  5339. {
  5340. EventId = "153";
  5341. SourceSubsystemType="SMS Log";
  5342. SourceSubsystemName ="driver";
  5343. SystemAbout = "ruchitan_1";
  5344. SystemFrom = "ruchitan_2";
  5345. DeliveredBy = "ruchitan_2";
  5346. Category="message";
  5347. Subcategory="mice";
  5348. Priority = 2;
  5349. Severity = 4;
  5350. TimeGenerated = "19900109123110.113775+480";
  5351. LoggingTime = "20011212013309.153545+480";
  5352. RollupTime = "20001127133902.138830+480";
  5353. Message = "Message with key to search = 1605604039";
  5354. RecordNumber = "153";
  5355. User = "N/A";
  5356. Type = 6;
  5357. Classification = 2;
  5358. LogType = 1;
  5359. OriginalEvent = instance of Win32_MouseClickEvent
  5360. {
  5361. XCoordinate = 618;
  5362. YCoordinate = 4;
  5363. AltPressed = true;
  5364. ControlPressed = true;
  5365. ButtonIndex = 0;
  5366. };
  5367. };
  5368. instance of Microsoft_EELTOCEntryInFile
  5369. {
  5370. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  5371. Entry ="Microsoft_EELEntry='153'";
  5372. };
  5373. instance of Microsoft_EELEntry
  5374. {
  5375. EventId = "154";
  5376. SourceSubsystemType="NT Event Log";
  5377. SourceSubsystemName ="application";
  5378. SystemAbout = "amitc_i2";
  5379. SystemFrom = "ruchitan_1";
  5380. DeliveredBy = "amitc_i2";
  5381. Category="message";
  5382. Subcategory="mice";
  5383. Priority = 2;
  5384. Severity = 2;
  5385. TimeGenerated = "19900121203810.157157+480";
  5386. LoggingTime = "19980901171110.148613+480";
  5387. RollupTime = "20001107181504.193466+480";
  5388. Message = "Message with key to search = 1961633195";
  5389. RecordNumber = "154";
  5390. User = "amit";
  5391. Type = 3;
  5392. Classification = 6;
  5393. LogType = 1;
  5394. OriginalEvent = instance of Win32_MouseUpEvent
  5395. {
  5396. XCoordinate = 14;
  5397. YCoordinate = 411;
  5398. AltPressed = true;
  5399. ControlPressed = false;
  5400. ButtonIndex = 2;
  5401. };
  5402. };
  5403. instance of Microsoft_EELTOCEntryInFile
  5404. {
  5405. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  5406. Entry ="Microsoft_EELEntry='154'";
  5407. };
  5408. instance of Microsoft_EELEntry
  5409. {
  5410. EventId = "155";
  5411. SourceSubsystemType="NT Event Log";
  5412. SourceSubsystemName ="Unknown";
  5413. SystemAbout = "ruchitan_2";
  5414. SystemFrom = "ruchitan_1";
  5415. DeliveredBy = "amitc_i1";
  5416. Category="message";
  5417. Subcategory="mice";
  5418. Priority = 4;
  5419. Severity = 4;
  5420. TimeGenerated = "19920307185127.111651+480";
  5421. LoggingTime = "20011212133319.108990+480";
  5422. RollupTime = "19960719111519.117085+480";
  5423. Message = "Message with key to search = 1672570788";
  5424. RecordNumber = "155";
  5425. User = "rishi";
  5426. Type = 2;
  5427. Classification = 4;
  5428. LogType = 2;
  5429. OriginalEvent = instance of Win32_MouseDownEvent
  5430. {
  5431. XCoordinate = 25;
  5432. YCoordinate = 50;
  5433. AltPressed = false;
  5434. ControlPressed = true;
  5435. ButtonIndex = 1;
  5436. };
  5437. };
  5438. instance of Microsoft_EELTOCEntryInFile
  5439. {
  5440. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5441. Entry ="Microsoft_EELEntry='155'";
  5442. };
  5443. instance of Microsoft_EELEntry
  5444. {
  5445. EventId = "156";
  5446. SourceSubsystemType="SMS Log";
  5447. SourceSubsystemName ="application";
  5448. SystemAbout = "ruchitan_1";
  5449. SystemFrom = "ruchitan_1";
  5450. DeliveredBy = "ruchitan_1";
  5451. Category="message";
  5452. Subcategory="mice";
  5453. Priority = 1;
  5454. Severity = 3;
  5455. TimeGenerated = "19910202112422.101491+480";
  5456. LoggingTime = "19950622202313.195264+480";
  5457. RollupTime = "20001127102726.153419+480";
  5458. Message = "Message with key to search = 714646964";
  5459. RecordNumber = "156";
  5460. User = "amit";
  5461. Type = 4;
  5462. Classification = 7;
  5463. LogType = 3;
  5464. OriginalEvent = instance of Win32_MouseMoveEvent
  5465. {
  5466. XCoordinate = 642;
  5467. YCoordinate = 50;
  5468. AltPressed = true;
  5469. ControlPressed = true;
  5470. };
  5471. };
  5472. instance of Microsoft_EELTOCEntryInFile
  5473. {
  5474. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  5475. Entry ="Microsoft_EELEntry='156'";
  5476. };
  5477. instance of Microsoft_EELEntry
  5478. {
  5479. EventId = "157";
  5480. SourceSubsystemType="NT Event Log";
  5481. SourceSubsystemName ="server";
  5482. SystemAbout = "amitc_i1";
  5483. SystemFrom = "amitc_i2";
  5484. DeliveredBy = "ruchitan_2";
  5485. Category="message";
  5486. Subcategory="mice";
  5487. Priority = 4;
  5488. Severity = 1;
  5489. TimeGenerated = "19920315061310.163940+480";
  5490. LoggingTime = "19930428085906.163921+480";
  5491. RollupTime = "19970812215018.163279+480";
  5492. Message = "Message with key to search = 214966219";
  5493. RecordNumber = "157";
  5494. User = "rishi";
  5495. Type = 6;
  5496. Classification = 1;
  5497. LogType = 2;
  5498. OriginalEvent = instance of Win32_MouseClickEvent
  5499. {
  5500. XCoordinate = 1007;
  5501. YCoordinate = 618;
  5502. AltPressed = false;
  5503. ControlPressed = false;
  5504. ButtonIndex = 2;
  5505. };
  5506. };
  5507. instance of Microsoft_EELTOCEntryInFile
  5508. {
  5509. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  5510. Entry ="Microsoft_EELEntry='157'";
  5511. };
  5512. instance of Microsoft_EELEntry
  5513. {
  5514. EventId = "158";
  5515. SourceSubsystemType="SMS Log";
  5516. SourceSubsystemName ="application";
  5517. SystemAbout = "amitc_i1";
  5518. SystemFrom = "amitc_i2";
  5519. DeliveredBy = "ruchitan_2";
  5520. Category="message";
  5521. Subcategory="mice";
  5522. Priority = 3;
  5523. Severity = 2;
  5524. TimeGenerated = "19940525140127.150260+480";
  5525. LoggingTime = "19991018022714.198302+480";
  5526. RollupTime = "19940509211423.198000+480";
  5527. Message = "Message with key to search = 1515226295";
  5528. RecordNumber = "158";
  5529. User = "amit";
  5530. Type = 5;
  5531. Classification = 8;
  5532. LogType = 2;
  5533. OriginalEvent = instance of Win32_MouseUpEvent
  5534. {
  5535. XCoordinate = 13;
  5536. YCoordinate = 673;
  5537. AltPressed = false;
  5538. ControlPressed = true;
  5539. ButtonIndex = 1;
  5540. };
  5541. };
  5542. instance of Microsoft_EELTOCEntryInFile
  5543. {
  5544. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  5545. Entry ="Microsoft_EELEntry='158'";
  5546. };
  5547. instance of Microsoft_EELEntry
  5548. {
  5549. EventId = "159";
  5550. SourceSubsystemType="NT Event Log";
  5551. SourceSubsystemName ="driver";
  5552. SystemAbout = "ruchitan_1";
  5553. SystemFrom = "ruchitan_2";
  5554. DeliveredBy = "amitc_i2";
  5555. Category="message";
  5556. Subcategory="mice";
  5557. Priority = 3;
  5558. Severity = 2;
  5559. TimeGenerated = "19900113024122.151557+480";
  5560. LoggingTime = "20011212013518.116329+480";
  5561. RollupTime = "19991026184902.128933+480";
  5562. Message = "Message with key to search = 167656135";
  5563. RecordNumber = "159";
  5564. User = "sriravi";
  5565. Type = 1;
  5566. Classification = 3;
  5567. LogType = 2;
  5568. OriginalEvent = instance of Win32_MouseDownEvent
  5569. {
  5570. XCoordinate = 651;
  5571. YCoordinate = 721;
  5572. AltPressed = false;
  5573. ControlPressed = false;
  5574. ButtonIndex = 0;
  5575. };
  5576. };
  5577. instance of Microsoft_EELTOCEntryInFile
  5578. {
  5579. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5580. Entry ="Microsoft_EELEntry='159'";
  5581. };
  5582. instance of Microsoft_EELEntry
  5583. {
  5584. EventId = "160";
  5585. SourceSubsystemType="NT Event Log";
  5586. SourceSubsystemName ="application";
  5587. SystemAbout = "ruchitan_2";
  5588. SystemFrom = "amitc_i2";
  5589. DeliveredBy = "amitc_i1";
  5590. Category="message";
  5591. Subcategory="mice";
  5592. Priority = 4;
  5593. Severity = 4;
  5594. TimeGenerated = "19950606152126.144100+480";
  5595. LoggingTime = "19920319182324.107451+480";
  5596. RollupTime = "19991026133219.195188+480";
  5597. Message = "Message with key to search = 1121680804";
  5598. RecordNumber = "160";
  5599. User = "N/A";
  5600. Type = 4;
  5601. Classification = 8;
  5602. LogType = 2;
  5603. OriginalEvent = instance of Win32_MouseMoveEvent
  5604. {
  5605. XCoordinate = 111;
  5606. YCoordinate = 386;
  5607. AltPressed = true;
  5608. ControlPressed = false;
  5609. };
  5610. };
  5611. instance of Microsoft_EELTOCEntryInFile
  5612. {
  5613. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  5614. Entry ="Microsoft_EELEntry='160'";
  5615. };
  5616. instance of Microsoft_EELEntry
  5617. {
  5618. EventId = "161";
  5619. SourceSubsystemType="SMS Log";
  5620. SourceSubsystemName ="driver";
  5621. SystemAbout = "amitc_i2";
  5622. SystemFrom = "ruchitan_1";
  5623. DeliveredBy = "ruchitan_1";
  5624. Category="message";
  5625. Subcategory="mice";
  5626. Priority = 4;
  5627. Severity = 1;
  5628. TimeGenerated = "19950610192911.182683+480";
  5629. LoggingTime = "19910202111125.151454+480";
  5630. RollupTime = "19991018061112.123300+480";
  5631. Message = "Message with key to search = 395004111";
  5632. RecordNumber = "161";
  5633. User = "rishi";
  5634. Type = 0;
  5635. Classification = 1;
  5636. LogType = 1;
  5637. OriginalEvent = instance of Win32_MouseClickEvent
  5638. {
  5639. XCoordinate = 715;
  5640. YCoordinate = 165;
  5641. AltPressed = true;
  5642. ControlPressed = true;
  5643. ButtonIndex = 0;
  5644. };
  5645. };
  5646. instance of Microsoft_EELTOCEntryInFile
  5647. {
  5648. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  5649. Entry ="Microsoft_EELEntry='161'";
  5650. };
  5651. instance of Microsoft_EELEntry
  5652. {
  5653. EventId = "162";
  5654. SourceSubsystemType="SMS Log";
  5655. SourceSubsystemName ="driver";
  5656. SystemAbout = "amitc_i1";
  5657. SystemFrom = "amitc_i1";
  5658. DeliveredBy = "amitc_i2";
  5659. Category="message";
  5660. Subcategory="mice";
  5661. Priority = 2;
  5662. Severity = 1;
  5663. TimeGenerated = "19960723164108.187326+480";
  5664. LoggingTime = "19960707143219.103006+480";
  5665. RollupTime = "19970804141907.139962+480";
  5666. Message = "Message with key to search = 344538662";
  5667. RecordNumber = "162";
  5668. User = "sriravi";
  5669. Type = 2;
  5670. Classification = 5;
  5671. LogType = 2;
  5672. OriginalEvent = instance of Win32_MouseUpEvent
  5673. {
  5674. XCoordinate = 861;
  5675. YCoordinate = 600;
  5676. AltPressed = false;
  5677. ControlPressed = false;
  5678. ButtonIndex = 0;
  5679. };
  5680. };
  5681. instance of Microsoft_EELTOCEntryInFile
  5682. {
  5683. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  5684. Entry ="Microsoft_EELEntry='162'";
  5685. };
  5686. instance of Microsoft_EELEntry
  5687. {
  5688. EventId = "163";
  5689. SourceSubsystemType="NT Event Log";
  5690. SourceSubsystemName ="application";
  5691. SystemAbout = "ruchitan_2";
  5692. SystemFrom = "amitc_i2";
  5693. DeliveredBy = "amitc_i1";
  5694. Category="message";
  5695. Subcategory="mice";
  5696. Priority = 1;
  5697. Severity = 1;
  5698. TimeGenerated = "19920303155809.193110+480";
  5699. LoggingTime = "19980905064527.125402+480";
  5700. RollupTime = "19940509165603.125498+480";
  5701. Message = "Message with key to search = 1006452408";
  5702. RecordNumber = "163";
  5703. User = "sriravi";
  5704. Type = 4;
  5705. Classification = 7;
  5706. LogType = 2;
  5707. OriginalEvent = instance of Win32_MouseDownEvent
  5708. {
  5709. XCoordinate = 167;
  5710. YCoordinate = 578;
  5711. AltPressed = false;
  5712. ControlPressed = true;
  5713. ButtonIndex = 0;
  5714. };
  5715. };
  5716. instance of Microsoft_EELTOCEntryInFile
  5717. {
  5718. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5719. Entry ="Microsoft_EELEntry='163'";
  5720. };
  5721. instance of Microsoft_EELEntry
  5722. {
  5723. EventId = "164";
  5724. SourceSubsystemType="SMS Log";
  5725. SourceSubsystemName ="server";
  5726. SystemAbout = "amitc_i1";
  5727. SystemFrom = "ruchitan_2";
  5728. DeliveredBy = "ruchitan_1";
  5729. Category="message";
  5730. Subcategory="mice";
  5731. Priority = 1;
  5732. Severity = 2;
  5733. TimeGenerated = "19920327073909.110312+480";
  5734. LoggingTime = "19950614230603.179186+480";
  5735. RollupTime = "19920319172601.184110+480";
  5736. Message = "Message with key to search = 2138064388";
  5737. RecordNumber = "164";
  5738. User = "sriravi";
  5739. Type = 5;
  5740. Classification = 6;
  5741. LogType = 1;
  5742. OriginalEvent = instance of Win32_MouseMoveEvent
  5743. {
  5744. XCoordinate = 618;
  5745. YCoordinate = 277;
  5746. AltPressed = false;
  5747. ControlPressed = false;
  5748. };
  5749. };
  5750. instance of Microsoft_EELTOCEntryInFile
  5751. {
  5752. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  5753. Entry ="Microsoft_EELEntry='164'";
  5754. };
  5755. instance of Microsoft_EELEntry
  5756. {
  5757. EventId = "165";
  5758. SourceSubsystemType="SMS Log";
  5759. SourceSubsystemName ="application";
  5760. SystemAbout = "ruchitan_2";
  5761. SystemFrom = "ruchitan_2";
  5762. DeliveredBy = "amitc_i2";
  5763. Category="message";
  5764. Subcategory="mice";
  5765. Priority = 2;
  5766. Severity = 4;
  5767. TimeGenerated = "19950622190218.155257+480";
  5768. LoggingTime = "19950622212803.139988+480";
  5769. RollupTime = "20001111001511.129100+480";
  5770. Message = "Message with key to search = 1065464314";
  5771. RecordNumber = "165";
  5772. User = "rishi";
  5773. Type = 3;
  5774. Classification = 5;
  5775. LogType = 3;
  5776. OriginalEvent = instance of Win32_MouseClickEvent
  5777. {
  5778. XCoordinate = 774;
  5779. YCoordinate = 32;
  5780. AltPressed = true;
  5781. ControlPressed = true;
  5782. ButtonIndex = 2;
  5783. };
  5784. };
  5785. instance of Microsoft_EELTOCEntryInFile
  5786. {
  5787. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  5788. Entry ="Microsoft_EELEntry='165'";
  5789. };
  5790. instance of Microsoft_EELEntry
  5791. {
  5792. EventId = "166";
  5793. SourceSubsystemType="NT Event Log";
  5794. SourceSubsystemName ="Unknown";
  5795. SystemAbout = "amitc_i1";
  5796. SystemFrom = "amitc_i1";
  5797. DeliveredBy = "ruchitan_2";
  5798. Category="message";
  5799. Subcategory="mice";
  5800. Priority = 1;
  5801. Severity = 4;
  5802. TimeGenerated = "19930420063028.154081+480";
  5803. LoggingTime = "19970812105207.197854+480";
  5804. RollupTime = "19920303141806.107240+480";
  5805. Message = "Message with key to search = 557008129";
  5806. RecordNumber = "166";
  5807. User = "sriravi";
  5808. Type = 6;
  5809. Classification = 2;
  5810. LogType = 3;
  5811. OriginalEvent = instance of Win32_MouseUpEvent
  5812. {
  5813. XCoordinate = 57;
  5814. YCoordinate = 138;
  5815. AltPressed = true;
  5816. ControlPressed = false;
  5817. ButtonIndex = 1;
  5818. };
  5819. };
  5820. instance of Microsoft_EELTOCEntryInFile
  5821. {
  5822. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  5823. Entry ="Microsoft_EELEntry='166'";
  5824. };
  5825. instance of Microsoft_EELEntry
  5826. {
  5827. EventId = "167";
  5828. SourceSubsystemType="SMS Log";
  5829. SourceSubsystemName ="driver";
  5830. SystemAbout = "amitc_i1";
  5831. SystemFrom = "ruchitan_2";
  5832. DeliveredBy = "ruchitan_2";
  5833. Category="message";
  5834. Subcategory="mice";
  5835. Priority = 4;
  5836. Severity = 2;
  5837. TimeGenerated = "19920319035113.179903+480";
  5838. LoggingTime = "19991006002926.100640+480";
  5839. RollupTime = "19970808180618.188610+480";
  5840. Message = "Message with key to search = 834100873";
  5841. RecordNumber = "167";
  5842. User = "rishi";
  5843. Type = 6;
  5844. Classification = 7;
  5845. LogType = 1;
  5846. OriginalEvent = instance of Win32_MouseDownEvent
  5847. {
  5848. XCoordinate = 31;
  5849. YCoordinate = 657;
  5850. AltPressed = false;
  5851. ControlPressed = true;
  5852. ButtonIndex = 2;
  5853. };
  5854. };
  5855. instance of Microsoft_EELTOCEntryInFile
  5856. {
  5857. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5858. Entry ="Microsoft_EELEntry='167'";
  5859. };
  5860. instance of Microsoft_EELEntry
  5861. {
  5862. EventId = "168";
  5863. SourceSubsystemType="SMS Log";
  5864. SourceSubsystemName ="application";
  5865. SystemAbout = "ruchitan_1";
  5866. SystemFrom = "ruchitan_1";
  5867. DeliveredBy = "amitc_i1";
  5868. Category="message";
  5869. Subcategory="mice";
  5870. Priority = 1;
  5871. Severity = 3;
  5872. TimeGenerated = "19920303155809.193110+480";
  5873. LoggingTime = "20011208210723.170221+480";
  5874. RollupTime = "19940513100322.122311+480";
  5875. Message = "Message with key to search = 337789462";
  5876. RecordNumber = "168";
  5877. User = "sriravi";
  5878. Type = 6;
  5879. Classification = 6;
  5880. LogType = 3;
  5881. OriginalEvent = instance of Win32_MouseMoveEvent
  5882. {
  5883. XCoordinate = 597;
  5884. YCoordinate = 161;
  5885. AltPressed = false;
  5886. ControlPressed = false;
  5887. };
  5888. };
  5889. instance of Microsoft_EELTOCEntryInFile
  5890. {
  5891. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  5892. Entry ="Microsoft_EELEntry='168'";
  5893. };
  5894. instance of Microsoft_EELEntry
  5895. {
  5896. EventId = "169";
  5897. SourceSubsystemType="NT Event Log";
  5898. SourceSubsystemName ="application";
  5899. SystemAbout = "ruchitan_2";
  5900. SystemFrom = "amitc_i1";
  5901. DeliveredBy = "amitc_i1";
  5902. Category="message";
  5903. Subcategory="mice";
  5904. Priority = 3;
  5905. Severity = 1;
  5906. TimeGenerated = "19910214153625.128638+480";
  5907. LoggingTime = "19991022133700.191449+480";
  5908. RollupTime = "20001119062220.128863+480";
  5909. Message = "Message with key to search = 1591682320";
  5910. RecordNumber = "169";
  5911. User = "rishi";
  5912. Type = 0;
  5913. Classification = 5;
  5914. LogType = 1;
  5915. OriginalEvent = instance of Win32_MouseClickEvent
  5916. {
  5917. XCoordinate = 176;
  5918. YCoordinate = 296;
  5919. AltPressed = false;
  5920. ControlPressed = true;
  5921. ButtonIndex = 1;
  5922. };
  5923. };
  5924. instance of Microsoft_EELTOCEntryInFile
  5925. {
  5926. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  5927. Entry ="Microsoft_EELEntry='169'";
  5928. };
  5929. instance of Microsoft_EELEntry
  5930. {
  5931. EventId = "170";
  5932. SourceSubsystemType="SMS Log";
  5933. SourceSubsystemName ="Unknown";
  5934. SystemAbout = "amitc_i1";
  5935. SystemFrom = "ruchitan_1";
  5936. DeliveredBy = "ruchitan_2";
  5937. Category="message";
  5938. Subcategory="mice";
  5939. Priority = 2;
  5940. Severity = 4;
  5941. TimeGenerated = "19930412203303.189309+480";
  5942. LoggingTime = "19980905214607.111121+480";
  5943. RollupTime = "19950618151326.108900+480";
  5944. Message = "Message with key to search = 1075343100";
  5945. RecordNumber = "170";
  5946. User = "N/A";
  5947. Type = 0;
  5948. Classification = 6;
  5949. LogType = 2;
  5950. OriginalEvent = instance of Win32_MouseUpEvent
  5951. {
  5952. XCoordinate = 227;
  5953. YCoordinate = 537;
  5954. AltPressed = false;
  5955. ControlPressed = true;
  5956. ButtonIndex = 2;
  5957. };
  5958. };
  5959. instance of Microsoft_EELTOCEntryInFile
  5960. {
  5961. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  5962. Entry ="Microsoft_EELEntry='170'";
  5963. };
  5964. instance of Microsoft_EELEntry
  5965. {
  5966. EventId = "171";
  5967. SourceSubsystemType="NT Event Log";
  5968. SourceSubsystemName ="application";
  5969. SystemAbout = "amitc_i2";
  5970. SystemFrom = "ruchitan_1";
  5971. DeliveredBy = "amitc_i2";
  5972. Category="message";
  5973. Subcategory="mice";
  5974. Priority = 2;
  5975. Severity = 3;
  5976. TimeGenerated = "19900113230911.114848+480";
  5977. LoggingTime = "19970816191706.116707+480";
  5978. RollupTime = "20001111171316.101924+480";
  5979. Message = "Message with key to search = 646246000";
  5980. RecordNumber = "171";
  5981. User = "sriravi";
  5982. Type = 6;
  5983. Classification = 6;
  5984. LogType = 2;
  5985. OriginalEvent = instance of Win32_MouseDownEvent
  5986. {
  5987. XCoordinate = 257;
  5988. YCoordinate = 733;
  5989. AltPressed = true;
  5990. ControlPressed = true;
  5991. ButtonIndex = 2;
  5992. };
  5993. };
  5994. instance of Microsoft_EELTOCEntryInFile
  5995. {
  5996. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  5997. Entry ="Microsoft_EELEntry='171'";
  5998. };
  5999. instance of Microsoft_EELEntry
  6000. {
  6001. EventId = "172";
  6002. SourceSubsystemType="NT Event Log";
  6003. SourceSubsystemName ="application";
  6004. SystemAbout = "amitc_i2";
  6005. SystemFrom = "ruchitan_2";
  6006. DeliveredBy = "amitc_i1";
  6007. Category="message";
  6008. Subcategory="mice";
  6009. Priority = 3;
  6010. Severity = 2;
  6011. TimeGenerated = "19900113134517.167677+480";
  6012. LoggingTime = "19970812233905.134690+480";
  6013. RollupTime = "19920307145708.109826+480";
  6014. Message = "Message with key to search = 632818555";
  6015. RecordNumber = "172";
  6016. User = "sriravi";
  6017. Type = 0;
  6018. Classification = 2;
  6019. LogType = 2;
  6020. OriginalEvent = instance of Win32_MouseMoveEvent
  6021. {
  6022. XCoordinate = 3;
  6023. YCoordinate = 164;
  6024. AltPressed = true;
  6025. ControlPressed = false;
  6026. };
  6027. };
  6028. instance of Microsoft_EELTOCEntryInFile
  6029. {
  6030. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  6031. Entry ="Microsoft_EELEntry='172'";
  6032. };
  6033. instance of Microsoft_EELEntry
  6034. {
  6035. EventId = "173";
  6036. SourceSubsystemType="NT Event Log";
  6037. SourceSubsystemName ="application";
  6038. SystemAbout = "ruchitan_2";
  6039. SystemFrom = "ruchitan_1";
  6040. DeliveredBy = "ruchitan_2";
  6041. Category="message";
  6042. Subcategory="mice";
  6043. Priority = 3;
  6044. Severity = 1;
  6045. TimeGenerated = "19930424221303.142627+480";
  6046. LoggingTime = "19980921190720.133803+480";
  6047. RollupTime = "19980921182424.169951+480";
  6048. Message = "Message with key to search = 2047237144";
  6049. RecordNumber = "173";
  6050. User = "sriravi";
  6051. Type = 2;
  6052. Classification = 6;
  6053. LogType = 1;
  6054. OriginalEvent = instance of Win32_MouseClickEvent
  6055. {
  6056. XCoordinate = 341;
  6057. YCoordinate = 281;
  6058. AltPressed = true;
  6059. ControlPressed = true;
  6060. ButtonIndex = 1;
  6061. };
  6062. };
  6063. instance of Microsoft_EELTOCEntryInFile
  6064. {
  6065. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  6066. Entry ="Microsoft_EELEntry='173'";
  6067. };
  6068. instance of Microsoft_EELEntry
  6069. {
  6070. EventId = "174";
  6071. SourceSubsystemType="NT Event Log";
  6072. SourceSubsystemName ="Unknown";
  6073. SystemAbout = "amitc_i1";
  6074. SystemFrom = "ruchitan_2";
  6075. DeliveredBy = "amitc_i2";
  6076. Category="message";
  6077. Subcategory="mice";
  6078. Priority = 1;
  6079. Severity = 3;
  6080. TimeGenerated = "19900109151800.108936+480";
  6081. LoggingTime = "20011212100804.164865+480";
  6082. RollupTime = "19991018234322.120290+480";
  6083. Message = "Message with key to search = 6900289";
  6084. RecordNumber = "174";
  6085. User = "rishi";
  6086. Type = 4;
  6087. Classification = 3;
  6088. LogType = 3;
  6089. OriginalEvent = instance of Win32_MouseUpEvent
  6090. {
  6091. XCoordinate = 362;
  6092. YCoordinate = 358;
  6093. AltPressed = false;
  6094. ControlPressed = true;
  6095. ButtonIndex = 1;
  6096. };
  6097. };
  6098. instance of Microsoft_EELTOCEntryInFile
  6099. {
  6100. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  6101. Entry ="Microsoft_EELEntry='174'";
  6102. };
  6103. instance of Microsoft_EELEntry
  6104. {
  6105. EventId = "175";
  6106. SourceSubsystemType="NT Event Log";
  6107. SourceSubsystemName ="server";
  6108. SystemAbout = "amitc_i1";
  6109. SystemFrom = "ruchitan_2";
  6110. DeliveredBy = "ruchitan_1";
  6111. Category="message";
  6112. Subcategory="mice";
  6113. Priority = 1;
  6114. Severity = 3;
  6115. TimeGenerated = "19950618165703.179846+480";
  6116. LoggingTime = "19960707143219.103006+480";
  6117. RollupTime = "19920303003825.190000+480";
  6118. Message = "Message with key to search = 57678648";
  6119. RecordNumber = "175";
  6120. User = "rishi";
  6121. Type = 2;
  6122. Classification = 7;
  6123. LogType = 3;
  6124. OriginalEvent = instance of Win32_MouseDownEvent
  6125. {
  6126. XCoordinate = 385;
  6127. YCoordinate = 204;
  6128. AltPressed = false;
  6129. ControlPressed = true;
  6130. ButtonIndex = 0;
  6131. };
  6132. };
  6133. instance of Microsoft_EELTOCEntryInFile
  6134. {
  6135. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  6136. Entry ="Microsoft_EELEntry='175'";
  6137. };
  6138. instance of Microsoft_EELEntry
  6139. {
  6140. EventId = "176";
  6141. SourceSubsystemType="SMS Log";
  6142. SourceSubsystemName ="Unknown";
  6143. SystemAbout = "amitc_i1";
  6144. SystemFrom = "ruchitan_2";
  6145. DeliveredBy = "amitc_i1";
  6146. Category="message";
  6147. Subcategory="mice";
  6148. Priority = 4;
  6149. Severity = 2;
  6150. TimeGenerated = "19900121101902.150159+480";
  6151. LoggingTime = "20011208000311.171556+480";
  6152. RollupTime = "19970808220012.183447+480";
  6153. Message = "Message with key to search = 415524913";
  6154. RecordNumber = "176";
  6155. User = "sriravi";
  6156. Type = 4;
  6157. Classification = 6;
  6158. LogType = 1;
  6159. OriginalEvent = instance of Win32_MouseMoveEvent
  6160. {
  6161. XCoordinate = 714;
  6162. YCoordinate = 299;
  6163. AltPressed = true;
  6164. ControlPressed = true;
  6165. };
  6166. };
  6167. instance of Microsoft_EELTOCEntryInFile
  6168. {
  6169. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  6170. Entry ="Microsoft_EELEntry='176'";
  6171. };
  6172. instance of Microsoft_EELEntry
  6173. {
  6174. EventId = "177";
  6175. SourceSubsystemType="NT Event Log";
  6176. SourceSubsystemName ="driver";
  6177. SystemAbout = "ruchitan_1";
  6178. SystemFrom = "amitc_i1";
  6179. DeliveredBy = "ruchitan_1";
  6180. Category="message";
  6181. Subcategory="mice";
  6182. Priority = 2;
  6183. Severity = 4;
  6184. TimeGenerated = "19930404225824.115964+480";
  6185. LoggingTime = "19991002090821.131388+480";
  6186. RollupTime = "19980913193919.135234+480";
  6187. Message = "Message with key to search = 1789845236";
  6188. RecordNumber = "177";
  6189. User = "sriravi";
  6190. Type = 5;
  6191. Classification = 1;
  6192. LogType = 1;
  6193. OriginalEvent = instance of Win32_MouseClickEvent
  6194. {
  6195. XCoordinate = 897;
  6196. YCoordinate = 697;
  6197. AltPressed = true;
  6198. ControlPressed = false;
  6199. ButtonIndex = 1;
  6200. };
  6201. };
  6202. instance of Microsoft_EELTOCEntryInFile
  6203. {
  6204. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  6205. Entry ="Microsoft_EELEntry='177'";
  6206. };
  6207. instance of Microsoft_EELEntry
  6208. {
  6209. EventId = "178";
  6210. SourceSubsystemType="NT Event Log";
  6211. SourceSubsystemName ="server";
  6212. SystemAbout = "amitc_i1";
  6213. SystemFrom = "ruchitan_1";
  6214. DeliveredBy = "ruchitan_2";
  6215. Category="message";
  6216. Subcategory="mice";
  6217. Priority = 1;
  6218. Severity = 3;
  6219. TimeGenerated = "19960723231708.183728+480";
  6220. LoggingTime = "19910218210622.136177+480";
  6221. RollupTime = "19900125034323.131230+480";
  6222. Message = "Message with key to search = 375968882";
  6223. RecordNumber = "178";
  6224. User = "N/A";
  6225. Type = 2;
  6226. Classification = 7;
  6227. LogType = 1;
  6228. OriginalEvent = instance of Win32_MouseUpEvent
  6229. {
  6230. XCoordinate = 448;
  6231. YCoordinate = 228;
  6232. AltPressed = false;
  6233. ControlPressed = true;
  6234. ButtonIndex = 0;
  6235. };
  6236. };
  6237. instance of Microsoft_EELTOCEntryInFile
  6238. {
  6239. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  6240. Entry ="Microsoft_EELEntry='178'";
  6241. };
  6242. instance of Microsoft_EELEntry
  6243. {
  6244. EventId = "179";
  6245. SourceSubsystemType="NT Event Log";
  6246. SourceSubsystemName ="driver";
  6247. SystemAbout = "amitc_i2";
  6248. SystemFrom = "amitc_i2";
  6249. DeliveredBy = "amitc_i1";
  6250. Category="message";
  6251. Subcategory="mice";
  6252. Priority = 1;
  6253. Severity = 2;
  6254. TimeGenerated = "19920315092828.130009+480";
  6255. LoggingTime = "19960707072109.163480+480";
  6256. RollupTime = "19980921183006.155509+480";
  6257. Message = "Message with key to search = 810601664";
  6258. RecordNumber = "179";
  6259. User = "rishi";
  6260. Type = 6;
  6261. Classification = 7;
  6262. LogType = 2;
  6263. OriginalEvent = instance of Win32_MouseDownEvent
  6264. {
  6265. XCoordinate = 889;
  6266. YCoordinate = 465;
  6267. AltPressed = true;
  6268. ControlPressed = true;
  6269. ButtonIndex = 2;
  6270. };
  6271. };
  6272. instance of Microsoft_EELTOCEntryInFile
  6273. {
  6274. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  6275. Entry ="Microsoft_EELEntry='179'";
  6276. };
  6277. instance of Microsoft_EELEntry
  6278. {
  6279. EventId = "180";
  6280. SourceSubsystemType="NT Event Log";
  6281. SourceSubsystemName ="application";
  6282. SystemAbout = "ruchitan_1";
  6283. SystemFrom = "amitc_i1";
  6284. DeliveredBy = "amitc_i1";
  6285. Category="message";
  6286. Subcategory="mice";
  6287. Priority = 2;
  6288. Severity = 2;
  6289. TimeGenerated = "19940525054519.173320+480";
  6290. LoggingTime = "19930420163403.108391+480";
  6291. RollupTime = "19920327034116.133590+480";
  6292. Message = "Message with key to search = 760345820";
  6293. RecordNumber = "180";
  6294. User = "sriravi";
  6295. Type = 4;
  6296. Classification = 2;
  6297. LogType = 1;
  6298. OriginalEvent = instance of Win32_MouseMoveEvent
  6299. {
  6300. XCoordinate = 261;
  6301. YCoordinate = 5;
  6302. AltPressed = false;
  6303. ControlPressed = true;
  6304. };
  6305. };
  6306. instance of Microsoft_EELTOCEntryInFile
  6307. {
  6308. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  6309. Entry ="Microsoft_EELEntry='180'";
  6310. };
  6311. instance of Microsoft_EELEntry
  6312. {
  6313. EventId = "181";
  6314. SourceSubsystemType="NT Event Log";
  6315. SourceSubsystemName ="server";
  6316. SystemAbout = "amitc_i1";
  6317. SystemFrom = "ruchitan_1";
  6318. DeliveredBy = "ruchitan_2";
  6319. Category="message";
  6320. Subcategory="mice";
  6321. Priority = 4;
  6322. Severity = 4;
  6323. TimeGenerated = "19910222161321.169815+480";
  6324. LoggingTime = "19940505235609.108494+480";
  6325. RollupTime = "19950606175022.137327+480";
  6326. Message = "Message with key to search = 1891431661";
  6327. RecordNumber = "181";
  6328. User = "amit";
  6329. Type = 0;
  6330. Classification = 2;
  6331. LogType = 1;
  6332. OriginalEvent = instance of Win32_MouseClickEvent
  6333. {
  6334. XCoordinate = 159;
  6335. YCoordinate = 132;
  6336. AltPressed = false;
  6337. ControlPressed = false;
  6338. ButtonIndex = 1;
  6339. };
  6340. };
  6341. instance of Microsoft_EELTOCEntryInFile
  6342. {
  6343. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  6344. Entry ="Microsoft_EELEntry='181'";
  6345. };
  6346. instance of Microsoft_EELEntry
  6347. {
  6348. EventId = "182";
  6349. SourceSubsystemType="SMS Log";
  6350. SourceSubsystemName ="driver";
  6351. SystemAbout = "amitc_i1";
  6352. SystemFrom = "ruchitan_2";
  6353. DeliveredBy = "amitc_i1";
  6354. Category="message";
  6355. Subcategory="mice";
  6356. Priority = 1;
  6357. Severity = 4;
  6358. TimeGenerated = "19930408164817.175790+480";
  6359. LoggingTime = "20011224053824.111640+480";
  6360. RollupTime = "19950618200604.110161+480";
  6361. Message = "Message with key to search = 1132113318";
  6362. RecordNumber = "182";
  6363. User = "rishi";
  6364. Type = 5;
  6365. Classification = 8;
  6366. LogType = 3;
  6367. OriginalEvent = instance of Win32_MouseUpEvent
  6368. {
  6369. XCoordinate = 207;
  6370. YCoordinate = 505;
  6371. AltPressed = true;
  6372. ControlPressed = true;
  6373. ButtonIndex = 0;
  6374. };
  6375. };
  6376. instance of Microsoft_EELTOCEntryInFile
  6377. {
  6378. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  6379. Entry ="Microsoft_EELEntry='182'";
  6380. };
  6381. instance of Microsoft_EELEntry
  6382. {
  6383. EventId = "183";
  6384. SourceSubsystemType="SMS Log";
  6385. SourceSubsystemName ="server";
  6386. SystemAbout = "amitc_i2";
  6387. SystemFrom = "amitc_i2";
  6388. DeliveredBy = "ruchitan_2";
  6389. Category="message";
  6390. Subcategory="mice";
  6391. Priority = 4;
  6392. Severity = 1;
  6393. TimeGenerated = "19930428183105.160863+480";
  6394. LoggingTime = "20001107164906.106632+480";
  6395. RollupTime = "19970804103402.139714+480";
  6396. Message = "Message with key to search = 1398770628";
  6397. RecordNumber = "183";
  6398. User = "N/A";
  6399. Type = 1;
  6400. Classification = 2;
  6401. LogType = 2;
  6402. OriginalEvent = instance of Win32_MouseDownEvent
  6403. {
  6404. XCoordinate = 110;
  6405. YCoordinate = 240;
  6406. AltPressed = false;
  6407. ControlPressed = true;
  6408. ButtonIndex = 2;
  6409. };
  6410. };
  6411. instance of Microsoft_EELTOCEntryInFile
  6412. {
  6413. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  6414. Entry ="Microsoft_EELEntry='183'";
  6415. };
  6416. instance of Microsoft_EELEntry
  6417. {
  6418. EventId = "184";
  6419. SourceSubsystemType="SMS Log";
  6420. SourceSubsystemName ="server";
  6421. SystemAbout = "amitc_i2";
  6422. SystemFrom = "ruchitan_1";
  6423. DeliveredBy = "ruchitan_1";
  6424. Category="message";
  6425. Subcategory="mice";
  6426. Priority = 2;
  6427. Severity = 3;
  6428. TimeGenerated = "19960703232912.139104+480";
  6429. LoggingTime = "20011212042302.132799+480";
  6430. RollupTime = "19970828103116.163887+480";
  6431. Message = "Message with key to search = 258311831";
  6432. RecordNumber = "184";
  6433. User = "amit";
  6434. Type = 5;
  6435. Classification = 5;
  6436. LogType = 2;
  6437. OriginalEvent = instance of Win32_MouseMoveEvent
  6438. {
  6439. XCoordinate = 552;
  6440. YCoordinate = 399;
  6441. AltPressed = true;
  6442. ControlPressed = true;
  6443. };
  6444. };
  6445. instance of Microsoft_EELTOCEntryInFile
  6446. {
  6447. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  6448. Entry ="Microsoft_EELEntry='184'";
  6449. };
  6450. instance of Microsoft_EELEntry
  6451. {
  6452. EventId = "185";
  6453. SourceSubsystemType="SMS Log";
  6454. SourceSubsystemName ="driver";
  6455. SystemAbout = "amitc_i2";
  6456. SystemFrom = "ruchitan_2";
  6457. DeliveredBy = "ruchitan_2";
  6458. Category="message";
  6459. Subcategory="mice";
  6460. Priority = 4;
  6461. Severity = 3;
  6462. TimeGenerated = "19910206131122.140910+480";
  6463. LoggingTime = "19960703225801.127602+480";
  6464. RollupTime = "19920315065716.105522+480";
  6465. Message = "Message with key to search = 374311065";
  6466. RecordNumber = "185";
  6467. User = "rishi";
  6468. Type = 0;
  6469. Classification = 6;
  6470. LogType = 1;
  6471. OriginalEvent = instance of Win32_MouseClickEvent
  6472. {
  6473. XCoordinate = 986;
  6474. YCoordinate = 746;
  6475. AltPressed = false;
  6476. ControlPressed = true;
  6477. ButtonIndex = 0;
  6478. };
  6479. };
  6480. instance of Microsoft_EELTOCEntryInFile
  6481. {
  6482. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  6483. Entry ="Microsoft_EELEntry='185'";
  6484. };
  6485. instance of Microsoft_EELEntry
  6486. {
  6487. EventId = "186";
  6488. SourceSubsystemType="NT Event Log";
  6489. SourceSubsystemName ="application";
  6490. SystemAbout = "amitc_i2";
  6491. SystemFrom = "amitc_i2";
  6492. DeliveredBy = "ruchitan_1";
  6493. Category="message";
  6494. Subcategory="mice";
  6495. Priority = 1;
  6496. Severity = 2;
  6497. TimeGenerated = "19900117101626.120880+480";
  6498. LoggingTime = "19960711002103.116524+480";
  6499. RollupTime = "19960727164904.165899+480";
  6500. Message = "Message with key to search = 1952814479";
  6501. RecordNumber = "186";
  6502. User = "rishi";
  6503. Type = 4;
  6504. Classification = 6;
  6505. LogType = 1;
  6506. OriginalEvent = instance of Win32_MouseUpEvent
  6507. {
  6508. XCoordinate = 682;
  6509. YCoordinate = 328;
  6510. AltPressed = false;
  6511. ControlPressed = false;
  6512. ButtonIndex = 1;
  6513. };
  6514. };
  6515. instance of Microsoft_EELTOCEntryInFile
  6516. {
  6517. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  6518. Entry ="Microsoft_EELEntry='186'";
  6519. };
  6520. instance of Microsoft_EELEntry
  6521. {
  6522. EventId = "187";
  6523. SourceSubsystemType="SMS Log";
  6524. SourceSubsystemName ="application";
  6525. SystemAbout = "amitc_i1";
  6526. SystemFrom = "amitc_i2";
  6527. DeliveredBy = "ruchitan_1";
  6528. Category="message";
  6529. Subcategory="mice";
  6530. Priority = 3;
  6531. Severity = 1;
  6532. TimeGenerated = "19950602041801.114153+480";
  6533. LoggingTime = "19970816191512.126883+480";
  6534. RollupTime = "20001111054307.190118+480";
  6535. Message = "Message with key to search = 1255601166";
  6536. RecordNumber = "187";
  6537. User = "amit";
  6538. Type = 3;
  6539. Classification = 6;
  6540. LogType = 2;
  6541. OriginalEvent = instance of Win32_MouseDownEvent
  6542. {
  6543. XCoordinate = 514;
  6544. YCoordinate = 70;
  6545. AltPressed = false;
  6546. ControlPressed = false;
  6547. ButtonIndex = 1;
  6548. };
  6549. };
  6550. instance of Microsoft_EELTOCEntryInFile
  6551. {
  6552. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  6553. Entry ="Microsoft_EELEntry='187'";
  6554. };
  6555. instance of Microsoft_EELEntry
  6556. {
  6557. EventId = "188";
  6558. SourceSubsystemType="NT Event Log";
  6559. SourceSubsystemName ="application";
  6560. SystemAbout = "amitc_i1";
  6561. SystemFrom = "ruchitan_2";
  6562. DeliveredBy = "ruchitan_2";
  6563. Category="message";
  6564. Subcategory="mice";
  6565. Priority = 1;
  6566. Severity = 1;
  6567. TimeGenerated = "19930424060807.150797+480";
  6568. LoggingTime = "19950622122607.184000+480";
  6569. RollupTime = "19960707200525.195312+480";
  6570. Message = "Message with key to search = 2034078821";
  6571. RecordNumber = "188";
  6572. User = "sriravi";
  6573. Type = 1;
  6574. Classification = 3;
  6575. LogType = 2;
  6576. OriginalEvent = instance of Win32_MouseMoveEvent
  6577. {
  6578. XCoordinate = 203;
  6579. YCoordinate = 697;
  6580. AltPressed = false;
  6581. ControlPressed = true;
  6582. };
  6583. };
  6584. instance of Microsoft_EELTOCEntryInFile
  6585. {
  6586. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  6587. Entry ="Microsoft_EELEntry='188'";
  6588. };
  6589. instance of Microsoft_EELEntry
  6590. {
  6591. EventId = "189";
  6592. SourceSubsystemType="NT Event Log";
  6593. SourceSubsystemName ="application";
  6594. SystemAbout = "amitc_i2";
  6595. SystemFrom = "amitc_i2";
  6596. DeliveredBy = "ruchitan_2";
  6597. Category="message";
  6598. Subcategory="mice";
  6599. Priority = 2;
  6600. Severity = 1;
  6601. TimeGenerated = "19900117162024.163319+480";
  6602. LoggingTime = "19950618225725.196502+480";
  6603. RollupTime = "20011220061818.198559+480";
  6604. Message = "Message with key to search = 1782635942";
  6605. RecordNumber = "189";
  6606. User = "rishi";
  6607. Type = 0;
  6608. Classification = 8;
  6609. LogType = 1;
  6610. OriginalEvent = instance of Win32_MouseClickEvent
  6611. {
  6612. XCoordinate = 25;
  6613. YCoordinate = 554;
  6614. AltPressed = true;
  6615. ControlPressed = true;
  6616. ButtonIndex = 0;
  6617. };
  6618. };
  6619. instance of Microsoft_EELTOCEntryInFile
  6620. {
  6621. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  6622. Entry ="Microsoft_EELEntry='189'";
  6623. };
  6624. instance of Microsoft_EELEntry
  6625. {
  6626. EventId = "190";
  6627. SourceSubsystemType="NT Event Log";
  6628. SourceSubsystemName ="server";
  6629. SystemAbout = "ruchitan_2";
  6630. SystemFrom = "amitc_i2";
  6631. DeliveredBy = "ruchitan_1";
  6632. Category="message";
  6633. Subcategory="mice";
  6634. Priority = 1;
  6635. Severity = 3;
  6636. TimeGenerated = "19920323203223.151627+480";
  6637. LoggingTime = "19991018071014.112129+480";
  6638. RollupTime = "19950614063714.117098+480";
  6639. Message = "Message with key to search = 1679321119";
  6640. RecordNumber = "190";
  6641. User = "sriravi";
  6642. Type = 3;
  6643. Classification = 5;
  6644. LogType = 1;
  6645. OriginalEvent = instance of Win32_MouseUpEvent
  6646. {
  6647. XCoordinate = 898;
  6648. YCoordinate = 65;
  6649. AltPressed = true;
  6650. ControlPressed = false;
  6651. ButtonIndex = 1;
  6652. };
  6653. };
  6654. instance of Microsoft_EELTOCEntryInFile
  6655. {
  6656. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  6657. Entry ="Microsoft_EELEntry='190'";
  6658. };
  6659. instance of Microsoft_EELEntry
  6660. {
  6661. EventId = "191";
  6662. SourceSubsystemType="SMS Log";
  6663. SourceSubsystemName ="application";
  6664. SystemAbout = "amitc_i1";
  6665. SystemFrom = "amitc_i2";
  6666. DeliveredBy = "ruchitan_1";
  6667. Category="message";
  6668. Subcategory="mice";
  6669. Priority = 1;
  6670. Severity = 1;
  6671. TimeGenerated = "19920327213013.176357+480";
  6672. LoggingTime = "19960707072109.163480+480";
  6673. RollupTime = "19991006140322.161228+480";
  6674. Message = "Message with key to search = 1809407842";
  6675. RecordNumber = "191";
  6676. User = "rishi";
  6677. Type = 6;
  6678. Classification = 3;
  6679. LogType = 3;
  6680. OriginalEvent = instance of Win32_MouseDownEvent
  6681. {
  6682. XCoordinate = 442;
  6683. YCoordinate = 90;
  6684. AltPressed = false;
  6685. ControlPressed = true;
  6686. ButtonIndex = 0;
  6687. };
  6688. };
  6689. instance of Microsoft_EELTOCEntryInFile
  6690. {
  6691. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  6692. Entry ="Microsoft_EELEntry='191'";
  6693. };
  6694. instance of Microsoft_EELEntry
  6695. {
  6696. EventId = "192";
  6697. SourceSubsystemType="NT Event Log";
  6698. SourceSubsystemName ="application";
  6699. SystemAbout = "amitc_i2";
  6700. SystemFrom = "amitc_i2";
  6701. DeliveredBy = "ruchitan_2";
  6702. Category="message";
  6703. Subcategory="mice";
  6704. Priority = 1;
  6705. Severity = 1;
  6706. TimeGenerated = "19920315160628.145573+480";
  6707. LoggingTime = "19970824130202.194622+480";
  6708. RollupTime = "19920315082422.164052+480";
  6709. Message = "Message with key to search = 1922261439";
  6710. RecordNumber = "192";
  6711. User = "sriravi";
  6712. Type = 5;
  6713. Classification = 2;
  6714. LogType = 1;
  6715. OriginalEvent = instance of Win32_MouseMoveEvent
  6716. {
  6717. XCoordinate = 0;
  6718. YCoordinate = 401;
  6719. AltPressed = false;
  6720. ControlPressed = false;
  6721. };
  6722. };
  6723. instance of Microsoft_EELTOCEntryInFile
  6724. {
  6725. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  6726. Entry ="Microsoft_EELEntry='192'";
  6727. };
  6728. instance of Microsoft_EELEntry
  6729. {
  6730. EventId = "193";
  6731. SourceSubsystemType="SMS Log";
  6732. SourceSubsystemName ="driver";
  6733. SystemAbout = "amitc_i1";
  6734. SystemFrom = "amitc_i2";
  6735. DeliveredBy = "ruchitan_2";
  6736. Category="message";
  6737. Subcategory="mice";
  6738. Priority = 3;
  6739. Severity = 3;
  6740. TimeGenerated = "19930412175427.155603+480";
  6741. LoggingTime = "19970812053526.192581+480";
  6742. RollupTime = "19920315030327.126482+480";
  6743. Message = "Message with key to search = 1655356257";
  6744. RecordNumber = "193";
  6745. User = "sriravi";
  6746. Type = 6;
  6747. Classification = 3;
  6748. LogType = 1;
  6749. OriginalEvent = instance of Win32_MouseClickEvent
  6750. {
  6751. XCoordinate = 102;
  6752. YCoordinate = 247;
  6753. AltPressed = true;
  6754. ControlPressed = false;
  6755. ButtonIndex = 1;
  6756. };
  6757. };
  6758. instance of Microsoft_EELTOCEntryInFile
  6759. {
  6760. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  6761. Entry ="Microsoft_EELEntry='193'";
  6762. };
  6763. instance of Microsoft_EELEntry
  6764. {
  6765. EventId = "194";
  6766. SourceSubsystemType="SMS Log";
  6767. SourceSubsystemName ="application";
  6768. SystemAbout = "ruchitan_1";
  6769. SystemFrom = "amitc_i1";
  6770. DeliveredBy = "ruchitan_1";
  6771. Category="message";
  6772. Subcategory="mice";
  6773. Priority = 4;
  6774. Severity = 4;
  6775. TimeGenerated = "19900121154807.177616+480";
  6776. LoggingTime = "19991002022024.111453+480";
  6777. RollupTime = "19920327104217.197417+480";
  6778. Message = "Message with key to search = 1017142636";
  6779. RecordNumber = "194";
  6780. User = "sriravi";
  6781. Type = 4;
  6782. Classification = 7;
  6783. LogType = 3;
  6784. OriginalEvent = instance of Win32_MouseUpEvent
  6785. {
  6786. XCoordinate = 744;
  6787. YCoordinate = 540;
  6788. AltPressed = false;
  6789. ControlPressed = true;
  6790. ButtonIndex = 1;
  6791. };
  6792. };
  6793. instance of Microsoft_EELTOCEntryInFile
  6794. {
  6795. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  6796. Entry ="Microsoft_EELEntry='194'";
  6797. };
  6798. instance of Microsoft_EELEntry
  6799. {
  6800. EventId = "195";
  6801. SourceSubsystemType="NT Event Log";
  6802. SourceSubsystemName ="Unknown";
  6803. SystemAbout = "ruchitan_2";
  6804. SystemFrom = "ruchitan_1";
  6805. DeliveredBy = "ruchitan_2";
  6806. Category="message";
  6807. Subcategory="mice";
  6808. Priority = 1;
  6809. Severity = 3;
  6810. TimeGenerated = "19920303034410.148859+480";
  6811. LoggingTime = "19980901180226.186856+480";
  6812. RollupTime = "19991018220018.137538+480";
  6813. Message = "Message with key to search = 575543305";
  6814. RecordNumber = "195";
  6815. User = "N/A";
  6816. Type = 2;
  6817. Classification = 2;
  6818. LogType = 1;
  6819. OriginalEvent = instance of Win32_MouseDownEvent
  6820. {
  6821. XCoordinate = 966;
  6822. YCoordinate = 640;
  6823. AltPressed = false;
  6824. ControlPressed = true;
  6825. ButtonIndex = 1;
  6826. };
  6827. };
  6828. instance of Microsoft_EELTOCEntryInFile
  6829. {
  6830. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  6831. Entry ="Microsoft_EELEntry='195'";
  6832. };
  6833. instance of Microsoft_EELEntry
  6834. {
  6835. EventId = "196";
  6836. SourceSubsystemType="SMS Log";
  6837. SourceSubsystemName ="driver";
  6838. SystemAbout = "amitc_i1";
  6839. SystemFrom = "amitc_i1";
  6840. DeliveredBy = "amitc_i2";
  6841. Category="message";
  6842. Subcategory="mice";
  6843. Priority = 2;
  6844. Severity = 4;
  6845. TimeGenerated = "19900109070602.111653+480";
  6846. LoggingTime = "20011208032425.177011+480";
  6847. RollupTime = "19920303104905.107605+480";
  6848. Message = "Message with key to search = 887440467";
  6849. RecordNumber = "196";
  6850. User = "sriravi";
  6851. Type = 6;
  6852. Classification = 3;
  6853. LogType = 1;
  6854. OriginalEvent = instance of Win32_MouseMoveEvent
  6855. {
  6856. XCoordinate = 586;
  6857. YCoordinate = 258;
  6858. AltPressed = false;
  6859. ControlPressed = false;
  6860. };
  6861. };
  6862. instance of Microsoft_EELTOCEntryInFile
  6863. {
  6864. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  6865. Entry ="Microsoft_EELEntry='196'";
  6866. };
  6867. instance of Microsoft_EELEntry
  6868. {
  6869. EventId = "197";
  6870. SourceSubsystemType="NT Event Log";
  6871. SourceSubsystemName ="application";
  6872. SystemAbout = "amitc_i1";
  6873. SystemFrom = "amitc_i1";
  6874. DeliveredBy = "ruchitan_1";
  6875. Category="message";
  6876. Subcategory="mice";
  6877. Priority = 3;
  6878. Severity = 2;
  6879. TimeGenerated = "19930416155007.109777+480";
  6880. LoggingTime = "20001119102423.190736+480";
  6881. RollupTime = "19970828173318.197914+480";
  6882. Message = "Message with key to search = 1360663241";
  6883. RecordNumber = "197";
  6884. User = "amit";
  6885. Type = 5;
  6886. Classification = 5;
  6887. LogType = 2;
  6888. OriginalEvent = instance of Win32_MouseClickEvent
  6889. {
  6890. XCoordinate = 473;
  6891. YCoordinate = 458;
  6892. AltPressed = true;
  6893. ControlPressed = true;
  6894. ButtonIndex = 0;
  6895. };
  6896. };
  6897. instance of Microsoft_EELTOCEntryInFile
  6898. {
  6899. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  6900. Entry ="Microsoft_EELEntry='197'";
  6901. };
  6902. instance of Microsoft_EELEntry
  6903. {
  6904. EventId = "198";
  6905. SourceSubsystemType="NT Event Log";
  6906. SourceSubsystemName ="driver";
  6907. SystemAbout = "ruchitan_2";
  6908. SystemFrom = "amitc_i2";
  6909. DeliveredBy = "ruchitan_2";
  6910. Category="message";
  6911. Subcategory="mice";
  6912. Priority = 1;
  6913. Severity = 2;
  6914. TimeGenerated = "19920315152000.195971+480";
  6915. LoggingTime = "19980901065404.193568+480";
  6916. RollupTime = "20001111120719.127082+480";
  6917. Message = "Message with key to search = 182834626";
  6918. RecordNumber = "198";
  6919. User = "rishi";
  6920. Type = 3;
  6921. Classification = 3;
  6922. LogType = 1;
  6923. OriginalEvent = instance of Win32_MouseUpEvent
  6924. {
  6925. XCoordinate = 453;
  6926. YCoordinate = 32;
  6927. AltPressed = true;
  6928. ControlPressed = false;
  6929. ButtonIndex = 1;
  6930. };
  6931. };
  6932. instance of Microsoft_EELTOCEntryInFile
  6933. {
  6934. TOC = "Microsoft_EELTOC='Win32_MouseUpEvent'";
  6935. Entry ="Microsoft_EELEntry='198'";
  6936. };
  6937. instance of Microsoft_EELEntry
  6938. {
  6939. EventId = "199";
  6940. SourceSubsystemType="SMS Log";
  6941. SourceSubsystemName ="server";
  6942. SystemAbout = "ruchitan_2";
  6943. SystemFrom = "amitc_i1";
  6944. DeliveredBy = "ruchitan_1";
  6945. Category="message";
  6946. Subcategory="mice";
  6947. Priority = 3;
  6948. Severity = 2;
  6949. TimeGenerated = "19910210005521.148915+480";
  6950. LoggingTime = "19930420163403.108391+480";
  6951. RollupTime = "20001115224014.117302+480";
  6952. Message = "Message with key to search = 28645292";
  6953. RecordNumber = "199";
  6954. User = "N/A";
  6955. Type = 3;
  6956. Classification = 5;
  6957. LogType = 2;
  6958. OriginalEvent = instance of Win32_MouseDownEvent
  6959. {
  6960. XCoordinate = 790;
  6961. YCoordinate = 22;
  6962. AltPressed = false;
  6963. ControlPressed = true;
  6964. ButtonIndex = 0;
  6965. };
  6966. };
  6967. instance of Microsoft_EELTOCEntryInFile
  6968. {
  6969. TOC = "Microsoft_EELTOC='Win32_MouseDownEvent'";
  6970. Entry ="Microsoft_EELEntry='199'";
  6971. };
  6972. instance of Microsoft_EELEntry
  6973. {
  6974. EventId = "200";
  6975. SourceSubsystemType="NT Event Log";
  6976. SourceSubsystemName ="driver";
  6977. SystemAbout = "amitc_i2";
  6978. SystemFrom = "amitc_i1";
  6979. DeliveredBy = "amitc_i2";
  6980. Category="message";
  6981. Subcategory="mice";
  6982. Priority = 2;
  6983. Severity = 3;
  6984. TimeGenerated = "19940509174117.193091+480";
  6985. LoggingTime = "19991010194719.184283+480";
  6986. RollupTime = "19920327023911.175810+480";
  6987. Message = "Message with key to search = 35954592";
  6988. RecordNumber = "200";
  6989. User = "amit";
  6990. Type = 1;
  6991. Classification = 8;
  6992. LogType = 2;
  6993. OriginalEvent = instance of Win32_MouseMoveEvent
  6994. {
  6995. XCoordinate = 227;
  6996. YCoordinate = 327;
  6997. AltPressed = false;
  6998. ControlPressed = false;
  6999. };
  7000. };
  7001. instance of Microsoft_EELTOCEntryInFile
  7002. {
  7003. TOC = "Microsoft_EELTOC='Win32_MouseMoveEvent'";
  7004. Entry ="Microsoft_EELEntry='200'";
  7005. };
  7006. instance of Microsoft_EELEntry
  7007. {
  7008. EventId = "201";
  7009. SourceSubsystemType="NT Event Log";
  7010. SourceSubsystemName ="application";
  7011. SystemAbout = "amitc_i2";
  7012. SystemFrom = "amitc_i2";
  7013. DeliveredBy = "amitc_i2";
  7014. Category="message";
  7015. Subcategory="mice";
  7016. Priority = 3;
  7017. Severity = 3;
  7018. TimeGenerated = "19920303052407.160859+480";
  7019. LoggingTime = "19991026033900.112810+480";
  7020. RollupTime = "20011220061818.198559+480";
  7021. Message = "Message with key to search = 1509605788";
  7022. RecordNumber = "201";
  7023. User = "rishi";
  7024. Type = 6;
  7025. Classification = 1;
  7026. LogType = 3;
  7027. OriginalEvent = instance of Win32_MouseClickEvent
  7028. {
  7029. XCoordinate = 946;
  7030. YCoordinate = 386;
  7031. AltPressed = true;
  7032. ControlPressed = true;
  7033. ButtonIndex = 1;
  7034. };
  7035. };
  7036. instance of Microsoft_EELTOCEntryInFile
  7037. {
  7038. TOC = "Microsoft_EELTOC='Win32_MouseClickEvent'";
  7039. Entry ="Microsoft_EELEntry='201'";
  7040. };
  7041. instance of Microsoft_EELTOC
  7042. {
  7043. Category="Win32_MouseUpEvent";
  7044. Description ="Mouse Up Event ";
  7045. };
  7046. instance of Microsoft_EELTOC
  7047. {
  7048. Category="Win32_MouseDownEvent";
  7049. Description ="Mouse Down Event ";
  7050. };
  7051. instance of Microsoft_EELTOC
  7052. {
  7053. Category="Win32_MouseMoveEvent";
  7054. Description ="Mouse Move Event ";
  7055. };
  7056. instance of Microsoft_EELTOC
  7057. {
  7058. Category="Win32_MouseClickEvent";
  7059. Description ="Mouse Click Event ";
  7060. };
  7061. // Various serice events
  7062. class Win32_Service
  7063. {
  7064. [key] string Name;
  7065. string DisplayName;
  7066. [values{"Stopped", "Started", "Paused", "Pending Start", "Pending Stop"}, ValueMap{1, 2, 3,4, 5}]
  7067. uint8 Status;
  7068. };
  7069. instance of Microsoft_EELEntry
  7070. {
  7071. EventId = "202";
  7072. SourceSubsystemType="NT Event Log";
  7073. SourceSubsystemName ="driver";
  7074. SystemAbout = "abhishea_1";
  7075. SystemFrom = "abhishea_1";
  7076. DeliveredBy = "srinik_1";
  7077. Category="services";
  7078. Subcategory="sql server";
  7079. Priority = 2;
  7080. Severity = 3;
  7081. TimeGenerated = "19910206192525.129115+480";
  7082. LoggingTime = "20011228211018.146156+480";
  7083. RollupTime = "19960719004027.140271+480";
  7084. Message = "Message with key to search = 1277199301";
  7085. RecordNumber = "202";
  7086. User = "N/A";
  7087. Type = 5;
  7088. Classification = 7;
  7089. LogType = 3;
  7090. OriginalEvent = instance of __InstanceCreationEvent
  7091. { TargetInstance = instance of Win32_Service
  7092. {
  7093. Name = "SQL";
  7094. DisplayName = "SQL Database Server";
  7095. Status = 1;
  7096. };
  7097. };
  7098. };
  7099. instance of Microsoft_EELTOCEntryInFile
  7100. {
  7101. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7102. Entry ="Microsoft_EELEntry='202'";
  7103. };
  7104. instance of Microsoft_EELEntry
  7105. {
  7106. EventId = "203";
  7107. SourceSubsystemType="NT Event Log";
  7108. SourceSubsystemName ="server";
  7109. SystemAbout = "srinik_1";
  7110. SystemFrom = "rakeshb_2";
  7111. DeliveredBy = "abhishea_1";
  7112. Category="services";
  7113. Subcategory="sql server";
  7114. Priority = 4;
  7115. Severity = 1;
  7116. TimeGenerated = "19900109140817.107781+480";
  7117. LoggingTime = "19991002090821.131388+480";
  7118. RollupTime = "19960723064022.181343+480";
  7119. Message = "Message with key to search = 659490006";
  7120. RecordNumber = "203";
  7121. User = "N/A";
  7122. Type = 1;
  7123. Classification = 6;
  7124. LogType = 1;
  7125. OriginalEvent = instance of __InstanceModificationEvent
  7126. { TargetInstance = instance of Win32_Service
  7127. {
  7128. Name = "SQL";
  7129. DisplayName = "SQL Database Server";
  7130. Status = 1;
  7131. };
  7132. PreviousInstance = instance of Win32_Service
  7133. {
  7134. Name = "SQL";
  7135. DisplayName = "SQL Database Server";
  7136. Status = 1;
  7137. };
  7138. };
  7139. };
  7140. instance of Microsoft_EELTOCEntryInFile
  7141. {
  7142. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7143. Entry ="Microsoft_EELEntry='203'";
  7144. };
  7145. instance of Microsoft_EELEntry
  7146. {
  7147. EventId = "204";
  7148. SourceSubsystemType="NT Event Log";
  7149. SourceSubsystemName ="server";
  7150. SystemAbout = "srinik_1";
  7151. SystemFrom = "rakeshb_2";
  7152. DeliveredBy = "abhishea_1";
  7153. Category="services";
  7154. Subcategory="sql server";
  7155. Priority = 2;
  7156. Severity = 4;
  7157. TimeGenerated = "19930408201919.194207+480";
  7158. LoggingTime = "20011220195602.125181+480";
  7159. RollupTime = "19930412062005.102448+480";
  7160. Message = "Message with key to search = 1676915876";
  7161. RecordNumber = "204";
  7162. User = "N/A";
  7163. Type = 1;
  7164. Classification = 7;
  7165. LogType = 3;
  7166. OriginalEvent = instance of __InstanceDeletionEvent
  7167. { TargetInstance = instance of Win32_Service
  7168. {
  7169. Name = "SQL";
  7170. DisplayName = "SQL Database Server";
  7171. Status = 3;
  7172. };
  7173. };
  7174. };
  7175. instance of Microsoft_EELTOCEntryInFile
  7176. {
  7177. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7178. Entry ="Microsoft_EELEntry='204'";
  7179. };
  7180. instance of Microsoft_EELEntry
  7181. {
  7182. EventId = "205";
  7183. SourceSubsystemType="NT Event Log";
  7184. SourceSubsystemName ="driver";
  7185. SystemAbout = "rakeshb_2";
  7186. SystemFrom = "srinik_1";
  7187. DeliveredBy = "srinik_1";
  7188. Category="services";
  7189. Subcategory="sql server";
  7190. Priority = 2;
  7191. Severity = 2;
  7192. TimeGenerated = "19920323220109.144460+480";
  7193. LoggingTime = "19991022144828.126357+480";
  7194. RollupTime = "19950606013820.134664+480";
  7195. Message = "Message with key to search = 1048846042";
  7196. RecordNumber = "205";
  7197. User = "N/A";
  7198. Type = 1;
  7199. Classification = 6;
  7200. LogType = 3;
  7201. OriginalEvent = instance of __InstanceCreationEvent
  7202. { TargetInstance = instance of Win32_Service
  7203. {
  7204. Name = "SQL";
  7205. DisplayName = "SQL Database Server";
  7206. Status = 3;
  7207. };
  7208. };
  7209. };
  7210. instance of Microsoft_EELTOCEntryInFile
  7211. {
  7212. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7213. Entry ="Microsoft_EELEntry='205'";
  7214. };
  7215. instance of Microsoft_EELEntry
  7216. {
  7217. EventId = "206";
  7218. SourceSubsystemType="NT Event Log";
  7219. SourceSubsystemName ="driver";
  7220. SystemAbout = "csood_i2";
  7221. SystemFrom = "csood_i2";
  7222. DeliveredBy = "csood_i2";
  7223. Category="services";
  7224. Subcategory="sql server";
  7225. Priority = 2;
  7226. Severity = 4;
  7227. TimeGenerated = "19900109045026.116590+480";
  7228. LoggingTime = "19960711113002.194751+480";
  7229. RollupTime = "20011228210300.169644+480";
  7230. Message = "Message with key to search = 1104829143";
  7231. RecordNumber = "206";
  7232. User = "rishi";
  7233. Type = 2;
  7234. Classification = 7;
  7235. LogType = 2;
  7236. OriginalEvent = instance of __InstanceModificationEvent
  7237. { TargetInstance = instance of Win32_Service
  7238. {
  7239. Name = "SQL";
  7240. DisplayName = "SQL Database Server";
  7241. Status = 2;
  7242. };
  7243. PreviousInstance = instance of Win32_Service
  7244. {
  7245. Name = "SQL";
  7246. DisplayName = "SQL Database Server";
  7247. Status = 4;
  7248. };
  7249. };
  7250. };
  7251. instance of Microsoft_EELTOCEntryInFile
  7252. {
  7253. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7254. Entry ="Microsoft_EELEntry='206'";
  7255. };
  7256. instance of Microsoft_EELEntry
  7257. {
  7258. EventId = "207";
  7259. SourceSubsystemType="SMS Log";
  7260. SourceSubsystemName ="application";
  7261. SystemAbout = "rakeshb_2";
  7262. SystemFrom = "abhishea_1";
  7263. DeliveredBy = "rakeshb_2";
  7264. Category="services";
  7265. Subcategory="sql server";
  7266. Priority = 2;
  7267. Severity = 4;
  7268. TimeGenerated = "19920315101424.132158+480";
  7269. LoggingTime = "19940513011806.192090+480";
  7270. RollupTime = "19980921160827.145666+480";
  7271. Message = "Message with key to search = 1686354375";
  7272. RecordNumber = "207";
  7273. User = "rishi";
  7274. Type = 4;
  7275. Classification = 6;
  7276. LogType = 1;
  7277. OriginalEvent = instance of __InstanceDeletionEvent
  7278. { TargetInstance = instance of Win32_Service
  7279. {
  7280. Name = "SQL";
  7281. DisplayName = "SQL Database Server";
  7282. Status = 3;
  7283. };
  7284. };
  7285. };
  7286. instance of Microsoft_EELTOCEntryInFile
  7287. {
  7288. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7289. Entry ="Microsoft_EELEntry='207'";
  7290. };
  7291. instance of Microsoft_EELEntry
  7292. {
  7293. EventId = "208";
  7294. SourceSubsystemType="SMS Log";
  7295. SourceSubsystemName ="Unknown";
  7296. SystemAbout = "abhishea_1";
  7297. SystemFrom = "rakeshb_2";
  7298. DeliveredBy = "abhishea_1";
  7299. Category="services";
  7300. Subcategory="sql server";
  7301. Priority = 2;
  7302. Severity = 2;
  7303. TimeGenerated = "19950622190218.155257+480";
  7304. LoggingTime = "19950622212803.139988+480";
  7305. RollupTime = "19950626194426.154188+480";
  7306. Message = "Message with key to search = 817447123";
  7307. RecordNumber = "208";
  7308. User = "rishi";
  7309. Type = 1;
  7310. Classification = 1;
  7311. LogType = 1;
  7312. OriginalEvent = instance of __InstanceCreationEvent
  7313. { TargetInstance = instance of Win32_Service
  7314. {
  7315. Name = "SQL";
  7316. DisplayName = "SQL Database Server";
  7317. Status = 1;
  7318. };
  7319. };
  7320. };
  7321. instance of Microsoft_EELTOCEntryInFile
  7322. {
  7323. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7324. Entry ="Microsoft_EELEntry='208'";
  7325. };
  7326. instance of Microsoft_EELEntry
  7327. {
  7328. EventId = "209";
  7329. SourceSubsystemType="NT Event Log";
  7330. SourceSubsystemName ="driver";
  7331. SystemAbout = "csood_i2";
  7332. SystemFrom = "abhishea_1";
  7333. DeliveredBy = "csood_i2";
  7334. Category="services";
  7335. Subcategory="sql server";
  7336. Priority = 3;
  7337. Severity = 3;
  7338. TimeGenerated = "19900105150217.148954+480";
  7339. LoggingTime = "19960723061612.107298+480";
  7340. RollupTime = "19991010044419.122929+480";
  7341. Message = "Message with key to search = 1006363277";
  7342. RecordNumber = "209";
  7343. User = "sriravi";
  7344. Type = 0;
  7345. Classification = 7;
  7346. LogType = 1;
  7347. OriginalEvent = instance of __InstanceModificationEvent
  7348. { TargetInstance = instance of Win32_Service
  7349. {
  7350. Name = "SQL";
  7351. DisplayName = "SQL Database Server";
  7352. Status = 4;
  7353. };
  7354. PreviousInstance = instance of Win32_Service
  7355. {
  7356. Name = "SQL";
  7357. DisplayName = "SQL Database Server";
  7358. Status = 2;
  7359. };
  7360. };
  7361. };
  7362. instance of Microsoft_EELTOCEntryInFile
  7363. {
  7364. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7365. Entry ="Microsoft_EELEntry='209'";
  7366. };
  7367. instance of Microsoft_EELEntry
  7368. {
  7369. EventId = "210";
  7370. SourceSubsystemType="NT Event Log";
  7371. SourceSubsystemName ="server";
  7372. SystemAbout = "srinik_1";
  7373. SystemFrom = "rakeshb_2";
  7374. DeliveredBy = "csood_i2";
  7375. Category="services";
  7376. Subcategory="sql server";
  7377. Priority = 1;
  7378. Severity = 1;
  7379. TimeGenerated = "19900109061913.160467+480";
  7380. LoggingTime = "20011216110706.114718+480";
  7381. RollupTime = "19940517160301.146700+480";
  7382. Message = "Message with key to search = 1567416534";
  7383. RecordNumber = "210";
  7384. User = "sriravi";
  7385. Type = 0;
  7386. Classification = 4;
  7387. LogType = 1;
  7388. OriginalEvent = instance of __InstanceDeletionEvent
  7389. { TargetInstance = instance of Win32_Service
  7390. {
  7391. Name = "SQL";
  7392. DisplayName = "SQL Database Server";
  7393. Status = 4;
  7394. };
  7395. };
  7396. };
  7397. instance of Microsoft_EELTOCEntryInFile
  7398. {
  7399. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7400. Entry ="Microsoft_EELEntry='210'";
  7401. };
  7402. instance of Microsoft_EELEntry
  7403. {
  7404. EventId = "211";
  7405. SourceSubsystemType="SMS Log";
  7406. SourceSubsystemName ="driver";
  7407. SystemAbout = "srinik_1";
  7408. SystemFrom = "abhishea_1";
  7409. DeliveredBy = "abhishea_1";
  7410. Category="services";
  7411. Subcategory="sql server";
  7412. Priority = 4;
  7413. Severity = 1;
  7414. TimeGenerated = "19930428163120.186298+480";
  7415. LoggingTime = "20011216060708.160622+480";
  7416. RollupTime = "19950606073502.170940+480";
  7417. Message = "Message with key to search = 1687594998";
  7418. RecordNumber = "211";
  7419. User = "sriravi";
  7420. Type = 6;
  7421. Classification = 7;
  7422. LogType = 2;
  7423. OriginalEvent = instance of __InstanceCreationEvent
  7424. { TargetInstance = instance of Win32_Service
  7425. {
  7426. Name = "SQL";
  7427. DisplayName = "SQL Database Server";
  7428. Status = 1;
  7429. };
  7430. };
  7431. };
  7432. instance of Microsoft_EELTOCEntryInFile
  7433. {
  7434. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7435. Entry ="Microsoft_EELEntry='211'";
  7436. };
  7437. instance of Microsoft_EELEntry
  7438. {
  7439. EventId = "212";
  7440. SourceSubsystemType="NT Event Log";
  7441. SourceSubsystemName ="application";
  7442. SystemAbout = "csood_i2";
  7443. SystemFrom = "abhishea_1";
  7444. DeliveredBy = "csood_i2";
  7445. Category="services";
  7446. Subcategory="sql server";
  7447. Priority = 2;
  7448. Severity = 4;
  7449. TimeGenerated = "19900105020505.194772+480";
  7450. LoggingTime = "20011212020022.176035+480";
  7451. RollupTime = "19930420170800.161722+480";
  7452. Message = "Message with key to search = 1798311629";
  7453. RecordNumber = "212";
  7454. User = "N/A";
  7455. Type = 3;
  7456. Classification = 2;
  7457. LogType = 2;
  7458. OriginalEvent = instance of __InstanceModificationEvent
  7459. { TargetInstance = instance of Win32_Service
  7460. {
  7461. Name = "SQL";
  7462. DisplayName = "SQL Database Server";
  7463. Status = 2;
  7464. };
  7465. PreviousInstance = instance of Win32_Service
  7466. {
  7467. Name = "SQL";
  7468. DisplayName = "SQL Database Server";
  7469. Status = 3;
  7470. };
  7471. };
  7472. };
  7473. instance of Microsoft_EELTOCEntryInFile
  7474. {
  7475. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7476. Entry ="Microsoft_EELEntry='212'";
  7477. };
  7478. instance of Microsoft_EELEntry
  7479. {
  7480. EventId = "213";
  7481. SourceSubsystemType="SMS Log";
  7482. SourceSubsystemName ="application";
  7483. SystemAbout = "rakeshb_2";
  7484. SystemFrom = "abhishea_1";
  7485. DeliveredBy = "rakeshb_2";
  7486. Category="services";
  7487. Subcategory="sql server";
  7488. Priority = 4;
  7489. Severity = 4;
  7490. TimeGenerated = "19950618054924.140786+480";
  7491. LoggingTime = "20011212083816.176330+480";
  7492. RollupTime = "19970824235011.118855+480";
  7493. Message = "Message with key to search = 270902105";
  7494. RecordNumber = "213";
  7495. User = "rishi";
  7496. Type = 4;
  7497. Classification = 3;
  7498. LogType = 3;
  7499. OriginalEvent = instance of __InstanceDeletionEvent
  7500. { TargetInstance = instance of Win32_Service
  7501. {
  7502. Name = "SQL";
  7503. DisplayName = "SQL Database Server";
  7504. Status = 4;
  7505. };
  7506. };
  7507. };
  7508. instance of Microsoft_EELTOCEntryInFile
  7509. {
  7510. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7511. Entry ="Microsoft_EELEntry='213'";
  7512. };
  7513. instance of Microsoft_EELEntry
  7514. {
  7515. EventId = "214";
  7516. SourceSubsystemType="SMS Log";
  7517. SourceSubsystemName ="server";
  7518. SystemAbout = "rakeshb_2";
  7519. SystemFrom = "srinik_1";
  7520. DeliveredBy = "abhishea_1";
  7521. Category="services";
  7522. Subcategory="sql server";
  7523. Priority = 1;
  7524. Severity = 2;
  7525. TimeGenerated = "19900101141118.176582+480";
  7526. LoggingTime = "19960707143219.103006+480";
  7527. RollupTime = "19980917212718.116933+480";
  7528. Message = "Message with key to search = 1071544153";
  7529. RecordNumber = "214";
  7530. User = "sriravi";
  7531. Type = 2;
  7532. Classification = 8;
  7533. LogType = 3;
  7534. OriginalEvent = instance of __InstanceCreationEvent
  7535. { TargetInstance = instance of Win32_Service
  7536. {
  7537. Name = "SQL";
  7538. DisplayName = "SQL Database Server";
  7539. Status = 3;
  7540. };
  7541. };
  7542. };
  7543. instance of Microsoft_EELTOCEntryInFile
  7544. {
  7545. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7546. Entry ="Microsoft_EELEntry='214'";
  7547. };
  7548. instance of Microsoft_EELEntry
  7549. {
  7550. EventId = "215";
  7551. SourceSubsystemType="SMS Log";
  7552. SourceSubsystemName ="server";
  7553. SystemAbout = "abhishea_1";
  7554. SystemFrom = "srinik_1";
  7555. DeliveredBy = "abhishea_1";
  7556. Category="services";
  7557. Subcategory="sql server";
  7558. Priority = 2;
  7559. Severity = 3;
  7560. TimeGenerated = "19930420023022.146035+480";
  7561. LoggingTime = "19980905060511.131158+480";
  7562. RollupTime = "19950626111419.166510+480";
  7563. Message = "Message with key to search = 1564645317";
  7564. RecordNumber = "215";
  7565. User = "N/A";
  7566. Type = 1;
  7567. Classification = 7;
  7568. LogType = 2;
  7569. OriginalEvent = instance of __InstanceModificationEvent
  7570. { TargetInstance = instance of Win32_Service
  7571. {
  7572. Name = "SQL";
  7573. DisplayName = "SQL Database Server";
  7574. Status = 3;
  7575. };
  7576. PreviousInstance = instance of Win32_Service
  7577. {
  7578. Name = "SQL";
  7579. DisplayName = "SQL Database Server";
  7580. Status = 2;
  7581. };
  7582. };
  7583. };
  7584. instance of Microsoft_EELTOCEntryInFile
  7585. {
  7586. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7587. Entry ="Microsoft_EELEntry='215'";
  7588. };
  7589. instance of Microsoft_EELEntry
  7590. {
  7591. EventId = "216";
  7592. SourceSubsystemType="SMS Log";
  7593. SourceSubsystemName ="application";
  7594. SystemAbout = "csood_i2";
  7595. SystemFrom = "rakeshb_2";
  7596. DeliveredBy = "srinik_1";
  7597. Category="services";
  7598. Subcategory="sql server";
  7599. Priority = 1;
  7600. Severity = 4;
  7601. TimeGenerated = "19910218011624.163903+480";
  7602. LoggingTime = "19920319135909.137418+480";
  7603. RollupTime = "19910214131720.144148+480";
  7604. Message = "Message with key to search = 1260190776";
  7605. RecordNumber = "216";
  7606. User = "N/A";
  7607. Type = 2;
  7608. Classification = 4;
  7609. LogType = 2;
  7610. OriginalEvent = instance of __InstanceDeletionEvent
  7611. { TargetInstance = instance of Win32_Service
  7612. {
  7613. Name = "SQL";
  7614. DisplayName = "SQL Database Server";
  7615. Status = 4;
  7616. };
  7617. };
  7618. };
  7619. instance of Microsoft_EELTOCEntryInFile
  7620. {
  7621. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7622. Entry ="Microsoft_EELEntry='216'";
  7623. };
  7624. instance of Microsoft_EELEntry
  7625. {
  7626. EventId = "217";
  7627. SourceSubsystemType="NT Event Log";
  7628. SourceSubsystemName ="Unknown";
  7629. SystemAbout = "srinik_1";
  7630. SystemFrom = "csood_i2";
  7631. DeliveredBy = "rakeshb_2";
  7632. Category="services";
  7633. Subcategory="sql server";
  7634. Priority = 4;
  7635. Severity = 2;
  7636. TimeGenerated = "19920319035113.179903+480";
  7637. LoggingTime = "20001115132412.164826+480";
  7638. RollupTime = "19970816080318.175875+480";
  7639. Message = "Message with key to search = 107322548";
  7640. RecordNumber = "217";
  7641. User = "sriravi";
  7642. Type = 4;
  7643. Classification = 6;
  7644. LogType = 3;
  7645. OriginalEvent = instance of __InstanceCreationEvent
  7646. { TargetInstance = instance of Win32_Service
  7647. {
  7648. Name = "SQL";
  7649. DisplayName = "SQL Database Server";
  7650. Status = 1;
  7651. };
  7652. };
  7653. };
  7654. instance of Microsoft_EELTOCEntryInFile
  7655. {
  7656. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7657. Entry ="Microsoft_EELEntry='217'";
  7658. };
  7659. instance of Microsoft_EELEntry
  7660. {
  7661. EventId = "218";
  7662. SourceSubsystemType="SMS Log";
  7663. SourceSubsystemName ="application";
  7664. SystemAbout = "abhishea_1";
  7665. SystemFrom = "csood_i2";
  7666. DeliveredBy = "rakeshb_2";
  7667. Category="services";
  7668. Subcategory="sql server";
  7669. Priority = 2;
  7670. Severity = 4;
  7671. TimeGenerated = "19950610145522.127877+480";
  7672. LoggingTime = "19960711095525.163111+480";
  7673. RollupTime = "19940505013210.150789+480";
  7674. Message = "Message with key to search = 387481544";
  7675. RecordNumber = "218";
  7676. User = "amit";
  7677. Type = 3;
  7678. Classification = 6;
  7679. LogType = 3;
  7680. OriginalEvent = instance of __InstanceModificationEvent
  7681. { TargetInstance = instance of Win32_Service
  7682. {
  7683. Name = "SQL";
  7684. DisplayName = "SQL Database Server";
  7685. Status = 3;
  7686. };
  7687. PreviousInstance = instance of Win32_Service
  7688. {
  7689. Name = "SQL";
  7690. DisplayName = "SQL Database Server";
  7691. Status = 1;
  7692. };
  7693. };
  7694. };
  7695. instance of Microsoft_EELTOCEntryInFile
  7696. {
  7697. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7698. Entry ="Microsoft_EELEntry='218'";
  7699. };
  7700. instance of Microsoft_EELEntry
  7701. {
  7702. EventId = "219";
  7703. SourceSubsystemType="SMS Log";
  7704. SourceSubsystemName ="Unknown";
  7705. SystemAbout = "abhishea_1";
  7706. SystemFrom = "rakeshb_2";
  7707. DeliveredBy = "srinik_1";
  7708. Category="services";
  7709. Subcategory="sql server";
  7710. Priority = 3;
  7711. Severity = 3;
  7712. TimeGenerated = "19940509174117.193091+480";
  7713. LoggingTime = "19970828171213.179885+480";
  7714. RollupTime = "19940509071217.183110+480";
  7715. Message = "Message with key to search = 1875031598";
  7716. RecordNumber = "219";
  7717. User = "rishi";
  7718. Type = 2;
  7719. Classification = 1;
  7720. LogType = 2;
  7721. OriginalEvent = instance of __InstanceDeletionEvent
  7722. { TargetInstance = instance of Win32_Service
  7723. {
  7724. Name = "SQL";
  7725. DisplayName = "SQL Database Server";
  7726. Status = 3;
  7727. };
  7728. };
  7729. };
  7730. instance of Microsoft_EELTOCEntryInFile
  7731. {
  7732. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7733. Entry ="Microsoft_EELEntry='219'";
  7734. };
  7735. instance of Microsoft_EELEntry
  7736. {
  7737. EventId = "220";
  7738. SourceSubsystemType="SMS Log";
  7739. SourceSubsystemName ="server";
  7740. SystemAbout = "csood_i2";
  7741. SystemFrom = "srinik_1";
  7742. DeliveredBy = "srinik_1";
  7743. Category="services";
  7744. Subcategory="sql server";
  7745. Priority = 4;
  7746. Severity = 1;
  7747. TimeGenerated = "19960707201523.133728+480";
  7748. LoggingTime = "19991022003309.155701+480";
  7749. RollupTime = "19970816153927.192388+480";
  7750. Message = "Message with key to search = 720208647";
  7751. RecordNumber = "220";
  7752. User = "sriravi";
  7753. Type = 4;
  7754. Classification = 1;
  7755. LogType = 2;
  7756. OriginalEvent = instance of __InstanceCreationEvent
  7757. { TargetInstance = instance of Win32_Service
  7758. {
  7759. Name = "SQL";
  7760. DisplayName = "SQL Database Server";
  7761. Status = 4;
  7762. };
  7763. };
  7764. };
  7765. instance of Microsoft_EELTOCEntryInFile
  7766. {
  7767. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7768. Entry ="Microsoft_EELEntry='220'";
  7769. };
  7770. instance of Microsoft_EELEntry
  7771. {
  7772. EventId = "221";
  7773. SourceSubsystemType="SMS Log";
  7774. SourceSubsystemName ="application";
  7775. SystemAbout = "rakeshb_2";
  7776. SystemFrom = "srinik_1";
  7777. DeliveredBy = "csood_i2";
  7778. Category="services";
  7779. Subcategory="sql server";
  7780. Priority = 2;
  7781. Severity = 2;
  7782. TimeGenerated = "19970816182628.125936+480";
  7783. LoggingTime = "19900113122511.105911+480";
  7784. RollupTime = "19980921233811.111881+480";
  7785. Message = "Message with key to search = 1313670506";
  7786. RecordNumber = "221";
  7787. User = "sriravi";
  7788. Type = 4;
  7789. Classification = 2;
  7790. LogType = 3;
  7791. OriginalEvent = instance of __InstanceModificationEvent
  7792. { TargetInstance = instance of Win32_Service
  7793. {
  7794. Name = "SQL";
  7795. DisplayName = "SQL Database Server";
  7796. Status = 2;
  7797. };
  7798. PreviousInstance = instance of Win32_Service
  7799. {
  7800. Name = "SQL";
  7801. DisplayName = "SQL Database Server";
  7802. Status = 3;
  7803. };
  7804. };
  7805. };
  7806. instance of Microsoft_EELTOCEntryInFile
  7807. {
  7808. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7809. Entry ="Microsoft_EELEntry='221'";
  7810. };
  7811. instance of Microsoft_EELEntry
  7812. {
  7813. EventId = "222";
  7814. SourceSubsystemType="NT Event Log";
  7815. SourceSubsystemName ="Unknown";
  7816. SystemAbout = "srinik_1";
  7817. SystemFrom = "abhishea_1";
  7818. DeliveredBy = "csood_i2";
  7819. Category="services";
  7820. Subcategory="sql server";
  7821. Priority = 2;
  7822. Severity = 1;
  7823. TimeGenerated = "19900125110322.191952+480";
  7824. LoggingTime = "19960719224823.164973+480";
  7825. RollupTime = "19920323070020.110955+480";
  7826. Message = "Message with key to search = 1290001189";
  7827. RecordNumber = "222";
  7828. User = "sriravi";
  7829. Type = 3;
  7830. Classification = 8;
  7831. LogType = 1;
  7832. OriginalEvent = instance of __InstanceDeletionEvent
  7833. { TargetInstance = instance of Win32_Service
  7834. {
  7835. Name = "SQL";
  7836. DisplayName = "SQL Database Server";
  7837. Status = 3;
  7838. };
  7839. };
  7840. };
  7841. instance of Microsoft_EELTOCEntryInFile
  7842. {
  7843. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7844. Entry ="Microsoft_EELEntry='222'";
  7845. };
  7846. instance of Microsoft_EELEntry
  7847. {
  7848. EventId = "223";
  7849. SourceSubsystemType="SMS Log";
  7850. SourceSubsystemName ="driver";
  7851. SystemAbout = "rakeshb_2";
  7852. SystemFrom = "rakeshb_2";
  7853. DeliveredBy = "srinik_1";
  7854. Category="services";
  7855. Subcategory="sql server";
  7856. Priority = 2;
  7857. Severity = 2;
  7858. TimeGenerated = "19900121031424.131257+480";
  7859. LoggingTime = "19960723123614.110322+480";
  7860. RollupTime = "19970816132116.198796+480";
  7861. Message = "Message with key to search = 1881995852";
  7862. RecordNumber = "223";
  7863. User = "N/A";
  7864. Type = 5;
  7865. Classification = 6;
  7866. LogType = 1;
  7867. OriginalEvent = instance of __InstanceCreationEvent
  7868. { TargetInstance = instance of Win32_Service
  7869. {
  7870. Name = "SQL";
  7871. DisplayName = "SQL Database Server";
  7872. Status = 2;
  7873. };
  7874. };
  7875. };
  7876. instance of Microsoft_EELTOCEntryInFile
  7877. {
  7878. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7879. Entry ="Microsoft_EELEntry='223'";
  7880. };
  7881. instance of Microsoft_EELEntry
  7882. {
  7883. EventId = "224";
  7884. SourceSubsystemType="NT Event Log";
  7885. SourceSubsystemName ="driver";
  7886. SystemAbout = "abhishea_1";
  7887. SystemFrom = "csood_i2";
  7888. DeliveredBy = "csood_i2";
  7889. Category="services";
  7890. Subcategory="sql server";
  7891. Priority = 2;
  7892. Severity = 4;
  7893. TimeGenerated = "19920327123420.121213+480";
  7894. LoggingTime = "19980925041215.102593+480";
  7895. RollupTime = "19970824011206.192782+480";
  7896. Message = "Message with key to search = 1546881521";
  7897. RecordNumber = "224";
  7898. User = "sriravi";
  7899. Type = 6;
  7900. Classification = 2;
  7901. LogType = 2;
  7902. OriginalEvent = instance of __InstanceModificationEvent
  7903. { TargetInstance = instance of Win32_Service
  7904. {
  7905. Name = "SQL";
  7906. DisplayName = "SQL Database Server";
  7907. Status = 1;
  7908. };
  7909. PreviousInstance = instance of Win32_Service
  7910. {
  7911. Name = "SQL";
  7912. DisplayName = "SQL Database Server";
  7913. Status = 1;
  7914. };
  7915. };
  7916. };
  7917. instance of Microsoft_EELTOCEntryInFile
  7918. {
  7919. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  7920. Entry ="Microsoft_EELEntry='224'";
  7921. };
  7922. instance of Microsoft_EELEntry
  7923. {
  7924. EventId = "225";
  7925. SourceSubsystemType="SMS Log";
  7926. SourceSubsystemName ="application";
  7927. SystemAbout = "csood_i2";
  7928. SystemFrom = "srinik_1";
  7929. DeliveredBy = "abhishea_1";
  7930. Category="services";
  7931. Subcategory="sql server";
  7932. Priority = 4;
  7933. Severity = 1;
  7934. TimeGenerated = "19970828222528.170866+480";
  7935. LoggingTime = "20011228132916.125908+480";
  7936. RollupTime = "19980913210624.134097+480";
  7937. Message = "Message with key to search = 1973143005";
  7938. RecordNumber = "225";
  7939. User = "rishi";
  7940. Type = 1;
  7941. Classification = 5;
  7942. LogType = 1;
  7943. OriginalEvent = instance of __InstanceDeletionEvent
  7944. { TargetInstance = instance of Win32_Service
  7945. {
  7946. Name = "SQL";
  7947. DisplayName = "SQL Database Server";
  7948. Status = 3;
  7949. };
  7950. };
  7951. };
  7952. instance of Microsoft_EELTOCEntryInFile
  7953. {
  7954. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  7955. Entry ="Microsoft_EELEntry='225'";
  7956. };
  7957. instance of Microsoft_EELEntry
  7958. {
  7959. EventId = "226";
  7960. SourceSubsystemType="NT Event Log";
  7961. SourceSubsystemName ="application";
  7962. SystemAbout = "csood_i2";
  7963. SystemFrom = "rakeshb_2";
  7964. DeliveredBy = "srinik_1";
  7965. Category="services";
  7966. Subcategory="sql server";
  7967. Priority = 2;
  7968. Severity = 3;
  7969. TimeGenerated = "19920319183204.101443+480";
  7970. LoggingTime = "20011220092115.118139+480";
  7971. RollupTime = "19930412162013.167849+480";
  7972. Message = "Message with key to search = 853259007";
  7973. RecordNumber = "226";
  7974. User = "N/A";
  7975. Type = 2;
  7976. Classification = 5;
  7977. LogType = 3;
  7978. OriginalEvent = instance of __InstanceCreationEvent
  7979. { TargetInstance = instance of Win32_Service
  7980. {
  7981. Name = "SQL";
  7982. DisplayName = "SQL Database Server";
  7983. Status = 1;
  7984. };
  7985. };
  7986. };
  7987. instance of Microsoft_EELTOCEntryInFile
  7988. {
  7989. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  7990. Entry ="Microsoft_EELEntry='226'";
  7991. };
  7992. instance of Microsoft_EELEntry
  7993. {
  7994. EventId = "227";
  7995. SourceSubsystemType="SMS Log";
  7996. SourceSubsystemName ="server";
  7997. SystemAbout = "abhishea_1";
  7998. SystemFrom = "rakeshb_2";
  7999. DeliveredBy = "csood_i2";
  8000. Category="services";
  8001. Subcategory="sql server";
  8002. Priority = 1;
  8003. Severity = 1;
  8004. TimeGenerated = "19920327090413.194584+480";
  8005. LoggingTime = "19980901215801.162783+480";
  8006. RollupTime = "20001115151610.174939+480";
  8007. Message = "Message with key to search = 1072422882";
  8008. RecordNumber = "227";
  8009. User = "N/A";
  8010. Type = 0;
  8011. Classification = 2;
  8012. LogType = 3;
  8013. OriginalEvent = instance of __InstanceModificationEvent
  8014. { TargetInstance = instance of Win32_Service
  8015. {
  8016. Name = "SQL";
  8017. DisplayName = "SQL Database Server";
  8018. Status = 1;
  8019. };
  8020. PreviousInstance = instance of Win32_Service
  8021. {
  8022. Name = "SQL";
  8023. DisplayName = "SQL Database Server";
  8024. Status = 4;
  8025. };
  8026. };
  8027. };
  8028. instance of Microsoft_EELTOCEntryInFile
  8029. {
  8030. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8031. Entry ="Microsoft_EELEntry='227'";
  8032. };
  8033. instance of Microsoft_EELEntry
  8034. {
  8035. EventId = "228";
  8036. SourceSubsystemType="SMS Log";
  8037. SourceSubsystemName ="Unknown";
  8038. SystemAbout = "rakeshb_2";
  8039. SystemFrom = "rakeshb_2";
  8040. DeliveredBy = "abhishea_1";
  8041. Category="services";
  8042. Subcategory="sql server";
  8043. Priority = 1;
  8044. Severity = 1;
  8045. TimeGenerated = "19910214094503.101193+480";
  8046. LoggingTime = "19991018153305.153435+480";
  8047. RollupTime = "19960723095007.182865+480";
  8048. Message = "Message with key to search = 750827516";
  8049. RecordNumber = "228";
  8050. User = "sriravi";
  8051. Type = 6;
  8052. Classification = 6;
  8053. LogType = 1;
  8054. OriginalEvent = instance of __InstanceDeletionEvent
  8055. { TargetInstance = instance of Win32_Service
  8056. {
  8057. Name = "SQL";
  8058. DisplayName = "SQL Database Server";
  8059. Status = 1;
  8060. };
  8061. };
  8062. };
  8063. instance of Microsoft_EELTOCEntryInFile
  8064. {
  8065. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8066. Entry ="Microsoft_EELEntry='228'";
  8067. };
  8068. instance of Microsoft_EELEntry
  8069. {
  8070. EventId = "229";
  8071. SourceSubsystemType="NT Event Log";
  8072. SourceSubsystemName ="Unknown";
  8073. SystemAbout = "rakeshb_2";
  8074. SystemFrom = "abhishea_1";
  8075. DeliveredBy = "abhishea_1";
  8076. Category="services";
  8077. Subcategory="sql server";
  8078. Priority = 4;
  8079. Severity = 1;
  8080. TimeGenerated = "19940525154902.183207+480";
  8081. LoggingTime = "19940509120404.169092+480";
  8082. RollupTime = "19940517020115.161513+480";
  8083. Message = "Message with key to search = 1838570756";
  8084. RecordNumber = "229";
  8085. User = "N/A";
  8086. Type = 5;
  8087. Classification = 6;
  8088. LogType = 3;
  8089. OriginalEvent = instance of __InstanceCreationEvent
  8090. { TargetInstance = instance of Win32_Service
  8091. {
  8092. Name = "SQL";
  8093. DisplayName = "SQL Database Server";
  8094. Status = 3;
  8095. };
  8096. };
  8097. };
  8098. instance of Microsoft_EELTOCEntryInFile
  8099. {
  8100. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8101. Entry ="Microsoft_EELEntry='229'";
  8102. };
  8103. instance of Microsoft_EELEntry
  8104. {
  8105. EventId = "230";
  8106. SourceSubsystemType="SMS Log";
  8107. SourceSubsystemName ="Unknown";
  8108. SystemAbout = "csood_i2";
  8109. SystemFrom = "srinik_1";
  8110. DeliveredBy = "csood_i2";
  8111. Category="services";
  8112. Subcategory="sql server";
  8113. Priority = 3;
  8114. Severity = 3;
  8115. TimeGenerated = "19910214140028.113168+480";
  8116. LoggingTime = "19991018134414.187797+480";
  8117. RollupTime = "19960703152725.158363+480";
  8118. Message = "Message with key to search = 2017027453";
  8119. RecordNumber = "230";
  8120. User = "sriravi";
  8121. Type = 2;
  8122. Classification = 4;
  8123. LogType = 1;
  8124. OriginalEvent = instance of __InstanceModificationEvent
  8125. { TargetInstance = instance of Win32_Service
  8126. {
  8127. Name = "SQL";
  8128. DisplayName = "SQL Database Server";
  8129. Status = 3;
  8130. };
  8131. PreviousInstance = instance of Win32_Service
  8132. {
  8133. Name = "SQL";
  8134. DisplayName = "SQL Database Server";
  8135. Status = 3;
  8136. };
  8137. };
  8138. };
  8139. instance of Microsoft_EELTOCEntryInFile
  8140. {
  8141. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8142. Entry ="Microsoft_EELEntry='230'";
  8143. };
  8144. instance of Microsoft_EELEntry
  8145. {
  8146. EventId = "231";
  8147. SourceSubsystemType="NT Event Log";
  8148. SourceSubsystemName ="driver";
  8149. SystemAbout = "srinik_1";
  8150. SystemFrom = "csood_i2";
  8151. DeliveredBy = "srinik_1";
  8152. Category="services";
  8153. Subcategory="sql server";
  8154. Priority = 1;
  8155. Severity = 3;
  8156. TimeGenerated = "19910214082502.119461+480";
  8157. LoggingTime = "19920315133426.124881+480";
  8158. RollupTime = "19950622180716.125413+480";
  8159. Message = "Message with key to search = 1292233390";
  8160. RecordNumber = "231";
  8161. User = "rishi";
  8162. Type = 5;
  8163. Classification = 7;
  8164. LogType = 2;
  8165. OriginalEvent = instance of __InstanceDeletionEvent
  8166. { TargetInstance = instance of Win32_Service
  8167. {
  8168. Name = "SQL";
  8169. DisplayName = "SQL Database Server";
  8170. Status = 2;
  8171. };
  8172. };
  8173. };
  8174. instance of Microsoft_EELTOCEntryInFile
  8175. {
  8176. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8177. Entry ="Microsoft_EELEntry='231'";
  8178. };
  8179. instance of Microsoft_EELEntry
  8180. {
  8181. EventId = "232";
  8182. SourceSubsystemType="SMS Log";
  8183. SourceSubsystemName ="application";
  8184. SystemAbout = "rakeshb_2";
  8185. SystemFrom = "csood_i2";
  8186. DeliveredBy = "abhishea_1";
  8187. Category="services";
  8188. Subcategory="sql server";
  8189. Priority = 4;
  8190. Severity = 2;
  8191. TimeGenerated = "19920327112316.164278+480";
  8192. LoggingTime = "19920315133426.124881+480";
  8193. RollupTime = "19950622221822.171765+480";
  8194. Message = "Message with key to search = 736644314";
  8195. RecordNumber = "232";
  8196. User = "N/A";
  8197. Type = 5;
  8198. Classification = 3;
  8199. LogType = 1;
  8200. OriginalEvent = instance of __InstanceCreationEvent
  8201. { TargetInstance = instance of Win32_Service
  8202. {
  8203. Name = "SQL";
  8204. DisplayName = "SQL Database Server";
  8205. Status = 2;
  8206. };
  8207. };
  8208. };
  8209. instance of Microsoft_EELTOCEntryInFile
  8210. {
  8211. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8212. Entry ="Microsoft_EELEntry='232'";
  8213. };
  8214. instance of Microsoft_EELEntry
  8215. {
  8216. EventId = "233";
  8217. SourceSubsystemType="SMS Log";
  8218. SourceSubsystemName ="Unknown";
  8219. SystemAbout = "abhishea_1";
  8220. SystemFrom = "rakeshb_2";
  8221. DeliveredBy = "srinik_1";
  8222. Category="services";
  8223. Subcategory="sql server";
  8224. Priority = 1;
  8225. Severity = 3;
  8226. TimeGenerated = "19900121075301.180346+480";
  8227. LoggingTime = "20001115191516.195912+480";
  8228. RollupTime = "19910226195813.120007+480";
  8229. Message = "Message with key to search = 1458831602";
  8230. RecordNumber = "233";
  8231. User = "sriravi";
  8232. Type = 3;
  8233. Classification = 4;
  8234. LogType = 2;
  8235. OriginalEvent = instance of __InstanceModificationEvent
  8236. { TargetInstance = instance of Win32_Service
  8237. {
  8238. Name = "SQL";
  8239. DisplayName = "SQL Database Server";
  8240. Status = 2;
  8241. };
  8242. PreviousInstance = instance of Win32_Service
  8243. {
  8244. Name = "SQL";
  8245. DisplayName = "SQL Database Server";
  8246. Status = 1;
  8247. };
  8248. };
  8249. };
  8250. instance of Microsoft_EELTOCEntryInFile
  8251. {
  8252. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8253. Entry ="Microsoft_EELEntry='233'";
  8254. };
  8255. instance of Microsoft_EELEntry
  8256. {
  8257. EventId = "234";
  8258. SourceSubsystemType="SMS Log";
  8259. SourceSubsystemName ="driver";
  8260. SystemAbout = "csood_i2";
  8261. SystemFrom = "rakeshb_2";
  8262. DeliveredBy = "rakeshb_2";
  8263. Category="services";
  8264. Subcategory="sql server";
  8265. Priority = 4;
  8266. Severity = 2;
  8267. TimeGenerated = "19900121101902.150159+480";
  8268. LoggingTime = "19980901184700.180915+480";
  8269. RollupTime = "20001103160622.119464+480";
  8270. Message = "Message with key to search = 102547188";
  8271. RecordNumber = "234";
  8272. User = "amit";
  8273. Type = 4;
  8274. Classification = 6;
  8275. LogType = 3;
  8276. OriginalEvent = instance of __InstanceDeletionEvent
  8277. { TargetInstance = instance of Win32_Service
  8278. {
  8279. Name = "SQL";
  8280. DisplayName = "SQL Database Server";
  8281. Status = 3;
  8282. };
  8283. };
  8284. };
  8285. instance of Microsoft_EELTOCEntryInFile
  8286. {
  8287. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8288. Entry ="Microsoft_EELEntry='234'";
  8289. };
  8290. instance of Microsoft_EELEntry
  8291. {
  8292. EventId = "235";
  8293. SourceSubsystemType="SMS Log";
  8294. SourceSubsystemName ="application";
  8295. SystemAbout = "abhishea_1";
  8296. SystemFrom = "rakeshb_2";
  8297. DeliveredBy = "rakeshb_2";
  8298. Category="services";
  8299. Subcategory="sql server";
  8300. Priority = 1;
  8301. Severity = 2;
  8302. TimeGenerated = "19920319000506.177064+480";
  8303. LoggingTime = "19991002090723.157483+480";
  8304. RollupTime = "19991002160406.127568+480";
  8305. Message = "Message with key to search = 678234022";
  8306. RecordNumber = "235";
  8307. User = "sriravi";
  8308. Type = 0;
  8309. Classification = 5;
  8310. LogType = 3;
  8311. OriginalEvent = instance of __InstanceCreationEvent
  8312. { TargetInstance = instance of Win32_Service
  8313. {
  8314. Name = "SQL";
  8315. DisplayName = "SQL Database Server";
  8316. Status = 1;
  8317. };
  8318. };
  8319. };
  8320. instance of Microsoft_EELTOCEntryInFile
  8321. {
  8322. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8323. Entry ="Microsoft_EELEntry='235'";
  8324. };
  8325. instance of Microsoft_EELEntry
  8326. {
  8327. EventId = "236";
  8328. SourceSubsystemType="NT Event Log";
  8329. SourceSubsystemName ="Unknown";
  8330. SystemAbout = "abhishea_1";
  8331. SystemFrom = "rakeshb_2";
  8332. DeliveredBy = "srinik_1";
  8333. Category="services";
  8334. Subcategory="sql server";
  8335. Priority = 4;
  8336. Severity = 4;
  8337. TimeGenerated = "19900101235319.193025+480";
  8338. LoggingTime = "20011220094612.186176+480";
  8339. RollupTime = "19950622010419.168638+480";
  8340. Message = "Message with key to search = 2116183505";
  8341. RecordNumber = "236";
  8342. User = "rishi";
  8343. Type = 0;
  8344. Classification = 2;
  8345. LogType = 1;
  8346. OriginalEvent = instance of __InstanceModificationEvent
  8347. { TargetInstance = instance of Win32_Service
  8348. {
  8349. Name = "SQL";
  8350. DisplayName = "SQL Database Server";
  8351. Status = 2;
  8352. };
  8353. PreviousInstance = instance of Win32_Service
  8354. {
  8355. Name = "SQL";
  8356. DisplayName = "SQL Database Server";
  8357. Status = 1;
  8358. };
  8359. };
  8360. };
  8361. instance of Microsoft_EELTOCEntryInFile
  8362. {
  8363. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8364. Entry ="Microsoft_EELEntry='236'";
  8365. };
  8366. instance of Microsoft_EELEntry
  8367. {
  8368. EventId = "237";
  8369. SourceSubsystemType="SMS Log";
  8370. SourceSubsystemName ="driver";
  8371. SystemAbout = "abhishea_1";
  8372. SystemFrom = "abhishea_1";
  8373. DeliveredBy = "srinik_1";
  8374. Category="services";
  8375. Subcategory="sql server";
  8376. Priority = 4;
  8377. Severity = 2;
  8378. TimeGenerated = "19950618010906.188571+480";
  8379. LoggingTime = "20001127084912.114220+480";
  8380. RollupTime = "19991006181426.140418+480";
  8381. Message = "Message with key to search = 429684013";
  8382. RecordNumber = "237";
  8383. User = "sriravi";
  8384. Type = 1;
  8385. Classification = 6;
  8386. LogType = 1;
  8387. OriginalEvent = instance of __InstanceDeletionEvent
  8388. { TargetInstance = instance of Win32_Service
  8389. {
  8390. Name = "SQL";
  8391. DisplayName = "SQL Database Server";
  8392. Status = 2;
  8393. };
  8394. };
  8395. };
  8396. instance of Microsoft_EELTOCEntryInFile
  8397. {
  8398. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8399. Entry ="Microsoft_EELEntry='237'";
  8400. };
  8401. instance of Microsoft_EELEntry
  8402. {
  8403. EventId = "238";
  8404. SourceSubsystemType="SMS Log";
  8405. SourceSubsystemName ="Unknown";
  8406. SystemAbout = "rakeshb_2";
  8407. SystemFrom = "csood_i2";
  8408. DeliveredBy = "csood_i2";
  8409. Category="services";
  8410. Subcategory="sql server";
  8411. Priority = 3;
  8412. Severity = 1;
  8413. TimeGenerated = "19900121031424.131257+480";
  8414. LoggingTime = "20011212083816.176330+480";
  8415. RollupTime = "20011224091127.189788+480";
  8416. Message = "Message with key to search = 440644744";
  8417. RecordNumber = "238";
  8418. User = "amit";
  8419. Type = 6;
  8420. Classification = 4;
  8421. LogType = 1;
  8422. OriginalEvent = instance of __InstanceCreationEvent
  8423. { TargetInstance = instance of Win32_Service
  8424. {
  8425. Name = "SQL";
  8426. DisplayName = "SQL Database Server";
  8427. Status = 2;
  8428. };
  8429. };
  8430. };
  8431. instance of Microsoft_EELTOCEntryInFile
  8432. {
  8433. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8434. Entry ="Microsoft_EELEntry='238'";
  8435. };
  8436. instance of Microsoft_EELEntry
  8437. {
  8438. EventId = "239";
  8439. SourceSubsystemType="SMS Log";
  8440. SourceSubsystemName ="server";
  8441. SystemAbout = "csood_i2";
  8442. SystemFrom = "csood_i2";
  8443. DeliveredBy = "csood_i2";
  8444. Category="services";
  8445. Subcategory="sql server";
  8446. Priority = 2;
  8447. Severity = 4;
  8448. TimeGenerated = "19950606094528.141101+480";
  8449. LoggingTime = "20011228181112.165656+480";
  8450. RollupTime = "20001111094300.101776+480";
  8451. Message = "Message with key to search = 1159867126";
  8452. RecordNumber = "239";
  8453. User = "amit";
  8454. Type = 4;
  8455. Classification = 7;
  8456. LogType = 2;
  8457. OriginalEvent = instance of __InstanceModificationEvent
  8458. { TargetInstance = instance of Win32_Service
  8459. {
  8460. Name = "SQL";
  8461. DisplayName = "SQL Database Server";
  8462. Status = 4;
  8463. };
  8464. PreviousInstance = instance of Win32_Service
  8465. {
  8466. Name = "SQL";
  8467. DisplayName = "SQL Database Server";
  8468. Status = 2;
  8469. };
  8470. };
  8471. };
  8472. instance of Microsoft_EELTOCEntryInFile
  8473. {
  8474. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8475. Entry ="Microsoft_EELEntry='239'";
  8476. };
  8477. instance of Microsoft_EELEntry
  8478. {
  8479. EventId = "240";
  8480. SourceSubsystemType="NT Event Log";
  8481. SourceSubsystemName ="Unknown";
  8482. SystemAbout = "rakeshb_2";
  8483. SystemFrom = "csood_i2";
  8484. DeliveredBy = "abhishea_1";
  8485. Category="services";
  8486. Subcategory="sql server";
  8487. Priority = 3;
  8488. Severity = 2;
  8489. TimeGenerated = "19900113004007.111427+480";
  8490. LoggingTime = "20011220221713.110310+480";
  8491. RollupTime = "19920307145708.109826+480";
  8492. Message = "Message with key to search = 690424255";
  8493. RecordNumber = "240";
  8494. User = "amit";
  8495. Type = 0;
  8496. Classification = 4;
  8497. LogType = 1;
  8498. OriginalEvent = instance of __InstanceDeletionEvent
  8499. { TargetInstance = instance of Win32_Service
  8500. {
  8501. Name = "SQL";
  8502. DisplayName = "SQL Database Server";
  8503. Status = 2;
  8504. };
  8505. };
  8506. };
  8507. instance of Microsoft_EELTOCEntryInFile
  8508. {
  8509. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8510. Entry ="Microsoft_EELEntry='240'";
  8511. };
  8512. instance of Microsoft_EELEntry
  8513. {
  8514. EventId = "241";
  8515. SourceSubsystemType="SMS Log";
  8516. SourceSubsystemName ="Unknown";
  8517. SystemAbout = "rakeshb_2";
  8518. SystemFrom = "csood_i2";
  8519. DeliveredBy = "rakeshb_2";
  8520. Category="services";
  8521. Subcategory="sql server";
  8522. Priority = 1;
  8523. Severity = 2;
  8524. TimeGenerated = "19930416155007.109777+480";
  8525. LoggingTime = "19940517080003.113985+480";
  8526. RollupTime = "19960703162413.176837+480";
  8527. Message = "Message with key to search = 882368106";
  8528. RecordNumber = "241";
  8529. User = "rishi";
  8530. Type = 3;
  8531. Classification = 8;
  8532. LogType = 2;
  8533. OriginalEvent = instance of __InstanceCreationEvent
  8534. { TargetInstance = instance of Win32_Service
  8535. {
  8536. Name = "SQL";
  8537. DisplayName = "SQL Database Server";
  8538. Status = 4;
  8539. };
  8540. };
  8541. };
  8542. instance of Microsoft_EELTOCEntryInFile
  8543. {
  8544. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8545. Entry ="Microsoft_EELEntry='241'";
  8546. };
  8547. instance of Microsoft_EELEntry
  8548. {
  8549. EventId = "242";
  8550. SourceSubsystemType="NT Event Log";
  8551. SourceSubsystemName ="application";
  8552. SystemAbout = "csood_i2";
  8553. SystemFrom = "rakeshb_2";
  8554. DeliveredBy = "rakeshb_2";
  8555. Category="services";
  8556. Subcategory="sql server";
  8557. Priority = 2;
  8558. Severity = 1;
  8559. TimeGenerated = "19900101041918.128458+480";
  8560. LoggingTime = "20011228033112.129848+480";
  8561. RollupTime = "19991014175505.150432+480";
  8562. Message = "Message with key to search = 1042868858";
  8563. RecordNumber = "242";
  8564. User = "sriravi";
  8565. Type = 6;
  8566. Classification = 5;
  8567. LogType = 3;
  8568. OriginalEvent = instance of __InstanceModificationEvent
  8569. { TargetInstance = instance of Win32_Service
  8570. {
  8571. Name = "SQL";
  8572. DisplayName = "SQL Database Server";
  8573. Status = 1;
  8574. };
  8575. PreviousInstance = instance of Win32_Service
  8576. {
  8577. Name = "SQL";
  8578. DisplayName = "SQL Database Server";
  8579. Status = 1;
  8580. };
  8581. };
  8582. };
  8583. instance of Microsoft_EELTOCEntryInFile
  8584. {
  8585. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8586. Entry ="Microsoft_EELEntry='242'";
  8587. };
  8588. instance of Microsoft_EELEntry
  8589. {
  8590. EventId = "243";
  8591. SourceSubsystemType="NT Event Log";
  8592. SourceSubsystemName ="application";
  8593. SystemAbout = "csood_i2";
  8594. SystemFrom = "srinik_1";
  8595. DeliveredBy = "abhishea_1";
  8596. Category="services";
  8597. Subcategory="sql server";
  8598. Priority = 3;
  8599. Severity = 2;
  8600. TimeGenerated = "19900105150217.148954+480";
  8601. LoggingTime = "19930416183619.194813+480";
  8602. RollupTime = "19980913202925.166808+480";
  8603. Message = "Message with key to search = 1974604372";
  8604. RecordNumber = "243";
  8605. User = "N/A";
  8606. Type = 5;
  8607. Classification = 5;
  8608. LogType = 1;
  8609. OriginalEvent = instance of __InstanceDeletionEvent
  8610. { TargetInstance = instance of Win32_Service
  8611. {
  8612. Name = "SQL";
  8613. DisplayName = "SQL Database Server";
  8614. Status = 1;
  8615. };
  8616. };
  8617. };
  8618. instance of Microsoft_EELTOCEntryInFile
  8619. {
  8620. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8621. Entry ="Microsoft_EELEntry='243'";
  8622. };
  8623. instance of Microsoft_EELEntry
  8624. {
  8625. EventId = "244";
  8626. SourceSubsystemType="SMS Log";
  8627. SourceSubsystemName ="application";
  8628. SystemAbout = "abhishea_1";
  8629. SystemFrom = "rakeshb_2";
  8630. DeliveredBy = "csood_i2";
  8631. Category="services";
  8632. Subcategory="sql server";
  8633. Priority = 3;
  8634. Severity = 3;
  8635. TimeGenerated = "19900121233614.113585+480";
  8636. LoggingTime = "19970816011523.157778+480";
  8637. RollupTime = "19960719202527.102420+480";
  8638. Message = "Message with key to search = 415779567";
  8639. RecordNumber = "244";
  8640. User = "rishi";
  8641. Type = 3;
  8642. Classification = 6;
  8643. LogType = 1;
  8644. OriginalEvent = instance of __InstanceCreationEvent
  8645. { TargetInstance = instance of Win32_Service
  8646. {
  8647. Name = "SQL";
  8648. DisplayName = "SQL Database Server";
  8649. Status = 4;
  8650. };
  8651. };
  8652. };
  8653. instance of Microsoft_EELTOCEntryInFile
  8654. {
  8655. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8656. Entry ="Microsoft_EELEntry='244'";
  8657. };
  8658. instance of Microsoft_EELEntry
  8659. {
  8660. EventId = "245";
  8661. SourceSubsystemType="SMS Log";
  8662. SourceSubsystemName ="application";
  8663. SystemAbout = "rakeshb_2";
  8664. SystemFrom = "srinik_1";
  8665. DeliveredBy = "csood_i2";
  8666. Category="services";
  8667. Subcategory="sql server";
  8668. Priority = 2;
  8669. Severity = 3;
  8670. TimeGenerated = "19950614051805.192247+480";
  8671. LoggingTime = "19930412170624.194453+480";
  8672. RollupTime = "19970804192112.183785+480";
  8673. Message = "Message with key to search = 1402497325";
  8674. RecordNumber = "245";
  8675. User = "rishi";
  8676. Type = 1;
  8677. Classification = 3;
  8678. LogType = 1;
  8679. OriginalEvent = instance of __InstanceModificationEvent
  8680. { TargetInstance = instance of Win32_Service
  8681. {
  8682. Name = "SQL";
  8683. DisplayName = "SQL Database Server";
  8684. Status = 3;
  8685. };
  8686. PreviousInstance = instance of Win32_Service
  8687. {
  8688. Name = "SQL";
  8689. DisplayName = "SQL Database Server";
  8690. Status = 4;
  8691. };
  8692. };
  8693. };
  8694. instance of Microsoft_EELTOCEntryInFile
  8695. {
  8696. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8697. Entry ="Microsoft_EELEntry='245'";
  8698. };
  8699. instance of Microsoft_EELEntry
  8700. {
  8701. EventId = "246";
  8702. SourceSubsystemType="NT Event Log";
  8703. SourceSubsystemName ="server";
  8704. SystemAbout = "srinik_1";
  8705. SystemFrom = "abhishea_1";
  8706. DeliveredBy = "csood_i2";
  8707. Category="services";
  8708. Subcategory="sql server";
  8709. Priority = 3;
  8710. Severity = 4;
  8711. TimeGenerated = "19910214194512.136848+480";
  8712. LoggingTime = "19930420100402.188883+480";
  8713. RollupTime = "19960727164904.165899+480";
  8714. Message = "Message with key to search = 267928782";
  8715. RecordNumber = "246";
  8716. User = "amit";
  8717. Type = 1;
  8718. Classification = 4;
  8719. LogType = 2;
  8720. OriginalEvent = instance of __InstanceDeletionEvent
  8721. { TargetInstance = instance of Win32_Service
  8722. {
  8723. Name = "SQL";
  8724. DisplayName = "SQL Database Server";
  8725. Status = 2;
  8726. };
  8727. };
  8728. };
  8729. instance of Microsoft_EELTOCEntryInFile
  8730. {
  8731. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8732. Entry ="Microsoft_EELEntry='246'";
  8733. };
  8734. instance of Microsoft_EELEntry
  8735. {
  8736. EventId = "247";
  8737. SourceSubsystemType="SMS Log";
  8738. SourceSubsystemName ="application";
  8739. SystemAbout = "srinik_1";
  8740. SystemFrom = "csood_i2";
  8741. DeliveredBy = "abhishea_1";
  8742. Category="services";
  8743. Subcategory="sql server";
  8744. Priority = 2;
  8745. Severity = 4;
  8746. TimeGenerated = "19900113220012.188115+480";
  8747. LoggingTime = "19950622122607.184000+480";
  8748. RollupTime = "20001111113425.149973+480";
  8749. Message = "Message with key to search = 510444414";
  8750. RecordNumber = "247";
  8751. User = "rishi";
  8752. Type = 4;
  8753. Classification = 7;
  8754. LogType = 2;
  8755. OriginalEvent = instance of __InstanceCreationEvent
  8756. { TargetInstance = instance of Win32_Service
  8757. {
  8758. Name = "SQL";
  8759. DisplayName = "SQL Database Server";
  8760. Status = 2;
  8761. };
  8762. };
  8763. };
  8764. instance of Microsoft_EELTOCEntryInFile
  8765. {
  8766. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8767. Entry ="Microsoft_EELEntry='247'";
  8768. };
  8769. instance of Microsoft_EELEntry
  8770. {
  8771. EventId = "248";
  8772. SourceSubsystemType="SMS Log";
  8773. SourceSubsystemName ="application";
  8774. SystemAbout = "csood_i2";
  8775. SystemFrom = "csood_i2";
  8776. DeliveredBy = "abhishea_1";
  8777. Category="services";
  8778. Subcategory="sql server";
  8779. Priority = 1;
  8780. Severity = 3;
  8781. TimeGenerated = "19930412081110.141921+480";
  8782. LoggingTime = "19991022091123.115941+480";
  8783. RollupTime = "19980921223511.121983+480";
  8784. Message = "Message with key to search = 1669757553";
  8785. RecordNumber = "248";
  8786. User = "amit";
  8787. Type = 3;
  8788. Classification = 4;
  8789. LogType = 1;
  8790. OriginalEvent = instance of __InstanceModificationEvent
  8791. { TargetInstance = instance of Win32_Service
  8792. {
  8793. Name = "SQL";
  8794. DisplayName = "SQL Database Server";
  8795. Status = 1;
  8796. };
  8797. PreviousInstance = instance of Win32_Service
  8798. {
  8799. Name = "SQL";
  8800. DisplayName = "SQL Database Server";
  8801. Status = 1;
  8802. };
  8803. };
  8804. };
  8805. instance of Microsoft_EELTOCEntryInFile
  8806. {
  8807. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8808. Entry ="Microsoft_EELEntry='248'";
  8809. };
  8810. instance of Microsoft_EELEntry
  8811. {
  8812. EventId = "249";
  8813. SourceSubsystemType="SMS Log";
  8814. SourceSubsystemName ="Unknown";
  8815. SystemAbout = "srinik_1";
  8816. SystemFrom = "abhishea_1";
  8817. DeliveredBy = "rakeshb_2";
  8818. Category="services";
  8819. Subcategory="sql server";
  8820. Priority = 1;
  8821. Severity = 4;
  8822. TimeGenerated = "19960703125814.160281+480";
  8823. LoggingTime = "19930416052328.168391+480";
  8824. RollupTime = "19900117064501.118696+480";
  8825. Message = "Message with key to search = 1756296755";
  8826. RecordNumber = "249";
  8827. User = "amit";
  8828. Type = 2;
  8829. Classification = 8;
  8830. LogType = 3;
  8831. OriginalEvent = instance of __InstanceDeletionEvent
  8832. { TargetInstance = instance of Win32_Service
  8833. {
  8834. Name = "SQL";
  8835. DisplayName = "SQL Database Server";
  8836. Status = 3;
  8837. };
  8838. };
  8839. };
  8840. instance of Microsoft_EELTOCEntryInFile
  8841. {
  8842. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8843. Entry ="Microsoft_EELEntry='249'";
  8844. };
  8845. instance of Microsoft_EELEntry
  8846. {
  8847. EventId = "250";
  8848. SourceSubsystemType="SMS Log";
  8849. SourceSubsystemName ="application";
  8850. SystemAbout = "rakeshb_2";
  8851. SystemFrom = "csood_i2";
  8852. DeliveredBy = "csood_i2";
  8853. Category="services";
  8854. Subcategory="sql server";
  8855. Priority = 1;
  8856. Severity = 1;
  8857. TimeGenerated = "19930412165508.174980+480";
  8858. LoggingTime = "19960703154505.154569+480";
  8859. RollupTime = "19970820065210.156349+480";
  8860. Message = "Message with key to search = 184342497";
  8861. RecordNumber = "250";
  8862. User = "amit";
  8863. Type = 0;
  8864. Classification = 4;
  8865. LogType = 1;
  8866. OriginalEvent = instance of __InstanceCreationEvent
  8867. { TargetInstance = instance of Win32_Service
  8868. {
  8869. Name = "SQL";
  8870. DisplayName = "SQL Database Server";
  8871. Status = 1;
  8872. };
  8873. };
  8874. };
  8875. instance of Microsoft_EELTOCEntryInFile
  8876. {
  8877. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8878. Entry ="Microsoft_EELEntry='250'";
  8879. };
  8880. instance of Microsoft_EELEntry
  8881. {
  8882. EventId = "251";
  8883. SourceSubsystemType="SMS Log";
  8884. SourceSubsystemName ="Unknown";
  8885. SystemAbout = "rakeshb_2";
  8886. SystemFrom = "rakeshb_2";
  8887. DeliveredBy = "abhishea_1";
  8888. Category="services";
  8889. Subcategory="sql server";
  8890. Priority = 4;
  8891. Severity = 1;
  8892. TimeGenerated = "19910206192525.129115+480";
  8893. LoggingTime = "19980913005325.157067+480";
  8894. RollupTime = "19960707114815.179441+480";
  8895. Message = "Message with key to search = 1668950692";
  8896. RecordNumber = "251";
  8897. User = "amit";
  8898. Type = 3;
  8899. Classification = 8;
  8900. LogType = 3;
  8901. OriginalEvent = instance of __InstanceModificationEvent
  8902. { TargetInstance = instance of Win32_Service
  8903. {
  8904. Name = "SQL";
  8905. DisplayName = "SQL Database Server";
  8906. Status = 1;
  8907. };
  8908. PreviousInstance = instance of Win32_Service
  8909. {
  8910. Name = "SQL";
  8911. DisplayName = "SQL Database Server";
  8912. Status = 3;
  8913. };
  8914. };
  8915. };
  8916. instance of Microsoft_EELTOCEntryInFile
  8917. {
  8918. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  8919. Entry ="Microsoft_EELEntry='251'";
  8920. };
  8921. instance of Microsoft_EELEntry
  8922. {
  8923. EventId = "252";
  8924. SourceSubsystemType="NT Event Log";
  8925. SourceSubsystemName ="driver";
  8926. SystemAbout = "csood_i2";
  8927. SystemFrom = "csood_i2";
  8928. DeliveredBy = "rakeshb_2";
  8929. Category="services";
  8930. Subcategory="sql server";
  8931. Priority = 2;
  8932. Severity = 3;
  8933. TimeGenerated = "19930424151508.137555+480";
  8934. LoggingTime = "19950602014103.188349+480";
  8935. RollupTime = "20001127055515.156106+480";
  8936. Message = "Message with key to search = 1085375970";
  8937. RecordNumber = "252";
  8938. User = "rishi";
  8939. Type = 2;
  8940. Classification = 5;
  8941. LogType = 3;
  8942. OriginalEvent = instance of __InstanceDeletionEvent
  8943. { TargetInstance = instance of Win32_Service
  8944. {
  8945. Name = "SQL";
  8946. DisplayName = "SQL Database Server";
  8947. Status = 2;
  8948. };
  8949. };
  8950. };
  8951. instance of Microsoft_EELTOCEntryInFile
  8952. {
  8953. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  8954. Entry ="Microsoft_EELEntry='252'";
  8955. };
  8956. instance of Microsoft_EELEntry
  8957. {
  8958. EventId = "253";
  8959. SourceSubsystemType="NT Event Log";
  8960. SourceSubsystemName ="Unknown";
  8961. SystemAbout = "abhishea_1";
  8962. SystemFrom = "rakeshb_2";
  8963. DeliveredBy = "srinik_1";
  8964. Category="services";
  8965. Subcategory="sql server";
  8966. Priority = 1;
  8967. Severity = 3;
  8968. TimeGenerated = "19900113133314.168884+480";
  8969. LoggingTime = "19960723144725.111124+480";
  8970. RollupTime = "19930420170800.161722+480";
  8971. Message = "Message with key to search = 697381939";
  8972. RecordNumber = "253";
  8973. User = "amit";
  8974. Type = 1;
  8975. Classification = 8;
  8976. LogType = 3;
  8977. OriginalEvent = instance of __InstanceCreationEvent
  8978. { TargetInstance = instance of Win32_Service
  8979. {
  8980. Name = "SQL";
  8981. DisplayName = "SQL Database Server";
  8982. Status = 3;
  8983. };
  8984. };
  8985. };
  8986. instance of Microsoft_EELTOCEntryInFile
  8987. {
  8988. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  8989. Entry ="Microsoft_EELEntry='253'";
  8990. };
  8991. instance of Microsoft_EELEntry
  8992. {
  8993. EventId = "254";
  8994. SourceSubsystemType="SMS Log";
  8995. SourceSubsystemName ="application";
  8996. SystemAbout = "srinik_1";
  8997. SystemFrom = "csood_i2";
  8998. DeliveredBy = "rakeshb_2";
  8999. Category="services";
  9000. Subcategory="sql server";
  9001. Priority = 2;
  9002. Severity = 3;
  9003. TimeGenerated = "19920311230209.188109+480";
  9004. LoggingTime = "19920311124805.176141+480";
  9005. RollupTime = "19960703074609.142215+480";
  9006. Message = "Message with key to search = 79241407";
  9007. RecordNumber = "254";
  9008. User = "rishi";
  9009. Type = 4;
  9010. Classification = 8;
  9011. LogType = 1;
  9012. OriginalEvent = instance of __InstanceModificationEvent
  9013. { TargetInstance = instance of Win32_Service
  9014. {
  9015. Name = "SQL";
  9016. DisplayName = "SQL Database Server";
  9017. Status = 4;
  9018. };
  9019. PreviousInstance = instance of Win32_Service
  9020. {
  9021. Name = "SQL";
  9022. DisplayName = "SQL Database Server";
  9023. Status = 4;
  9024. };
  9025. };
  9026. };
  9027. instance of Microsoft_EELTOCEntryInFile
  9028. {
  9029. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9030. Entry ="Microsoft_EELEntry='254'";
  9031. };
  9032. instance of Microsoft_EELEntry
  9033. {
  9034. EventId = "255";
  9035. SourceSubsystemType="NT Event Log";
  9036. SourceSubsystemName ="application";
  9037. SystemAbout = "rakeshb_2";
  9038. SystemFrom = "csood_i2";
  9039. DeliveredBy = "rakeshb_2";
  9040. Category="services";
  9041. Subcategory="sql server";
  9042. Priority = 4;
  9043. Severity = 4;
  9044. TimeGenerated = "19910214083928.187209+480";
  9045. LoggingTime = "19950606201104.128691+480";
  9046. RollupTime = "19950602220911.181700+480";
  9047. Message = "Message with key to search = 736775195";
  9048. RecordNumber = "255";
  9049. User = "N/A";
  9050. Type = 5;
  9051. Classification = 4;
  9052. LogType = 2;
  9053. OriginalEvent = instance of __InstanceDeletionEvent
  9054. { TargetInstance = instance of Win32_Service
  9055. {
  9056. Name = "SQL";
  9057. DisplayName = "SQL Database Server";
  9058. Status = 3;
  9059. };
  9060. };
  9061. };
  9062. instance of Microsoft_EELTOCEntryInFile
  9063. {
  9064. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9065. Entry ="Microsoft_EELEntry='255'";
  9066. };
  9067. instance of Microsoft_EELEntry
  9068. {
  9069. EventId = "256";
  9070. SourceSubsystemType="NT Event Log";
  9071. SourceSubsystemName ="driver";
  9072. SystemAbout = "srinik_1";
  9073. SystemFrom = "srinik_1";
  9074. DeliveredBy = "csood_i2";
  9075. Category="services";
  9076. Subcategory="sql server";
  9077. Priority = 2;
  9078. Severity = 2;
  9079. TimeGenerated = "19930416121409.128483+480";
  9080. LoggingTime = "19970824135322.157168+480";
  9081. RollupTime = "19920311160424.170045+480";
  9082. Message = "Message with key to search = 1848382249";
  9083. RecordNumber = "256";
  9084. User = "N/A";
  9085. Type = 4;
  9086. Classification = 4;
  9087. LogType = 1;
  9088. OriginalEvent = instance of __InstanceCreationEvent
  9089. { TargetInstance = instance of Win32_Service
  9090. {
  9091. Name = "SQL";
  9092. DisplayName = "SQL Database Server";
  9093. Status = 4;
  9094. };
  9095. };
  9096. };
  9097. instance of Microsoft_EELTOCEntryInFile
  9098. {
  9099. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9100. Entry ="Microsoft_EELEntry='256'";
  9101. };
  9102. instance of Microsoft_EELEntry
  9103. {
  9104. EventId = "257";
  9105. SourceSubsystemType="SMS Log";
  9106. SourceSubsystemName ="server";
  9107. SystemAbout = "rakeshb_2";
  9108. SystemFrom = "srinik_1";
  9109. DeliveredBy = "abhishea_1";
  9110. Category="services";
  9111. Subcategory="sql server";
  9112. Priority = 2;
  9113. Severity = 4;
  9114. TimeGenerated = "19900109003805.191564+480";
  9115. LoggingTime = "19991018013222.185508+480";
  9116. RollupTime = "19930424175617.195881+480";
  9117. Message = "Message with key to search = 1372729646";
  9118. RecordNumber = "257";
  9119. User = "N/A";
  9120. Type = 6;
  9121. Classification = 7;
  9122. LogType = 2;
  9123. OriginalEvent = instance of __InstanceModificationEvent
  9124. { TargetInstance = instance of Win32_Service
  9125. {
  9126. Name = "SQL";
  9127. DisplayName = "SQL Database Server";
  9128. Status = 4;
  9129. };
  9130. PreviousInstance = instance of Win32_Service
  9131. {
  9132. Name = "SQL";
  9133. DisplayName = "SQL Database Server";
  9134. Status = 3;
  9135. };
  9136. };
  9137. };
  9138. instance of Microsoft_EELTOCEntryInFile
  9139. {
  9140. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9141. Entry ="Microsoft_EELEntry='257'";
  9142. };
  9143. instance of Microsoft_EELEntry
  9144. {
  9145. EventId = "258";
  9146. SourceSubsystemType="NT Event Log";
  9147. SourceSubsystemName ="Unknown";
  9148. SystemAbout = "abhishea_1";
  9149. SystemFrom = "srinik_1";
  9150. DeliveredBy = "csood_i2";
  9151. Category="services";
  9152. Subcategory="sql server";
  9153. Priority = 1;
  9154. Severity = 3;
  9155. TimeGenerated = "19910210172106.171427+480";
  9156. LoggingTime = "20011216091419.192244+480";
  9157. RollupTime = "19940509145511.175241+480";
  9158. Message = "Message with key to search = 111981550";
  9159. RecordNumber = "258";
  9160. User = "amit";
  9161. Type = 6;
  9162. Classification = 8;
  9163. LogType = 1;
  9164. OriginalEvent = instance of __InstanceDeletionEvent
  9165. { TargetInstance = instance of Win32_Service
  9166. {
  9167. Name = "SQL";
  9168. DisplayName = "SQL Database Server";
  9169. Status = 2;
  9170. };
  9171. };
  9172. };
  9173. instance of Microsoft_EELTOCEntryInFile
  9174. {
  9175. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9176. Entry ="Microsoft_EELEntry='258'";
  9177. };
  9178. instance of Microsoft_EELEntry
  9179. {
  9180. EventId = "259";
  9181. SourceSubsystemType="NT Event Log";
  9182. SourceSubsystemName ="driver";
  9183. SystemAbout = "rakeshb_2";
  9184. SystemFrom = "abhishea_1";
  9185. DeliveredBy = "srinik_1";
  9186. Category="services";
  9187. Subcategory="sql server";
  9188. Priority = 4;
  9189. Severity = 1;
  9190. TimeGenerated = "19920311005307.136072+480";
  9191. LoggingTime = "20011208152300.192110+480";
  9192. RollupTime = "19991006042028.136036+480";
  9193. Message = "Message with key to search = 791366353";
  9194. RecordNumber = "259";
  9195. User = "sriravi";
  9196. Type = 4;
  9197. Classification = 6;
  9198. LogType = 1;
  9199. OriginalEvent = instance of __InstanceCreationEvent
  9200. { TargetInstance = instance of Win32_Service
  9201. {
  9202. Name = "SQL";
  9203. DisplayName = "SQL Database Server";
  9204. Status = 4;
  9205. };
  9206. };
  9207. };
  9208. instance of Microsoft_EELTOCEntryInFile
  9209. {
  9210. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9211. Entry ="Microsoft_EELEntry='259'";
  9212. };
  9213. instance of Microsoft_EELEntry
  9214. {
  9215. EventId = "260";
  9216. SourceSubsystemType="NT Event Log";
  9217. SourceSubsystemName ="Unknown";
  9218. SystemAbout = "csood_i2";
  9219. SystemFrom = "rakeshb_2";
  9220. DeliveredBy = "srinik_1";
  9221. Category="services";
  9222. Subcategory="sql server";
  9223. Priority = 3;
  9224. Severity = 1;
  9225. TimeGenerated = "19910226074306.115031+480";
  9226. LoggingTime = "19970812162711.114853+480";
  9227. RollupTime = "19930412062005.102448+480";
  9228. Message = "Message with key to search = 1344296033";
  9229. RecordNumber = "260";
  9230. User = "N/A";
  9231. Type = 6;
  9232. Classification = 4;
  9233. LogType = 2;
  9234. OriginalEvent = instance of __InstanceModificationEvent
  9235. { TargetInstance = instance of Win32_Service
  9236. {
  9237. Name = "SQL";
  9238. DisplayName = "SQL Database Server";
  9239. Status = 2;
  9240. };
  9241. PreviousInstance = instance of Win32_Service
  9242. {
  9243. Name = "SQL";
  9244. DisplayName = "SQL Database Server";
  9245. Status = 4;
  9246. };
  9247. };
  9248. };
  9249. instance of Microsoft_EELTOCEntryInFile
  9250. {
  9251. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9252. Entry ="Microsoft_EELEntry='260'";
  9253. };
  9254. instance of Microsoft_EELEntry
  9255. {
  9256. EventId = "261";
  9257. SourceSubsystemType="NT Event Log";
  9258. SourceSubsystemName ="driver";
  9259. SystemAbout = "csood_i2";
  9260. SystemFrom = "csood_i2";
  9261. DeliveredBy = "srinik_1";
  9262. Category="services";
  9263. Subcategory="sql server";
  9264. Priority = 2;
  9265. Severity = 4;
  9266. TimeGenerated = "19940501083717.105478+480";
  9267. LoggingTime = "19991006080706.160314+480";
  9268. RollupTime = "19991002073722.136447+480";
  9269. Message = "Message with key to search = 58830843";
  9270. RecordNumber = "261";
  9271. User = "sriravi";
  9272. Type = 3;
  9273. Classification = 7;
  9274. LogType = 1;
  9275. OriginalEvent = instance of __InstanceDeletionEvent
  9276. { TargetInstance = instance of Win32_Service
  9277. {
  9278. Name = "SQL";
  9279. DisplayName = "SQL Database Server";
  9280. Status = 2;
  9281. };
  9282. };
  9283. };
  9284. instance of Microsoft_EELTOCEntryInFile
  9285. {
  9286. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9287. Entry ="Microsoft_EELEntry='261'";
  9288. };
  9289. instance of Microsoft_EELEntry
  9290. {
  9291. EventId = "262";
  9292. SourceSubsystemType="NT Event Log";
  9293. SourceSubsystemName ="application";
  9294. SystemAbout = "rakeshb_2";
  9295. SystemFrom = "srinik_1";
  9296. DeliveredBy = "csood_i2";
  9297. Category="services";
  9298. Subcategory="sql server";
  9299. Priority = 3;
  9300. Severity = 2;
  9301. TimeGenerated = "19910222131123.160336+480";
  9302. LoggingTime = "19960727184111.182369+480";
  9303. RollupTime = "19930420042817.150313+480";
  9304. Message = "Message with key to search = 2104434731";
  9305. RecordNumber = "262";
  9306. User = "N/A";
  9307. Type = 1;
  9308. Classification = 5;
  9309. LogType = 3;
  9310. OriginalEvent = instance of __InstanceCreationEvent
  9311. { TargetInstance = instance of Win32_Service
  9312. {
  9313. Name = "SQL";
  9314. DisplayName = "SQL Database Server";
  9315. Status = 2;
  9316. };
  9317. };
  9318. };
  9319. instance of Microsoft_EELTOCEntryInFile
  9320. {
  9321. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9322. Entry ="Microsoft_EELEntry='262'";
  9323. };
  9324. instance of Microsoft_EELEntry
  9325. {
  9326. EventId = "263";
  9327. SourceSubsystemType="SMS Log";
  9328. SourceSubsystemName ="Unknown";
  9329. SystemAbout = "csood_i2";
  9330. SystemFrom = "rakeshb_2";
  9331. DeliveredBy = "srinik_1";
  9332. Category="services";
  9333. Subcategory="sql server";
  9334. Priority = 4;
  9335. Severity = 2;
  9336. TimeGenerated = "19920311141721.160437+480";
  9337. LoggingTime = "20001115213821.170449+480";
  9338. RollupTime = "19960719191115.129516+480";
  9339. Message = "Message with key to search = 81953178";
  9340. RecordNumber = "263";
  9341. User = "sriravi";
  9342. Type = 6;
  9343. Classification = 3;
  9344. LogType = 3;
  9345. OriginalEvent = instance of __InstanceModificationEvent
  9346. { TargetInstance = instance of Win32_Service
  9347. {
  9348. Name = "SQL";
  9349. DisplayName = "SQL Database Server";
  9350. Status = 1;
  9351. };
  9352. PreviousInstance = instance of Win32_Service
  9353. {
  9354. Name = "SQL";
  9355. DisplayName = "SQL Database Server";
  9356. Status = 4;
  9357. };
  9358. };
  9359. };
  9360. instance of Microsoft_EELTOCEntryInFile
  9361. {
  9362. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9363. Entry ="Microsoft_EELEntry='263'";
  9364. };
  9365. instance of Microsoft_EELEntry
  9366. {
  9367. EventId = "264";
  9368. SourceSubsystemType="NT Event Log";
  9369. SourceSubsystemName ="driver";
  9370. SystemAbout = "csood_i2";
  9371. SystemFrom = "abhishea_1";
  9372. DeliveredBy = "srinik_1";
  9373. Category="services";
  9374. Subcategory="sql server";
  9375. Priority = 2;
  9376. Severity = 2;
  9377. TimeGenerated = "19930404194117.102896+480";
  9378. LoggingTime = "20011220065917.176276+480";
  9379. RollupTime = "19980901170301.104339+480";
  9380. Message = "Message with key to search = 1341084576";
  9381. RecordNumber = "264";
  9382. User = "N/A";
  9383. Type = 3;
  9384. Classification = 4;
  9385. LogType = 1;
  9386. OriginalEvent = instance of __InstanceDeletionEvent
  9387. { TargetInstance = instance of Win32_Service
  9388. {
  9389. Name = "SQL";
  9390. DisplayName = "SQL Database Server";
  9391. Status = 1;
  9392. };
  9393. };
  9394. };
  9395. instance of Microsoft_EELTOCEntryInFile
  9396. {
  9397. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9398. Entry ="Microsoft_EELEntry='264'";
  9399. };
  9400. instance of Microsoft_EELEntry
  9401. {
  9402. EventId = "265";
  9403. SourceSubsystemType="SMS Log";
  9404. SourceSubsystemName ="driver";
  9405. SystemAbout = "rakeshb_2";
  9406. SystemFrom = "rakeshb_2";
  9407. DeliveredBy = "abhishea_1";
  9408. Category="services";
  9409. Subcategory="sql server";
  9410. Priority = 3;
  9411. Severity = 1;
  9412. TimeGenerated = "19900121055303.164864+480";
  9413. LoggingTime = "19930424064223.130893+480";
  9414. RollupTime = "19930404004219.123150+480";
  9415. Message = "Message with key to search = 350652378";
  9416. RecordNumber = "265";
  9417. User = "rishi";
  9418. Type = 6;
  9419. Classification = 4;
  9420. LogType = 1;
  9421. OriginalEvent = instance of __InstanceCreationEvent
  9422. { TargetInstance = instance of Win32_Service
  9423. {
  9424. Name = "SQL";
  9425. DisplayName = "SQL Database Server";
  9426. Status = 4;
  9427. };
  9428. };
  9429. };
  9430. instance of Microsoft_EELTOCEntryInFile
  9431. {
  9432. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9433. Entry ="Microsoft_EELEntry='265'";
  9434. };
  9435. instance of Microsoft_EELEntry
  9436. {
  9437. EventId = "266";
  9438. SourceSubsystemType="NT Event Log";
  9439. SourceSubsystemName ="Unknown";
  9440. SystemAbout = "rakeshb_2";
  9441. SystemFrom = "csood_i2";
  9442. DeliveredBy = "srinik_1";
  9443. Category="services";
  9444. Subcategory="sql server";
  9445. Priority = 2;
  9446. Severity = 3;
  9447. TimeGenerated = "19900109070602.111653+480";
  9448. LoggingTime = "19970820034800.197499+480";
  9449. RollupTime = "19930404210008.163736+480";
  9450. Message = "Message with key to search = 1010864729";
  9451. RecordNumber = "266";
  9452. User = "amit";
  9453. Type = 4;
  9454. Classification = 2;
  9455. LogType = 1;
  9456. OriginalEvent = instance of __InstanceModificationEvent
  9457. { TargetInstance = instance of Win32_Service
  9458. {
  9459. Name = "SQL";
  9460. DisplayName = "SQL Database Server";
  9461. Status = 3;
  9462. };
  9463. PreviousInstance = instance of Win32_Service
  9464. {
  9465. Name = "SQL";
  9466. DisplayName = "SQL Database Server";
  9467. Status = 3;
  9468. };
  9469. };
  9470. };
  9471. instance of Microsoft_EELTOCEntryInFile
  9472. {
  9473. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9474. Entry ="Microsoft_EELEntry='266'";
  9475. };
  9476. instance of Microsoft_EELEntry
  9477. {
  9478. EventId = "267";
  9479. SourceSubsystemType="NT Event Log";
  9480. SourceSubsystemName ="Unknown";
  9481. SystemAbout = "rakeshb_2";
  9482. SystemFrom = "csood_i2";
  9483. DeliveredBy = "rakeshb_2";
  9484. Category="services";
  9485. Subcategory="sql server";
  9486. Priority = 2;
  9487. Severity = 2;
  9488. TimeGenerated = "19930416144423.132896+480";
  9489. LoggingTime = "20011208154715.184836+480";
  9490. RollupTime = "19950618121815.117076+480";
  9491. Message = "Message with key to search = 1578743900";
  9492. RecordNumber = "267";
  9493. User = "amit";
  9494. Type = 4;
  9495. Classification = 5;
  9496. LogType = 1;
  9497. OriginalEvent = instance of __InstanceDeletionEvent
  9498. { TargetInstance = instance of Win32_Service
  9499. {
  9500. Name = "SQL";
  9501. DisplayName = "SQL Database Server";
  9502. Status = 1;
  9503. };
  9504. };
  9505. };
  9506. instance of Microsoft_EELTOCEntryInFile
  9507. {
  9508. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9509. Entry ="Microsoft_EELEntry='267'";
  9510. };
  9511. instance of Microsoft_EELEntry
  9512. {
  9513. EventId = "268";
  9514. SourceSubsystemType="SMS Log";
  9515. SourceSubsystemName ="application";
  9516. SystemAbout = "abhishea_1";
  9517. SystemFrom = "rakeshb_2";
  9518. DeliveredBy = "csood_i2";
  9519. Category="services";
  9520. Subcategory="sql server";
  9521. Priority = 4;
  9522. Severity = 2;
  9523. TimeGenerated = "19910210051325.137673+480";
  9524. LoggingTime = "20001103211217.163671+480";
  9525. RollupTime = "19920315173120.135357+480";
  9526. Message = "Message with key to search = 1383099683";
  9527. RecordNumber = "268";
  9528. User = "sriravi";
  9529. Type = 5;
  9530. Classification = 6;
  9531. LogType = 1;
  9532. OriginalEvent = instance of __InstanceCreationEvent
  9533. { TargetInstance = instance of Win32_Service
  9534. {
  9535. Name = "SQL";
  9536. DisplayName = "SQL Database Server";
  9537. Status = 3;
  9538. };
  9539. };
  9540. };
  9541. instance of Microsoft_EELTOCEntryInFile
  9542. {
  9543. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9544. Entry ="Microsoft_EELEntry='268'";
  9545. };
  9546. instance of Microsoft_EELEntry
  9547. {
  9548. EventId = "269";
  9549. SourceSubsystemType="SMS Log";
  9550. SourceSubsystemName ="driver";
  9551. SystemAbout = "abhishea_1";
  9552. SystemFrom = "csood_i2";
  9553. DeliveredBy = "rakeshb_2";
  9554. Category="services";
  9555. Subcategory="sql server";
  9556. Priority = 4;
  9557. Severity = 3;
  9558. TimeGenerated = "19920307093917.143582+480";
  9559. LoggingTime = "20001127043123.109196+480";
  9560. RollupTime = "19960723105310.159401+480";
  9561. Message = "Message with key to search = 707154310";
  9562. RecordNumber = "269";
  9563. User = "N/A";
  9564. Type = 0;
  9565. Classification = 8;
  9566. LogType = 3;
  9567. OriginalEvent = instance of __InstanceModificationEvent
  9568. { TargetInstance = instance of Win32_Service
  9569. {
  9570. Name = "SQL";
  9571. DisplayName = "SQL Database Server";
  9572. Status = 4;
  9573. };
  9574. PreviousInstance = instance of Win32_Service
  9575. {
  9576. Name = "SQL";
  9577. DisplayName = "SQL Database Server";
  9578. Status = 4;
  9579. };
  9580. };
  9581. };
  9582. instance of Microsoft_EELTOCEntryInFile
  9583. {
  9584. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9585. Entry ="Microsoft_EELEntry='269'";
  9586. };
  9587. instance of Microsoft_EELEntry
  9588. {
  9589. EventId = "270";
  9590. SourceSubsystemType="SMS Log";
  9591. SourceSubsystemName ="driver";
  9592. SystemAbout = "csood_i2";
  9593. SystemFrom = "srinik_1";
  9594. DeliveredBy = "csood_i2";
  9595. Category="services";
  9596. Subcategory="sql server";
  9597. Priority = 4;
  9598. Severity = 2;
  9599. TimeGenerated = "19960703055200.132165+480";
  9600. LoggingTime = "19940525202721.157505+480";
  9601. RollupTime = "19970824214225.148851+480";
  9602. Message = "Message with key to search = 1375684663";
  9603. RecordNumber = "270";
  9604. User = "N/A";
  9605. Type = 6;
  9606. Classification = 7;
  9607. LogType = 2;
  9608. OriginalEvent = instance of __InstanceDeletionEvent
  9609. { TargetInstance = instance of Win32_Service
  9610. {
  9611. Name = "SQL";
  9612. DisplayName = "SQL Database Server";
  9613. Status = 4;
  9614. };
  9615. };
  9616. };
  9617. instance of Microsoft_EELTOCEntryInFile
  9618. {
  9619. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9620. Entry ="Microsoft_EELEntry='270'";
  9621. };
  9622. instance of Microsoft_EELEntry
  9623. {
  9624. EventId = "271";
  9625. SourceSubsystemType="NT Event Log";
  9626. SourceSubsystemName ="driver";
  9627. SystemAbout = "csood_i2";
  9628. SystemFrom = "abhishea_1";
  9629. DeliveredBy = "rakeshb_2";
  9630. Category="services";
  9631. Subcategory="sql server";
  9632. Priority = 1;
  9633. Severity = 4;
  9634. TimeGenerated = "19940521150919.118955+480";
  9635. LoggingTime = "19980917202902.184174+480";
  9636. RollupTime = "19950622061226.147502+480";
  9637. Message = "Message with key to search = 143286054";
  9638. RecordNumber = "271";
  9639. User = "sriravi";
  9640. Type = 3;
  9641. Classification = 2;
  9642. LogType = 2;
  9643. OriginalEvent = instance of __InstanceCreationEvent
  9644. { TargetInstance = instance of Win32_Service
  9645. {
  9646. Name = "SQL";
  9647. DisplayName = "SQL Database Server";
  9648. Status = 2;
  9649. };
  9650. };
  9651. };
  9652. instance of Microsoft_EELTOCEntryInFile
  9653. {
  9654. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9655. Entry ="Microsoft_EELEntry='271'";
  9656. };
  9657. instance of Microsoft_EELEntry
  9658. {
  9659. EventId = "272";
  9660. SourceSubsystemType="SMS Log";
  9661. SourceSubsystemName ="Unknown";
  9662. SystemAbout = "csood_i2";
  9663. SystemFrom = "rakeshb_2";
  9664. DeliveredBy = "csood_i2";
  9665. Category="services";
  9666. Subcategory="sql server";
  9667. Priority = 4;
  9668. Severity = 3;
  9669. TimeGenerated = "19940513091917.125823+480";
  9670. LoggingTime = "20001123125225.185614+480";
  9671. RollupTime = "19940525211019.196444+480";
  9672. Message = "Message with key to search = 1824174673";
  9673. RecordNumber = "272";
  9674. User = "amit";
  9675. Type = 3;
  9676. Classification = 5;
  9677. LogType = 3;
  9678. OriginalEvent = instance of __InstanceModificationEvent
  9679. { TargetInstance = instance of Win32_Service
  9680. {
  9681. Name = "SQL";
  9682. DisplayName = "SQL Database Server";
  9683. Status = 2;
  9684. };
  9685. PreviousInstance = instance of Win32_Service
  9686. {
  9687. Name = "SQL";
  9688. DisplayName = "SQL Database Server";
  9689. Status = 1;
  9690. };
  9691. };
  9692. };
  9693. instance of Microsoft_EELTOCEntryInFile
  9694. {
  9695. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9696. Entry ="Microsoft_EELEntry='272'";
  9697. };
  9698. instance of Microsoft_EELEntry
  9699. {
  9700. EventId = "273";
  9701. SourceSubsystemType="SMS Log";
  9702. SourceSubsystemName ="driver";
  9703. SystemAbout = "srinik_1";
  9704. SystemFrom = "rakeshb_2";
  9705. DeliveredBy = "rakeshb_2";
  9706. Category="services";
  9707. Subcategory="sql server";
  9708. Priority = 2;
  9709. Severity = 3;
  9710. TimeGenerated = "19900113220214.134771+480";
  9711. LoggingTime = "19991026132027.171428+480";
  9712. RollupTime = "19960719111519.117085+480";
  9713. Message = "Message with key to search = 1985133682";
  9714. RecordNumber = "273";
  9715. User = "rishi";
  9716. Type = 3;
  9717. Classification = 2;
  9718. LogType = 3;
  9719. OriginalEvent = instance of __InstanceDeletionEvent
  9720. { TargetInstance = instance of Win32_Service
  9721. {
  9722. Name = "SQL";
  9723. DisplayName = "SQL Database Server";
  9724. Status = 4;
  9725. };
  9726. };
  9727. };
  9728. instance of Microsoft_EELTOCEntryInFile
  9729. {
  9730. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9731. Entry ="Microsoft_EELEntry='273'";
  9732. };
  9733. instance of Microsoft_EELEntry
  9734. {
  9735. EventId = "274";
  9736. SourceSubsystemType="NT Event Log";
  9737. SourceSubsystemName ="Unknown";
  9738. SystemAbout = "rakeshb_2";
  9739. SystemFrom = "srinik_1";
  9740. DeliveredBy = "abhishea_1";
  9741. Category="services";
  9742. Subcategory="sql server";
  9743. Priority = 4;
  9744. Severity = 4;
  9745. TimeGenerated = "19960707031013.106082+480";
  9746. LoggingTime = "19950614075108.195513+480";
  9747. RollupTime = "19920315063713.128371+480";
  9748. Message = "Message with key to search = 188727594";
  9749. RecordNumber = "274";
  9750. User = "sriravi";
  9751. Type = 0;
  9752. Classification = 2;
  9753. LogType = 2;
  9754. OriginalEvent = instance of __InstanceCreationEvent
  9755. { TargetInstance = instance of Win32_Service
  9756. {
  9757. Name = "SQL";
  9758. DisplayName = "SQL Database Server";
  9759. Status = 1;
  9760. };
  9761. };
  9762. };
  9763. instance of Microsoft_EELTOCEntryInFile
  9764. {
  9765. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9766. Entry ="Microsoft_EELEntry='274'";
  9767. };
  9768. instance of Microsoft_EELEntry
  9769. {
  9770. EventId = "275";
  9771. SourceSubsystemType="NT Event Log";
  9772. SourceSubsystemName ="driver";
  9773. SystemAbout = "srinik_1";
  9774. SystemFrom = "rakeshb_2";
  9775. DeliveredBy = "csood_i2";
  9776. Category="services";
  9777. Subcategory="sql server";
  9778. Priority = 4;
  9779. Severity = 3;
  9780. TimeGenerated = "19940509184114.142238+480";
  9781. LoggingTime = "19980901194405.142145+480";
  9782. RollupTime = "19950610000013.153408+480";
  9783. Message = "Message with key to search = 1409469438";
  9784. RecordNumber = "275";
  9785. User = "amit";
  9786. Type = 5;
  9787. Classification = 6;
  9788. LogType = 1;
  9789. OriginalEvent = instance of __InstanceModificationEvent
  9790. { TargetInstance = instance of Win32_Service
  9791. {
  9792. Name = "SQL";
  9793. DisplayName = "SQL Database Server";
  9794. Status = 4;
  9795. };
  9796. PreviousInstance = instance of Win32_Service
  9797. {
  9798. Name = "SQL";
  9799. DisplayName = "SQL Database Server";
  9800. Status = 1;
  9801. };
  9802. };
  9803. };
  9804. instance of Microsoft_EELTOCEntryInFile
  9805. {
  9806. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9807. Entry ="Microsoft_EELEntry='275'";
  9808. };
  9809. instance of Microsoft_EELEntry
  9810. {
  9811. EventId = "276";
  9812. SourceSubsystemType="SMS Log";
  9813. SourceSubsystemName ="driver";
  9814. SystemAbout = "csood_i2";
  9815. SystemFrom = "csood_i2";
  9816. DeliveredBy = "csood_i2";
  9817. Category="services";
  9818. Subcategory="sql server";
  9819. Priority = 3;
  9820. Severity = 2;
  9821. TimeGenerated = "19900109044919.117477+480";
  9822. LoggingTime = "20011212020022.176035+480";
  9823. RollupTime = "19920311160424.170045+480";
  9824. Message = "Message with key to search = 2071297603";
  9825. RecordNumber = "276";
  9826. User = "amit";
  9827. Type = 5;
  9828. Classification = 3;
  9829. LogType = 3;
  9830. OriginalEvent = instance of __InstanceDeletionEvent
  9831. { TargetInstance = instance of Win32_Service
  9832. {
  9833. Name = "SQL";
  9834. DisplayName = "SQL Database Server";
  9835. Status = 4;
  9836. };
  9837. };
  9838. };
  9839. instance of Microsoft_EELTOCEntryInFile
  9840. {
  9841. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9842. Entry ="Microsoft_EELEntry='276'";
  9843. };
  9844. instance of Microsoft_EELEntry
  9845. {
  9846. EventId = "277";
  9847. SourceSubsystemType="SMS Log";
  9848. SourceSubsystemName ="Unknown";
  9849. SystemAbout = "rakeshb_2";
  9850. SystemFrom = "abhishea_1";
  9851. DeliveredBy = "csood_i2";
  9852. Category="services";
  9853. Subcategory="sql server";
  9854. Priority = 4;
  9855. Severity = 4;
  9856. TimeGenerated = "19970808155926.124369+480";
  9857. LoggingTime = "19920327174315.175589+480";
  9858. RollupTime = "19940505223702.135315+480";
  9859. Message = "Message with key to search = 1770849024";
  9860. RecordNumber = "277";
  9861. User = "sriravi";
  9862. Type = 3;
  9863. Classification = 3;
  9864. LogType = 1;
  9865. OriginalEvent = instance of __InstanceCreationEvent
  9866. { TargetInstance = instance of Win32_Service
  9867. {
  9868. Name = "SQL";
  9869. DisplayName = "SQL Database Server";
  9870. Status = 4;
  9871. };
  9872. };
  9873. };
  9874. instance of Microsoft_EELTOCEntryInFile
  9875. {
  9876. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9877. Entry ="Microsoft_EELEntry='277'";
  9878. };
  9879. instance of Microsoft_EELEntry
  9880. {
  9881. EventId = "278";
  9882. SourceSubsystemType="SMS Log";
  9883. SourceSubsystemName ="Unknown";
  9884. SystemAbout = "srinik_1";
  9885. SystemFrom = "abhishea_1";
  9886. DeliveredBy = "srinik_1";
  9887. Category="services";
  9888. Subcategory="sql server";
  9889. Priority = 2;
  9890. Severity = 3;
  9891. TimeGenerated = "19910226114613.126230+480";
  9892. LoggingTime = "19900121041809.135008+480";
  9893. RollupTime = "19980905121112.161787+480";
  9894. Message = "Message with key to search = 1887656114";
  9895. RecordNumber = "278";
  9896. User = "sriravi";
  9897. Type = 5;
  9898. Classification = 4;
  9899. LogType = 2;
  9900. OriginalEvent = instance of __InstanceModificationEvent
  9901. { TargetInstance = instance of Win32_Service
  9902. {
  9903. Name = "SQL";
  9904. DisplayName = "SQL Database Server";
  9905. Status = 4;
  9906. };
  9907. PreviousInstance = instance of Win32_Service
  9908. {
  9909. Name = "SQL";
  9910. DisplayName = "SQL Database Server";
  9911. Status = 3;
  9912. };
  9913. };
  9914. };
  9915. instance of Microsoft_EELTOCEntryInFile
  9916. {
  9917. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  9918. Entry ="Microsoft_EELEntry='278'";
  9919. };
  9920. instance of Microsoft_EELEntry
  9921. {
  9922. EventId = "279";
  9923. SourceSubsystemType="NT Event Log";
  9924. SourceSubsystemName ="server";
  9925. SystemAbout = "rakeshb_2";
  9926. SystemFrom = "abhishea_1";
  9927. DeliveredBy = "srinik_1";
  9928. Category="services";
  9929. Subcategory="sql server";
  9930. Priority = 3;
  9931. Severity = 3;
  9932. TimeGenerated = "19900109151800.108936+480";
  9933. LoggingTime = "20011212164428.120641+480";
  9934. RollupTime = "19920327090920.132951+480";
  9935. Message = "Message with key to search = 809386397";
  9936. RecordNumber = "279";
  9937. User = "N/A";
  9938. Type = 4;
  9939. Classification = 1;
  9940. LogType = 1;
  9941. OriginalEvent = instance of __InstanceDeletionEvent
  9942. { TargetInstance = instance of Win32_Service
  9943. {
  9944. Name = "SQL";
  9945. DisplayName = "SQL Database Server";
  9946. Status = 4;
  9947. };
  9948. };
  9949. };
  9950. instance of Microsoft_EELTOCEntryInFile
  9951. {
  9952. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  9953. Entry ="Microsoft_EELEntry='279'";
  9954. };
  9955. instance of Microsoft_EELEntry
  9956. {
  9957. EventId = "280";
  9958. SourceSubsystemType="NT Event Log";
  9959. SourceSubsystemName ="Unknown";
  9960. SystemAbout = "abhishea_1";
  9961. SystemFrom = "abhishea_1";
  9962. DeliveredBy = "abhishea_1";
  9963. Category="services";
  9964. Subcategory="sql server";
  9965. Priority = 2;
  9966. Severity = 3;
  9967. TimeGenerated = "19900117095524.167335+480";
  9968. LoggingTime = "19991014173303.168558+480";
  9969. RollupTime = "20001107220120.195675+480";
  9970. Message = "Message with key to search = 1574650757";
  9971. RecordNumber = "280";
  9972. User = "sriravi";
  9973. Type = 1;
  9974. Classification = 6;
  9975. LogType = 1;
  9976. OriginalEvent = instance of __InstanceCreationEvent
  9977. { TargetInstance = instance of Win32_Service
  9978. {
  9979. Name = "SQL";
  9980. DisplayName = "SQL Database Server";
  9981. Status = 3;
  9982. };
  9983. };
  9984. };
  9985. instance of Microsoft_EELTOCEntryInFile
  9986. {
  9987. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  9988. Entry ="Microsoft_EELEntry='280'";
  9989. };
  9990. instance of Microsoft_EELEntry
  9991. {
  9992. EventId = "281";
  9993. SourceSubsystemType="NT Event Log";
  9994. SourceSubsystemName ="Unknown";
  9995. SystemAbout = "srinik_1";
  9996. SystemFrom = "abhishea_1";
  9997. DeliveredBy = "srinik_1";
  9998. Category="services";
  9999. Subcategory="sql server";
  10000. Priority = 2;
  10001. Severity = 1;
  10002. TimeGenerated = "19930424113714.113809+480";
  10003. LoggingTime = "19960711223203.123072+480";
  10004. RollupTime = "20001111073012.141311+480";
  10005. Message = "Message with key to search = 667414485";
  10006. RecordNumber = "281";
  10007. User = "sriravi";
  10008. Type = 2;
  10009. Classification = 7;
  10010. LogType = 2;
  10011. OriginalEvent = instance of __InstanceModificationEvent
  10012. { TargetInstance = instance of Win32_Service
  10013. {
  10014. Name = "SQL";
  10015. DisplayName = "SQL Database Server";
  10016. Status = 3;
  10017. };
  10018. PreviousInstance = instance of Win32_Service
  10019. {
  10020. Name = "SQL";
  10021. DisplayName = "SQL Database Server";
  10022. Status = 3;
  10023. };
  10024. };
  10025. };
  10026. instance of Microsoft_EELTOCEntryInFile
  10027. {
  10028. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10029. Entry ="Microsoft_EELEntry='281'";
  10030. };
  10031. instance of Microsoft_EELEntry
  10032. {
  10033. EventId = "282";
  10034. SourceSubsystemType="NT Event Log";
  10035. SourceSubsystemName ="server";
  10036. SystemAbout = "srinik_1";
  10037. SystemFrom = "abhishea_1";
  10038. DeliveredBy = "abhishea_1";
  10039. Category="services";
  10040. Subcategory="sql server";
  10041. Priority = 2;
  10042. Severity = 4;
  10043. TimeGenerated = "19900113170419.119400+480";
  10044. LoggingTime = "19980901211514.135514+480";
  10045. RollupTime = "19960723103502.115624+480";
  10046. Message = "Message with key to search = 1622602683";
  10047. RecordNumber = "282";
  10048. User = "sriravi";
  10049. Type = 6;
  10050. Classification = 4;
  10051. LogType = 2;
  10052. OriginalEvent = instance of __InstanceDeletionEvent
  10053. { TargetInstance = instance of Win32_Service
  10054. {
  10055. Name = "SQL";
  10056. DisplayName = "SQL Database Server";
  10057. Status = 1;
  10058. };
  10059. };
  10060. };
  10061. instance of Microsoft_EELTOCEntryInFile
  10062. {
  10063. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10064. Entry ="Microsoft_EELEntry='282'";
  10065. };
  10066. instance of Microsoft_EELEntry
  10067. {
  10068. EventId = "283";
  10069. SourceSubsystemType="NT Event Log";
  10070. SourceSubsystemName ="application";
  10071. SystemAbout = "rakeshb_2";
  10072. SystemFrom = "abhishea_1";
  10073. DeliveredBy = "csood_i2";
  10074. Category="services";
  10075. Subcategory="sql server";
  10076. Priority = 3;
  10077. Severity = 2;
  10078. TimeGenerated = "19900125224009.194976+480";
  10079. LoggingTime = "19910222104714.182869+480";
  10080. RollupTime = "19910226051207.182745+480";
  10081. Message = "Message with key to search = 98456336";
  10082. RecordNumber = "283";
  10083. User = "sriravi";
  10084. Type = 1;
  10085. Classification = 4;
  10086. LogType = 2;
  10087. OriginalEvent = instance of __InstanceCreationEvent
  10088. { TargetInstance = instance of Win32_Service
  10089. {
  10090. Name = "SQL";
  10091. DisplayName = "SQL Database Server";
  10092. Status = 1;
  10093. };
  10094. };
  10095. };
  10096. instance of Microsoft_EELTOCEntryInFile
  10097. {
  10098. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10099. Entry ="Microsoft_EELEntry='283'";
  10100. };
  10101. instance of Microsoft_EELEntry
  10102. {
  10103. EventId = "284";
  10104. SourceSubsystemType="NT Event Log";
  10105. SourceSubsystemName ="application";
  10106. SystemAbout = "srinik_1";
  10107. SystemFrom = "abhishea_1";
  10108. DeliveredBy = "rakeshb_2";
  10109. Category="services";
  10110. Subcategory="sql server";
  10111. Priority = 4;
  10112. Severity = 3;
  10113. TimeGenerated = "19900109231221.171678+480";
  10114. LoggingTime = "19980913235327.129194+480";
  10115. RollupTime = "19920327100203.132868+480";
  10116. Message = "Message with key to search = 37147330";
  10117. RecordNumber = "284";
  10118. User = "sriravi";
  10119. Type = 3;
  10120. Classification = 7;
  10121. LogType = 2;
  10122. OriginalEvent = instance of __InstanceModificationEvent
  10123. { TargetInstance = instance of Win32_Service
  10124. {
  10125. Name = "SQL";
  10126. DisplayName = "SQL Database Server";
  10127. Status = 1;
  10128. };
  10129. PreviousInstance = instance of Win32_Service
  10130. {
  10131. Name = "SQL";
  10132. DisplayName = "SQL Database Server";
  10133. Status = 3;
  10134. };
  10135. };
  10136. };
  10137. instance of Microsoft_EELTOCEntryInFile
  10138. {
  10139. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10140. Entry ="Microsoft_EELEntry='284'";
  10141. };
  10142. instance of Microsoft_EELEntry
  10143. {
  10144. EventId = "285";
  10145. SourceSubsystemType="SMS Log";
  10146. SourceSubsystemName ="Unknown";
  10147. SystemAbout = "rakeshb_2";
  10148. SystemFrom = "srinik_1";
  10149. DeliveredBy = "rakeshb_2";
  10150. Category="services";
  10151. Subcategory="sql server";
  10152. Priority = 2;
  10153. Severity = 1;
  10154. TimeGenerated = "19900125201921.180465+480";
  10155. LoggingTime = "20001103044623.160931+480";
  10156. RollupTime = "19970816205425.115273+480";
  10157. Message = "Message with key to search = 1761584107";
  10158. RecordNumber = "285";
  10159. User = "N/A";
  10160. Type = 0;
  10161. Classification = 5;
  10162. LogType = 2;
  10163. OriginalEvent = instance of __InstanceDeletionEvent
  10164. { TargetInstance = instance of Win32_Service
  10165. {
  10166. Name = "SQL";
  10167. DisplayName = "SQL Database Server";
  10168. Status = 3;
  10169. };
  10170. };
  10171. };
  10172. instance of Microsoft_EELTOCEntryInFile
  10173. {
  10174. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10175. Entry ="Microsoft_EELEntry='285'";
  10176. };
  10177. instance of Microsoft_EELEntry
  10178. {
  10179. EventId = "286";
  10180. SourceSubsystemType="SMS Log";
  10181. SourceSubsystemName ="driver";
  10182. SystemAbout = "rakeshb_2";
  10183. SystemFrom = "abhishea_1";
  10184. DeliveredBy = "srinik_1";
  10185. Category="services";
  10186. Subcategory="sql server";
  10187. Priority = 3;
  10188. Severity = 1;
  10189. TimeGenerated = "19900125132406.173306+480";
  10190. LoggingTime = "19970820094711.164005+480";
  10191. RollupTime = "19980901015300.135421+480";
  10192. Message = "Message with key to search = 70950939";
  10193. RecordNumber = "286";
  10194. User = "N/A";
  10195. Type = 6;
  10196. Classification = 2;
  10197. LogType = 1;
  10198. OriginalEvent = instance of __InstanceCreationEvent
  10199. { TargetInstance = instance of Win32_Service
  10200. {
  10201. Name = "SQL";
  10202. DisplayName = "SQL Database Server";
  10203. Status = 4;
  10204. };
  10205. };
  10206. };
  10207. instance of Microsoft_EELTOCEntryInFile
  10208. {
  10209. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10210. Entry ="Microsoft_EELEntry='286'";
  10211. };
  10212. instance of Microsoft_EELEntry
  10213. {
  10214. EventId = "287";
  10215. SourceSubsystemType="SMS Log";
  10216. SourceSubsystemName ="driver";
  10217. SystemAbout = "srinik_1";
  10218. SystemFrom = "abhishea_1";
  10219. DeliveredBy = "rakeshb_2";
  10220. Category="services";
  10221. Subcategory="sql server";
  10222. Priority = 1;
  10223. Severity = 3;
  10224. TimeGenerated = "19930404021912.187281+480";
  10225. LoggingTime = "20001127084912.114220+480";
  10226. RollupTime = "19900101190622.121281+480";
  10227. Message = "Message with key to search = 1348273122";
  10228. RecordNumber = "287";
  10229. User = "rishi";
  10230. Type = 4;
  10231. Classification = 5;
  10232. LogType = 2;
  10233. OriginalEvent = instance of __InstanceModificationEvent
  10234. { TargetInstance = instance of Win32_Service
  10235. {
  10236. Name = "SQL";
  10237. DisplayName = "SQL Database Server";
  10238. Status = 3;
  10239. };
  10240. PreviousInstance = instance of Win32_Service
  10241. {
  10242. Name = "SQL";
  10243. DisplayName = "SQL Database Server";
  10244. Status = 3;
  10245. };
  10246. };
  10247. };
  10248. instance of Microsoft_EELTOCEntryInFile
  10249. {
  10250. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10251. Entry ="Microsoft_EELEntry='287'";
  10252. };
  10253. instance of Microsoft_EELEntry
  10254. {
  10255. EventId = "288";
  10256. SourceSubsystemType="NT Event Log";
  10257. SourceSubsystemName ="application";
  10258. SystemAbout = "csood_i2";
  10259. SystemFrom = "abhishea_1";
  10260. DeliveredBy = "srinik_1";
  10261. Category="services";
  10262. Subcategory="sql server";
  10263. Priority = 3;
  10264. Severity = 1;
  10265. TimeGenerated = "19920311161519.151927+480";
  10266. LoggingTime = "19980925085907.105445+480";
  10267. RollupTime = "20011224221012.186064+480";
  10268. Message = "Message with key to search = 8300129";
  10269. RecordNumber = "288";
  10270. User = "amit";
  10271. Type = 6;
  10272. Classification = 1;
  10273. LogType = 3;
  10274. OriginalEvent = instance of __InstanceDeletionEvent
  10275. { TargetInstance = instance of Win32_Service
  10276. {
  10277. Name = "SQL";
  10278. DisplayName = "SQL Database Server";
  10279. Status = 3;
  10280. };
  10281. };
  10282. };
  10283. instance of Microsoft_EELTOCEntryInFile
  10284. {
  10285. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10286. Entry ="Microsoft_EELEntry='288'";
  10287. };
  10288. instance of Microsoft_EELEntry
  10289. {
  10290. EventId = "289";
  10291. SourceSubsystemType="SMS Log";
  10292. SourceSubsystemName ="Unknown";
  10293. SystemAbout = "csood_i2";
  10294. SystemFrom = "abhishea_1";
  10295. DeliveredBy = "csood_i2";
  10296. Category="services";
  10297. Subcategory="sql server";
  10298. Priority = 2;
  10299. Severity = 4;
  10300. TimeGenerated = "19950602113821.180541+480";
  10301. LoggingTime = "19950622191805.133445+480";
  10302. RollupTime = "19910222000217.123610+480";
  10303. Message = "Message with key to search = 352067431";
  10304. RecordNumber = "289";
  10305. User = "sriravi";
  10306. Type = 6;
  10307. Classification = 2;
  10308. LogType = 2;
  10309. OriginalEvent = instance of __InstanceCreationEvent
  10310. { TargetInstance = instance of Win32_Service
  10311. {
  10312. Name = "SQL";
  10313. DisplayName = "SQL Database Server";
  10314. Status = 1;
  10315. };
  10316. };
  10317. };
  10318. instance of Microsoft_EELTOCEntryInFile
  10319. {
  10320. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10321. Entry ="Microsoft_EELEntry='289'";
  10322. };
  10323. instance of Microsoft_EELEntry
  10324. {
  10325. EventId = "290";
  10326. SourceSubsystemType="SMS Log";
  10327. SourceSubsystemName ="application";
  10328. SystemAbout = "srinik_1";
  10329. SystemFrom = "csood_i2";
  10330. DeliveredBy = "rakeshb_2";
  10331. Category="services";
  10332. Subcategory="sql server";
  10333. Priority = 3;
  10334. Severity = 3;
  10335. TimeGenerated = "19920319035301.165360+480";
  10336. LoggingTime = "19980905032226.139963+480";
  10337. RollupTime = "19970828190902.115004+480";
  10338. Message = "Message with key to search = 1207780842";
  10339. RecordNumber = "290";
  10340. User = "rishi";
  10341. Type = 1;
  10342. Classification = 7;
  10343. LogType = 2;
  10344. OriginalEvent = instance of __InstanceModificationEvent
  10345. { TargetInstance = instance of Win32_Service
  10346. {
  10347. Name = "SQL";
  10348. DisplayName = "SQL Database Server";
  10349. Status = 2;
  10350. };
  10351. PreviousInstance = instance of Win32_Service
  10352. {
  10353. Name = "SQL";
  10354. DisplayName = "SQL Database Server";
  10355. Status = 1;
  10356. };
  10357. };
  10358. };
  10359. instance of Microsoft_EELTOCEntryInFile
  10360. {
  10361. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10362. Entry ="Microsoft_EELEntry='290'";
  10363. };
  10364. instance of Microsoft_EELEntry
  10365. {
  10366. EventId = "291";
  10367. SourceSubsystemType="SMS Log";
  10368. SourceSubsystemName ="driver";
  10369. SystemAbout = "csood_i2";
  10370. SystemFrom = "srinik_1";
  10371. DeliveredBy = "srinik_1";
  10372. Category="services";
  10373. Subcategory="sql server";
  10374. Priority = 4;
  10375. Severity = 4;
  10376. TimeGenerated = "19930424214210.106531+480";
  10377. LoggingTime = "20011216151724.133902+480";
  10378. RollupTime = "20011208231814.157945+480";
  10379. Message = "Message with key to search = 2079981284";
  10380. RecordNumber = "291";
  10381. User = "sriravi";
  10382. Type = 6;
  10383. Classification = 1;
  10384. LogType = 3;
  10385. OriginalEvent = instance of __InstanceDeletionEvent
  10386. { TargetInstance = instance of Win32_Service
  10387. {
  10388. Name = "SQL";
  10389. DisplayName = "SQL Database Server";
  10390. Status = 2;
  10391. };
  10392. };
  10393. };
  10394. instance of Microsoft_EELTOCEntryInFile
  10395. {
  10396. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10397. Entry ="Microsoft_EELEntry='291'";
  10398. };
  10399. instance of Microsoft_EELEntry
  10400. {
  10401. EventId = "292";
  10402. SourceSubsystemType="NT Event Log";
  10403. SourceSubsystemName ="server";
  10404. SystemAbout = "abhishea_1";
  10405. SystemFrom = "srinik_1";
  10406. DeliveredBy = "rakeshb_2";
  10407. Category="services";
  10408. Subcategory="sql server";
  10409. Priority = 3;
  10410. Severity = 2;
  10411. TimeGenerated = "19920303235116.148713+480";
  10412. LoggingTime = "20001115000505.140927+480";
  10413. RollupTime = "20001103065313.138434+480";
  10414. Message = "Message with key to search = 1590335312";
  10415. RecordNumber = "292";
  10416. User = "N/A";
  10417. Type = 5;
  10418. Classification = 8;
  10419. LogType = 2;
  10420. OriginalEvent = instance of __InstanceCreationEvent
  10421. { TargetInstance = instance of Win32_Service
  10422. {
  10423. Name = "SQL";
  10424. DisplayName = "SQL Database Server";
  10425. Status = 2;
  10426. };
  10427. };
  10428. };
  10429. instance of Microsoft_EELTOCEntryInFile
  10430. {
  10431. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10432. Entry ="Microsoft_EELEntry='292'";
  10433. };
  10434. instance of Microsoft_EELEntry
  10435. {
  10436. EventId = "293";
  10437. SourceSubsystemType="NT Event Log";
  10438. SourceSubsystemName ="Unknown";
  10439. SystemAbout = "abhishea_1";
  10440. SystemFrom = "csood_i2";
  10441. DeliveredBy = "srinik_1";
  10442. Category="services";
  10443. Subcategory="sql server";
  10444. Priority = 1;
  10445. Severity = 1;
  10446. TimeGenerated = "19910210074226.116913+480";
  10447. LoggingTime = "20011216151217.140690+480";
  10448. RollupTime = "20001103030618.180848+480";
  10449. Message = "Message with key to search = 1833962704";
  10450. RecordNumber = "293";
  10451. User = "rishi";
  10452. Type = 2;
  10453. Classification = 8;
  10454. LogType = 3;
  10455. OriginalEvent = instance of __InstanceModificationEvent
  10456. { TargetInstance = instance of Win32_Service
  10457. {
  10458. Name = "SQL";
  10459. DisplayName = "SQL Database Server";
  10460. Status = 4;
  10461. };
  10462. PreviousInstance = instance of Win32_Service
  10463. {
  10464. Name = "SQL";
  10465. DisplayName = "SQL Database Server";
  10466. Status = 4;
  10467. };
  10468. };
  10469. };
  10470. instance of Microsoft_EELTOCEntryInFile
  10471. {
  10472. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10473. Entry ="Microsoft_EELEntry='293'";
  10474. };
  10475. instance of Microsoft_EELEntry
  10476. {
  10477. EventId = "294";
  10478. SourceSubsystemType="NT Event Log";
  10479. SourceSubsystemName ="driver";
  10480. SystemAbout = "csood_i2";
  10481. SystemFrom = "csood_i2";
  10482. DeliveredBy = "abhishea_1";
  10483. Category="services";
  10484. Subcategory="sql server";
  10485. Priority = 4;
  10486. Severity = 3;
  10487. TimeGenerated = "19960711090100.143768+480";
  10488. LoggingTime = "20011216060708.160622+480";
  10489. RollupTime = "20011208113418.140934+480";
  10490. Message = "Message with key to search = 890148291";
  10491. RecordNumber = "294";
  10492. User = "amit";
  10493. Type = 0;
  10494. Classification = 4;
  10495. LogType = 3;
  10496. OriginalEvent = instance of __InstanceDeletionEvent
  10497. { TargetInstance = instance of Win32_Service
  10498. {
  10499. Name = "SQL";
  10500. DisplayName = "SQL Database Server";
  10501. Status = 4;
  10502. };
  10503. };
  10504. };
  10505. instance of Microsoft_EELTOCEntryInFile
  10506. {
  10507. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10508. Entry ="Microsoft_EELEntry='294'";
  10509. };
  10510. instance of Microsoft_EELEntry
  10511. {
  10512. EventId = "295";
  10513. SourceSubsystemType="SMS Log";
  10514. SourceSubsystemName ="driver";
  10515. SystemAbout = "csood_i2";
  10516. SystemFrom = "csood_i2";
  10517. DeliveredBy = "rakeshb_2";
  10518. Category="services";
  10519. Subcategory="sql server";
  10520. Priority = 4;
  10521. Severity = 4;
  10522. TimeGenerated = "19900121215401.124954+480";
  10523. LoggingTime = "19991014021128.130843+480";
  10524. RollupTime = "20001127102726.153419+480";
  10525. Message = "Message with key to search = 1310331474";
  10526. RecordNumber = "295";
  10527. User = "sriravi";
  10528. Type = 2;
  10529. Classification = 6;
  10530. LogType = 3;
  10531. OriginalEvent = instance of __InstanceCreationEvent
  10532. { TargetInstance = instance of Win32_Service
  10533. {
  10534. Name = "SQL";
  10535. DisplayName = "SQL Database Server";
  10536. Status = 2;
  10537. };
  10538. };
  10539. };
  10540. instance of Microsoft_EELTOCEntryInFile
  10541. {
  10542. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10543. Entry ="Microsoft_EELEntry='295'";
  10544. };
  10545. instance of Microsoft_EELEntry
  10546. {
  10547. EventId = "296";
  10548. SourceSubsystemType="NT Event Log";
  10549. SourceSubsystemName ="server";
  10550. SystemAbout = "rakeshb_2";
  10551. SystemFrom = "abhishea_1";
  10552. DeliveredBy = "abhishea_1";
  10553. Category="services";
  10554. Subcategory="sql server";
  10555. Priority = 1;
  10556. Severity = 1;
  10557. TimeGenerated = "19950614004603.167234+480";
  10558. LoggingTime = "19991018103927.136515+480";
  10559. RollupTime = "19920319073422.102434+480";
  10560. Message = "Message with key to search = 1800085255";
  10561. RecordNumber = "296";
  10562. User = "rishi";
  10563. Type = 6;
  10564. Classification = 8;
  10565. LogType = 3;
  10566. OriginalEvent = instance of __InstanceModificationEvent
  10567. { TargetInstance = instance of Win32_Service
  10568. {
  10569. Name = "SQL";
  10570. DisplayName = "SQL Database Server";
  10571. Status = 1;
  10572. };
  10573. PreviousInstance = instance of Win32_Service
  10574. {
  10575. Name = "SQL";
  10576. DisplayName = "SQL Database Server";
  10577. Status = 4;
  10578. };
  10579. };
  10580. };
  10581. instance of Microsoft_EELTOCEntryInFile
  10582. {
  10583. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10584. Entry ="Microsoft_EELEntry='296'";
  10585. };
  10586. instance of Microsoft_EELEntry
  10587. {
  10588. EventId = "297";
  10589. SourceSubsystemType="NT Event Log";
  10590. SourceSubsystemName ="server";
  10591. SystemAbout = "srinik_1";
  10592. SystemFrom = "abhishea_1";
  10593. DeliveredBy = "srinik_1";
  10594. Category="services";
  10595. Subcategory="sql server";
  10596. Priority = 2;
  10597. Severity = 4;
  10598. TimeGenerated = "19910210095711.162539+480";
  10599. LoggingTime = "19930420100402.188883+480";
  10600. RollupTime = "20001111213205.149871+480";
  10601. Message = "Message with key to search = 1992683835";
  10602. RecordNumber = "297";
  10603. User = "amit";
  10604. Type = 3;
  10605. Classification = 5;
  10606. LogType = 3;
  10607. OriginalEvent = instance of __InstanceDeletionEvent
  10608. { TargetInstance = instance of Win32_Service
  10609. {
  10610. Name = "SQL";
  10611. DisplayName = "SQL Database Server";
  10612. Status = 3;
  10613. };
  10614. };
  10615. };
  10616. instance of Microsoft_EELTOCEntryInFile
  10617. {
  10618. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10619. Entry ="Microsoft_EELEntry='297'";
  10620. };
  10621. instance of Microsoft_EELEntry
  10622. {
  10623. EventId = "298";
  10624. SourceSubsystemType="SMS Log";
  10625. SourceSubsystemName ="Unknown";
  10626. SystemAbout = "srinik_1";
  10627. SystemFrom = "abhishea_1";
  10628. DeliveredBy = "rakeshb_2";
  10629. Category="services";
  10630. Subcategory="sql server";
  10631. Priority = 2;
  10632. Severity = 3;
  10633. TimeGenerated = "19920307225126.199877+480";
  10634. LoggingTime = "19970812182416.156042+480";
  10635. RollupTime = "19940525065613.103203+480";
  10636. Message = "Message with key to search = 216809269";
  10637. RecordNumber = "298";
  10638. User = "sriravi";
  10639. Type = 2;
  10640. Classification = 6;
  10641. LogType = 1;
  10642. OriginalEvent = instance of __InstanceCreationEvent
  10643. { TargetInstance = instance of Win32_Service
  10644. {
  10645. Name = "SQL";
  10646. DisplayName = "SQL Database Server";
  10647. Status = 1;
  10648. };
  10649. };
  10650. };
  10651. instance of Microsoft_EELTOCEntryInFile
  10652. {
  10653. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10654. Entry ="Microsoft_EELEntry='298'";
  10655. };
  10656. instance of Microsoft_EELEntry
  10657. {
  10658. EventId = "299";
  10659. SourceSubsystemType="NT Event Log";
  10660. SourceSubsystemName ="application";
  10661. SystemAbout = "srinik_1";
  10662. SystemFrom = "csood_i2";
  10663. DeliveredBy = "rakeshb_2";
  10664. Category="services";
  10665. Subcategory="sql server";
  10666. Priority = 2;
  10667. Severity = 4;
  10668. TimeGenerated = "19910218013313.197657+480";
  10669. LoggingTime = "19980913235327.129194+480";
  10670. RollupTime = "19960703074716.105986+480";
  10671. Message = "Message with key to search = 841794211";
  10672. RecordNumber = "299";
  10673. User = "amit";
  10674. Type = 6;
  10675. Classification = 5;
  10676. LogType = 1;
  10677. OriginalEvent = instance of __InstanceModificationEvent
  10678. { TargetInstance = instance of Win32_Service
  10679. {
  10680. Name = "SQL";
  10681. DisplayName = "SQL Database Server";
  10682. Status = 2;
  10683. };
  10684. PreviousInstance = instance of Win32_Service
  10685. {
  10686. Name = "SQL";
  10687. DisplayName = "SQL Database Server";
  10688. Status = 3;
  10689. };
  10690. };
  10691. };
  10692. instance of Microsoft_EELTOCEntryInFile
  10693. {
  10694. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10695. Entry ="Microsoft_EELEntry='299'";
  10696. };
  10697. instance of Microsoft_EELEntry
  10698. {
  10699. EventId = "300";
  10700. SourceSubsystemType="NT Event Log";
  10701. SourceSubsystemName ="Unknown";
  10702. SystemAbout = "abhishea_1";
  10703. SystemFrom = "csood_i2";
  10704. DeliveredBy = "abhishea_1";
  10705. Category="services";
  10706. Subcategory="sql server";
  10707. Priority = 2;
  10708. Severity = 2;
  10709. TimeGenerated = "19920311123614.165391+480";
  10710. LoggingTime = "19970816011523.157778+480";
  10711. RollupTime = "19940505035322.189722+480";
  10712. Message = "Message with key to search = 1245441947";
  10713. RecordNumber = "300";
  10714. User = "rishi";
  10715. Type = 1;
  10716. Classification = 5;
  10717. LogType = 3;
  10718. OriginalEvent = instance of __InstanceDeletionEvent
  10719. { TargetInstance = instance of Win32_Service
  10720. {
  10721. Name = "SQL";
  10722. DisplayName = "SQL Database Server";
  10723. Status = 1;
  10724. };
  10725. };
  10726. };
  10727. instance of Microsoft_EELTOCEntryInFile
  10728. {
  10729. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10730. Entry ="Microsoft_EELEntry='300'";
  10731. };
  10732. instance of Microsoft_EELEntry
  10733. {
  10734. EventId = "301";
  10735. SourceSubsystemType="NT Event Log";
  10736. SourceSubsystemName ="Unknown";
  10737. SystemAbout = "rakeshb_2";
  10738. SystemFrom = "abhishea_1";
  10739. DeliveredBy = "rakeshb_2";
  10740. Category="services";
  10741. Subcategory="sql server";
  10742. Priority = 4;
  10743. Severity = 1;
  10744. TimeGenerated = "19930420171112.117826+480";
  10745. LoggingTime = "19960719130617.173961+480";
  10746. RollupTime = "20001115224014.117302+480";
  10747. Message = "Message with key to search = 2146428504";
  10748. RecordNumber = "301";
  10749. User = "N/A";
  10750. Type = 2;
  10751. Classification = 1;
  10752. LogType = 3;
  10753. OriginalEvent = instance of __InstanceCreationEvent
  10754. { TargetInstance = instance of Win32_Service
  10755. {
  10756. Name = "SQL";
  10757. DisplayName = "SQL Database Server";
  10758. Status = 2;
  10759. };
  10760. };
  10761. };
  10762. instance of Microsoft_EELTOCEntryInFile
  10763. {
  10764. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10765. Entry ="Microsoft_EELEntry='301'";
  10766. };
  10767. instance of Microsoft_EELEntry
  10768. {
  10769. EventId = "302";
  10770. SourceSubsystemType="NT Event Log";
  10771. SourceSubsystemName ="driver";
  10772. SystemAbout = "srinik_1";
  10773. SystemFrom = "abhishea_1";
  10774. DeliveredBy = "rakeshb_2";
  10775. Category="services";
  10776. Subcategory="sql server";
  10777. Priority = 1;
  10778. Severity = 2;
  10779. TimeGenerated = "19900125231324.172831+480";
  10780. LoggingTime = "19970812082803.168616+480";
  10781. RollupTime = "19960703233022.150198+480";
  10782. Message = "Message with key to search = 1355465326";
  10783. RecordNumber = "302";
  10784. User = "N/A";
  10785. Type = 6;
  10786. Classification = 5;
  10787. LogType = 2;
  10788. OriginalEvent = instance of __InstanceModificationEvent
  10789. { TargetInstance = instance of Win32_Service
  10790. {
  10791. Name = "SQL";
  10792. DisplayName = "SQL Database Server";
  10793. Status = 2;
  10794. };
  10795. PreviousInstance = instance of Win32_Service
  10796. {
  10797. Name = "SQL";
  10798. DisplayName = "SQL Database Server";
  10799. Status = 2;
  10800. };
  10801. };
  10802. };
  10803. instance of Microsoft_EELTOCEntryInFile
  10804. {
  10805. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10806. Entry ="Microsoft_EELEntry='302'";
  10807. };
  10808. instance of Microsoft_EELEntry
  10809. {
  10810. EventId = "303";
  10811. SourceSubsystemType="NT Event Log";
  10812. SourceSubsystemName ="Unknown";
  10813. SystemAbout = "srinik_1";
  10814. SystemFrom = "srinik_1";
  10815. DeliveredBy = "abhishea_1";
  10816. Category="services";
  10817. Subcategory="sql server";
  10818. Priority = 2;
  10819. Severity = 1;
  10820. TimeGenerated = "19900101051406.197806+480";
  10821. LoggingTime = "19980913022205.176444+480";
  10822. RollupTime = "19940525192123.162525+480";
  10823. Message = "Message with key to search = 1574323471";
  10824. RecordNumber = "303";
  10825. User = "N/A";
  10826. Type = 2;
  10827. Classification = 4;
  10828. LogType = 1;
  10829. OriginalEvent = instance of __InstanceDeletionEvent
  10830. { TargetInstance = instance of Win32_Service
  10831. {
  10832. Name = "SQL";
  10833. DisplayName = "SQL Database Server";
  10834. Status = 4;
  10835. };
  10836. };
  10837. };
  10838. instance of Microsoft_EELTOCEntryInFile
  10839. {
  10840. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10841. Entry ="Microsoft_EELEntry='303'";
  10842. };
  10843. instance of Microsoft_EELEntry
  10844. {
  10845. EventId = "304";
  10846. SourceSubsystemType="NT Event Log";
  10847. SourceSubsystemName ="application";
  10848. SystemAbout = "abhishea_1";
  10849. SystemFrom = "rakeshb_2";
  10850. DeliveredBy = "abhishea_1";
  10851. Category="services";
  10852. Subcategory="sql server";
  10853. Priority = 4;
  10854. Severity = 4;
  10855. TimeGenerated = "19980925191919.191917+480";
  10856. LoggingTime = "19980925213023.108010+480";
  10857. RollupTime = "19970828173318.197914+480";
  10858. Message = "Message with key to search = 911389499";
  10859. RecordNumber = "304";
  10860. User = "N/A";
  10861. Type = 0;
  10862. Classification = 7;
  10863. LogType = 3;
  10864. OriginalEvent = instance of __InstanceCreationEvent
  10865. { TargetInstance = instance of Win32_Service
  10866. {
  10867. Name = "SQL";
  10868. DisplayName = "SQL Database Server";
  10869. Status = 4;
  10870. };
  10871. };
  10872. };
  10873. instance of Microsoft_EELTOCEntryInFile
  10874. {
  10875. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10876. Entry ="Microsoft_EELEntry='304'";
  10877. };
  10878. instance of Microsoft_EELEntry
  10879. {
  10880. EventId = "305";
  10881. SourceSubsystemType="NT Event Log";
  10882. SourceSubsystemName ="driver";
  10883. SystemAbout = "srinik_1";
  10884. SystemFrom = "srinik_1";
  10885. DeliveredBy = "abhishea_1";
  10886. Category="services";
  10887. Subcategory="sql server";
  10888. Priority = 3;
  10889. Severity = 2;
  10890. TimeGenerated = "19940517061903.197002+480";
  10891. LoggingTime = "19991006175910.116686+480";
  10892. RollupTime = "19991014133924.110728+480";
  10893. Message = "Message with key to search = 640380274";
  10894. RecordNumber = "305";
  10895. User = "amit";
  10896. Type = 4;
  10897. Classification = 7;
  10898. LogType = 3;
  10899. OriginalEvent = instance of __InstanceModificationEvent
  10900. { TargetInstance = instance of Win32_Service
  10901. {
  10902. Name = "SQL";
  10903. DisplayName = "SQL Database Server";
  10904. Status = 2;
  10905. };
  10906. PreviousInstance = instance of Win32_Service
  10907. {
  10908. Name = "SQL";
  10909. DisplayName = "SQL Database Server";
  10910. Status = 1;
  10911. };
  10912. };
  10913. };
  10914. instance of Microsoft_EELTOCEntryInFile
  10915. {
  10916. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  10917. Entry ="Microsoft_EELEntry='305'";
  10918. };
  10919. instance of Microsoft_EELEntry
  10920. {
  10921. EventId = "306";
  10922. SourceSubsystemType="NT Event Log";
  10923. SourceSubsystemName ="application";
  10924. SystemAbout = "rakeshb_2";
  10925. SystemFrom = "abhishea_1";
  10926. DeliveredBy = "rakeshb_2";
  10927. Category="services";
  10928. Subcategory="sql server";
  10929. Priority = 2;
  10930. Severity = 4;
  10931. TimeGenerated = "19910206182806.197380+480";
  10932. LoggingTime = "19970804005517.174467+480";
  10933. RollupTime = "19991006211723.130889+480";
  10934. Message = "Message with key to search = 1018810209";
  10935. RecordNumber = "306";
  10936. User = "N/A";
  10937. Type = 5;
  10938. Classification = 3;
  10939. LogType = 3;
  10940. OriginalEvent = instance of __InstanceDeletionEvent
  10941. { TargetInstance = instance of Win32_Service
  10942. {
  10943. Name = "SQL";
  10944. DisplayName = "SQL Database Server";
  10945. Status = 1;
  10946. };
  10947. };
  10948. };
  10949. instance of Microsoft_EELTOCEntryInFile
  10950. {
  10951. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  10952. Entry ="Microsoft_EELEntry='306'";
  10953. };
  10954. instance of Microsoft_EELEntry
  10955. {
  10956. EventId = "307";
  10957. SourceSubsystemType="SMS Log";
  10958. SourceSubsystemName ="driver";
  10959. SystemAbout = "rakeshb_2";
  10960. SystemFrom = "abhishea_1";
  10961. DeliveredBy = "csood_i2";
  10962. Category="services";
  10963. Subcategory="sql server";
  10964. Priority = 1;
  10965. Severity = 3;
  10966. TimeGenerated = "19940509150621.186622+480";
  10967. LoggingTime = "19920311022811.173144+480";
  10968. RollupTime = "20001107201510.165232+480";
  10969. Message = "Message with key to search = 1767695703";
  10970. RecordNumber = "307";
  10971. User = "amit";
  10972. Type = 5;
  10973. Classification = 4;
  10974. LogType = 3;
  10975. OriginalEvent = instance of __InstanceCreationEvent
  10976. { TargetInstance = instance of Win32_Service
  10977. {
  10978. Name = "SQL";
  10979. DisplayName = "SQL Database Server";
  10980. Status = 2;
  10981. };
  10982. };
  10983. };
  10984. instance of Microsoft_EELTOCEntryInFile
  10985. {
  10986. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  10987. Entry ="Microsoft_EELEntry='307'";
  10988. };
  10989. instance of Microsoft_EELEntry
  10990. {
  10991. EventId = "308";
  10992. SourceSubsystemType="NT Event Log";
  10993. SourceSubsystemName ="server";
  10994. SystemAbout = "abhishea_1";
  10995. SystemFrom = "abhishea_1";
  10996. DeliveredBy = "srinik_1";
  10997. Category="services";
  10998. Subcategory="sql server";
  10999. Priority = 1;
  11000. Severity = 2;
  11001. TimeGenerated = "19910210051614.141109+480";
  11002. LoggingTime = "19980913175815.197054+480";
  11003. RollupTime = "19980913154300.164134+480";
  11004. Message = "Message with key to search = 21861505";
  11005. RecordNumber = "308";
  11006. User = "amit";
  11007. Type = 1;
  11008. Classification = 8;
  11009. LogType = 3;
  11010. OriginalEvent = instance of __InstanceModificationEvent
  11011. { TargetInstance = instance of Win32_Service
  11012. {
  11013. Name = "SQL";
  11014. DisplayName = "SQL Database Server";
  11015. Status = 1;
  11016. };
  11017. PreviousInstance = instance of Win32_Service
  11018. {
  11019. Name = "SQL";
  11020. DisplayName = "SQL Database Server";
  11021. Status = 3;
  11022. };
  11023. };
  11024. };
  11025. instance of Microsoft_EELTOCEntryInFile
  11026. {
  11027. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11028. Entry ="Microsoft_EELEntry='308'";
  11029. };
  11030. instance of Microsoft_EELEntry
  11031. {
  11032. EventId = "309";
  11033. SourceSubsystemType="SMS Log";
  11034. SourceSubsystemName ="driver";
  11035. SystemAbout = "srinik_1";
  11036. SystemFrom = "abhishea_1";
  11037. DeliveredBy = "csood_i2";
  11038. Category="services";
  11039. Subcategory="sql server";
  11040. Priority = 3;
  11041. Severity = 4;
  11042. TimeGenerated = "19920303103423.139775+480";
  11043. LoggingTime = "19940509194615.116647+480";
  11044. RollupTime = "20001119062220.128863+480";
  11045. Message = "Message with key to search = 1170095766";
  11046. RecordNumber = "309";
  11047. User = "sriravi";
  11048. Type = 6;
  11049. Classification = 3;
  11050. LogType = 1;
  11051. OriginalEvent = instance of __InstanceDeletionEvent
  11052. { TargetInstance = instance of Win32_Service
  11053. {
  11054. Name = "SQL";
  11055. DisplayName = "SQL Database Server";
  11056. Status = 1;
  11057. };
  11058. };
  11059. };
  11060. instance of Microsoft_EELTOCEntryInFile
  11061. {
  11062. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11063. Entry ="Microsoft_EELEntry='309'";
  11064. };
  11065. instance of Microsoft_EELEntry
  11066. {
  11067. EventId = "310";
  11068. SourceSubsystemType="SMS Log";
  11069. SourceSubsystemName ="server";
  11070. SystemAbout = "rakeshb_2";
  11071. SystemFrom = "rakeshb_2";
  11072. DeliveredBy = "csood_i2";
  11073. Category="services";
  11074. Subcategory="sql server";
  11075. Priority = 4;
  11076. Severity = 4;
  11077. TimeGenerated = "19940521043909.145021+480";
  11078. LoggingTime = "19970812233905.134690+480";
  11079. RollupTime = "20001107160718.137865+480";
  11080. Message = "Message with key to search = 1754942211";
  11081. RecordNumber = "310";
  11082. User = "rishi";
  11083. Type = 1;
  11084. Classification = 7;
  11085. LogType = 3;
  11086. OriginalEvent = instance of __InstanceCreationEvent
  11087. { TargetInstance = instance of Win32_Service
  11088. {
  11089. Name = "SQL";
  11090. DisplayName = "SQL Database Server";
  11091. Status = 3;
  11092. };
  11093. };
  11094. };
  11095. instance of Microsoft_EELTOCEntryInFile
  11096. {
  11097. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11098. Entry ="Microsoft_EELEntry='310'";
  11099. };
  11100. instance of Microsoft_EELEntry
  11101. {
  11102. EventId = "311";
  11103. SourceSubsystemType="NT Event Log";
  11104. SourceSubsystemName ="application";
  11105. SystemAbout = "csood_i2";
  11106. SystemFrom = "rakeshb_2";
  11107. DeliveredBy = "abhishea_1";
  11108. Category="services";
  11109. Subcategory="sql server";
  11110. Priority = 2;
  11111. Severity = 4;
  11112. TimeGenerated = "19930412150900.179334+480";
  11113. LoggingTime = "19980901102007.158406+480";
  11114. RollupTime = "19940521214909.193140+480";
  11115. Message = "Message with key to search = 2039606723";
  11116. RecordNumber = "311";
  11117. User = "amit";
  11118. Type = 6;
  11119. Classification = 7;
  11120. LogType = 3;
  11121. OriginalEvent = instance of __InstanceModificationEvent
  11122. { TargetInstance = instance of Win32_Service
  11123. {
  11124. Name = "SQL";
  11125. DisplayName = "SQL Database Server";
  11126. Status = 4;
  11127. };
  11128. PreviousInstance = instance of Win32_Service
  11129. {
  11130. Name = "SQL";
  11131. DisplayName = "SQL Database Server";
  11132. Status = 4;
  11133. };
  11134. };
  11135. };
  11136. instance of Microsoft_EELTOCEntryInFile
  11137. {
  11138. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11139. Entry ="Microsoft_EELEntry='311'";
  11140. };
  11141. instance of Microsoft_EELEntry
  11142. {
  11143. EventId = "312";
  11144. SourceSubsystemType="SMS Log";
  11145. SourceSubsystemName ="server";
  11146. SystemAbout = "abhishea_1";
  11147. SystemFrom = "rakeshb_2";
  11148. DeliveredBy = "csood_i2";
  11149. Category="services";
  11150. Subcategory="sql server";
  11151. Priority = 1;
  11152. Severity = 3;
  11153. TimeGenerated = "19960703135905.161191+480";
  11154. LoggingTime = "19991006211013.164978+480";
  11155. RollupTime = "19991010165205.177801+480";
  11156. Message = "Message with key to search = 828522892";
  11157. RecordNumber = "312";
  11158. User = "rishi";
  11159. Type = 3;
  11160. Classification = 4;
  11161. LogType = 2;
  11162. OriginalEvent = instance of __InstanceDeletionEvent
  11163. { TargetInstance = instance of Win32_Service
  11164. {
  11165. Name = "SQL";
  11166. DisplayName = "SQL Database Server";
  11167. Status = 2;
  11168. };
  11169. };
  11170. };
  11171. instance of Microsoft_EELTOCEntryInFile
  11172. {
  11173. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11174. Entry ="Microsoft_EELEntry='312'";
  11175. };
  11176. instance of Microsoft_EELEntry
  11177. {
  11178. EventId = "313";
  11179. SourceSubsystemType="SMS Log";
  11180. SourceSubsystemName ="driver";
  11181. SystemAbout = "csood_i2";
  11182. SystemFrom = "srinik_1";
  11183. DeliveredBy = "csood_i2";
  11184. Category="services";
  11185. Subcategory="sql server";
  11186. Priority = 4;
  11187. Severity = 1;
  11188. TimeGenerated = "19920303052407.160859+480";
  11189. LoggingTime = "19991018101600.127772+480";
  11190. RollupTime = "19970816194121.124733+480";
  11191. Message = "Message with key to search = 315013558";
  11192. RecordNumber = "313";
  11193. User = "rishi";
  11194. Type = 4;
  11195. Classification = 7;
  11196. LogType = 2;
  11197. OriginalEvent = instance of __InstanceCreationEvent
  11198. { TargetInstance = instance of Win32_Service
  11199. {
  11200. Name = "SQL";
  11201. DisplayName = "SQL Database Server";
  11202. Status = 2;
  11203. };
  11204. };
  11205. };
  11206. instance of Microsoft_EELTOCEntryInFile
  11207. {
  11208. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11209. Entry ="Microsoft_EELEntry='313'";
  11210. };
  11211. instance of Microsoft_EELEntry
  11212. {
  11213. EventId = "314";
  11214. SourceSubsystemType="NT Event Log";
  11215. SourceSubsystemName ="driver";
  11216. SystemAbout = "abhishea_1";
  11217. SystemFrom = "rakeshb_2";
  11218. DeliveredBy = "rakeshb_2";
  11219. Category="services";
  11220. Subcategory="sql server";
  11221. Priority = 3;
  11222. Severity = 1;
  11223. TimeGenerated = "19940513145905.165954+480";
  11224. LoggingTime = "19930416052328.168391+480";
  11225. RollupTime = "19991014233420.130194+480";
  11226. Message = "Message with key to search = 523005317";
  11227. RecordNumber = "314";
  11228. User = "sriravi";
  11229. Type = 5;
  11230. Classification = 1;
  11231. LogType = 2;
  11232. OriginalEvent = instance of __InstanceModificationEvent
  11233. { TargetInstance = instance of Win32_Service
  11234. {
  11235. Name = "SQL";
  11236. DisplayName = "SQL Database Server";
  11237. Status = 2;
  11238. };
  11239. PreviousInstance = instance of Win32_Service
  11240. {
  11241. Name = "SQL";
  11242. DisplayName = "SQL Database Server";
  11243. Status = 1;
  11244. };
  11245. };
  11246. };
  11247. instance of Microsoft_EELTOCEntryInFile
  11248. {
  11249. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11250. Entry ="Microsoft_EELEntry='314'";
  11251. };
  11252. instance of Microsoft_EELEntry
  11253. {
  11254. EventId = "315";
  11255. SourceSubsystemType="SMS Log";
  11256. SourceSubsystemName ="Unknown";
  11257. SystemAbout = "rakeshb_2";
  11258. SystemFrom = "rakeshb_2";
  11259. DeliveredBy = "srinik_1";
  11260. Category="services";
  11261. Subcategory="sql server";
  11262. Priority = 1;
  11263. Severity = 2;
  11264. TimeGenerated = "19940525001203.115981+480";
  11265. LoggingTime = "19980925213222.136090+480";
  11266. RollupTime = "19991002073722.136447+480";
  11267. Message = "Message with key to search = 1476250689";
  11268. RecordNumber = "315";
  11269. User = "rishi";
  11270. Type = 4;
  11271. Classification = 7;
  11272. LogType = 2;
  11273. OriginalEvent = instance of __InstanceDeletionEvent
  11274. { TargetInstance = instance of Win32_Service
  11275. {
  11276. Name = "SQL";
  11277. DisplayName = "SQL Database Server";
  11278. Status = 3;
  11279. };
  11280. };
  11281. };
  11282. instance of Microsoft_EELTOCEntryInFile
  11283. {
  11284. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11285. Entry ="Microsoft_EELEntry='315'";
  11286. };
  11287. instance of Microsoft_EELEntry
  11288. {
  11289. EventId = "316";
  11290. SourceSubsystemType="SMS Log";
  11291. SourceSubsystemName ="Unknown";
  11292. SystemAbout = "abhishea_1";
  11293. SystemFrom = "srinik_1";
  11294. DeliveredBy = "csood_i2";
  11295. Category="services";
  11296. Subcategory="sql server";
  11297. Priority = 1;
  11298. Severity = 2;
  11299. TimeGenerated = "19910218142205.162116+480";
  11300. LoggingTime = "19980925213505.160013+480";
  11301. RollupTime = "19960727035318.145776+480";
  11302. Message = "Message with key to search = 191068830";
  11303. RecordNumber = "316";
  11304. User = "rishi";
  11305. Type = 2;
  11306. Classification = 8;
  11307. LogType = 2;
  11308. OriginalEvent = instance of __InstanceCreationEvent
  11309. { TargetInstance = instance of Win32_Service
  11310. {
  11311. Name = "SQL";
  11312. DisplayName = "SQL Database Server";
  11313. Status = 3;
  11314. };
  11315. };
  11316. };
  11317. instance of Microsoft_EELTOCEntryInFile
  11318. {
  11319. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11320. Entry ="Microsoft_EELEntry='316'";
  11321. };
  11322. instance of Microsoft_EELEntry
  11323. {
  11324. EventId = "317";
  11325. SourceSubsystemType="NT Event Log";
  11326. SourceSubsystemName ="application";
  11327. SystemAbout = "rakeshb_2";
  11328. SystemFrom = "srinik_1";
  11329. DeliveredBy = "abhishea_1";
  11330. Category="services";
  11331. Subcategory="sql server";
  11332. Priority = 3;
  11333. Severity = 3;
  11334. TimeGenerated = "19920319183204.101443+480";
  11335. LoggingTime = "19970804120211.161227+480";
  11336. RollupTime = "19950626050628.142210+480";
  11337. Message = "Message with key to search = 639281195";
  11338. RecordNumber = "317";
  11339. User = "sriravi";
  11340. Type = 4;
  11341. Classification = 2;
  11342. LogType = 1;
  11343. OriginalEvent = instance of __InstanceModificationEvent
  11344. { TargetInstance = instance of Win32_Service
  11345. {
  11346. Name = "SQL";
  11347. DisplayName = "SQL Database Server";
  11348. Status = 2;
  11349. };
  11350. PreviousInstance = instance of Win32_Service
  11351. {
  11352. Name = "SQL";
  11353. DisplayName = "SQL Database Server";
  11354. Status = 3;
  11355. };
  11356. };
  11357. };
  11358. instance of Microsoft_EELTOCEntryInFile
  11359. {
  11360. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11361. Entry ="Microsoft_EELEntry='317'";
  11362. };
  11363. instance of Microsoft_EELEntry
  11364. {
  11365. EventId = "318";
  11366. SourceSubsystemType="SMS Log";
  11367. SourceSubsystemName ="driver";
  11368. SystemAbout = "srinik_1";
  11369. SystemFrom = "csood_i2";
  11370. DeliveredBy = "srinik_1";
  11371. Category="services";
  11372. Subcategory="sql server";
  11373. Priority = 1;
  11374. Severity = 4;
  11375. TimeGenerated = "19950622100803.169044+480";
  11376. LoggingTime = "19950606185402.177678+480";
  11377. RollupTime = "19991018064025.118317+480";
  11378. Message = "Message with key to search = 163929200";
  11379. RecordNumber = "318";
  11380. User = "rishi";
  11381. Type = 6;
  11382. Classification = 3;
  11383. LogType = 3;
  11384. OriginalEvent = instance of __InstanceDeletionEvent
  11385. { TargetInstance = instance of Win32_Service
  11386. {
  11387. Name = "SQL";
  11388. DisplayName = "SQL Database Server";
  11389. Status = 1;
  11390. };
  11391. };
  11392. };
  11393. instance of Microsoft_EELTOCEntryInFile
  11394. {
  11395. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11396. Entry ="Microsoft_EELEntry='318'";
  11397. };
  11398. instance of Microsoft_EELEntry
  11399. {
  11400. EventId = "319";
  11401. SourceSubsystemType="SMS Log";
  11402. SourceSubsystemName ="application";
  11403. SystemAbout = "rakeshb_2";
  11404. SystemFrom = "rakeshb_2";
  11405. DeliveredBy = "csood_i2";
  11406. Category="services";
  11407. Subcategory="sql server";
  11408. Priority = 3;
  11409. Severity = 3;
  11410. TimeGenerated = "19900121103215.152244+480";
  11411. LoggingTime = "19950602172407.167873+480";
  11412. RollupTime = "19930408014414.133243+480";
  11413. Message = "Message with key to search = 1346206853";
  11414. RecordNumber = "319";
  11415. User = "N/A";
  11416. Type = 0;
  11417. Classification = 2;
  11418. LogType = 1;
  11419. OriginalEvent = instance of __InstanceCreationEvent
  11420. { TargetInstance = instance of Win32_Service
  11421. {
  11422. Name = "SQL";
  11423. DisplayName = "SQL Database Server";
  11424. Status = 1;
  11425. };
  11426. };
  11427. };
  11428. instance of Microsoft_EELTOCEntryInFile
  11429. {
  11430. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11431. Entry ="Microsoft_EELEntry='319'";
  11432. };
  11433. instance of Microsoft_EELEntry
  11434. {
  11435. EventId = "320";
  11436. SourceSubsystemType="SMS Log";
  11437. SourceSubsystemName ="Unknown";
  11438. SystemAbout = "rakeshb_2";
  11439. SystemFrom = "abhishea_1";
  11440. DeliveredBy = "abhishea_1";
  11441. Category="services";
  11442. Subcategory="sql server";
  11443. Priority = 4;
  11444. Severity = 3;
  11445. TimeGenerated = "19920307051406.141960+480";
  11446. LoggingTime = "19930424204420.135636+480";
  11447. RollupTime = "19970804180823.187344+480";
  11448. Message = "Message with key to search = 1505559156";
  11449. RecordNumber = "320";
  11450. User = "rishi";
  11451. Type = 2;
  11452. Classification = 6;
  11453. LogType = 3;
  11454. OriginalEvent = instance of __InstanceModificationEvent
  11455. { TargetInstance = instance of Win32_Service
  11456. {
  11457. Name = "SQL";
  11458. DisplayName = "SQL Database Server";
  11459. Status = 1;
  11460. };
  11461. PreviousInstance = instance of Win32_Service
  11462. {
  11463. Name = "SQL";
  11464. DisplayName = "SQL Database Server";
  11465. Status = 3;
  11466. };
  11467. };
  11468. };
  11469. instance of Microsoft_EELTOCEntryInFile
  11470. {
  11471. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11472. Entry ="Microsoft_EELEntry='320'";
  11473. };
  11474. instance of Microsoft_EELEntry
  11475. {
  11476. EventId = "321";
  11477. SourceSubsystemType="NT Event Log";
  11478. SourceSubsystemName ="server";
  11479. SystemAbout = "csood_i2";
  11480. SystemFrom = "rakeshb_2";
  11481. DeliveredBy = "rakeshb_2";
  11482. Category="services";
  11483. Subcategory="sql server";
  11484. Priority = 3;
  11485. Severity = 2;
  11486. TimeGenerated = "19910202112422.101491+480";
  11487. LoggingTime = "19960711220712.162105+480";
  11488. RollupTime = "19950618000221.153132+480";
  11489. Message = "Message with key to search = 1801233284";
  11490. RecordNumber = "321";
  11491. User = "amit";
  11492. Type = 5;
  11493. Classification = 4;
  11494. LogType = 2;
  11495. OriginalEvent = instance of __InstanceDeletionEvent
  11496. { TargetInstance = instance of Win32_Service
  11497. {
  11498. Name = "SQL";
  11499. DisplayName = "SQL Database Server";
  11500. Status = 2;
  11501. };
  11502. };
  11503. };
  11504. instance of Microsoft_EELTOCEntryInFile
  11505. {
  11506. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11507. Entry ="Microsoft_EELEntry='321'";
  11508. };
  11509. instance of Microsoft_EELEntry
  11510. {
  11511. EventId = "322";
  11512. SourceSubsystemType="SMS Log";
  11513. SourceSubsystemName ="server";
  11514. SystemAbout = "srinik_1";
  11515. SystemFrom = "srinik_1";
  11516. DeliveredBy = "srinik_1";
  11517. Category="services";
  11518. Subcategory="sql server";
  11519. Priority = 2;
  11520. Severity = 1;
  11521. TimeGenerated = "19900121203810.157157+480";
  11522. LoggingTime = "20001127190415.186880+480";
  11523. RollupTime = "19980901012822.107576+480";
  11524. Message = "Message with key to search = 982162054";
  11525. RecordNumber = "322";
  11526. User = "sriravi";
  11527. Type = 5;
  11528. Classification = 4;
  11529. LogType = 3;
  11530. OriginalEvent = instance of __InstanceCreationEvent
  11531. { TargetInstance = instance of Win32_Service
  11532. {
  11533. Name = "SQL";
  11534. DisplayName = "SQL Database Server";
  11535. Status = 1;
  11536. };
  11537. };
  11538. };
  11539. instance of Microsoft_EELTOCEntryInFile
  11540. {
  11541. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11542. Entry ="Microsoft_EELEntry='322'";
  11543. };
  11544. instance of Microsoft_EELEntry
  11545. {
  11546. EventId = "323";
  11547. SourceSubsystemType="NT Event Log";
  11548. SourceSubsystemName ="server";
  11549. SystemAbout = "abhishea_1";
  11550. SystemFrom = "rakeshb_2";
  11551. DeliveredBy = "csood_i2";
  11552. Category="services";
  11553. Subcategory="sql server";
  11554. Priority = 2;
  11555. Severity = 4;
  11556. TimeGenerated = "19940521065125.128252+480";
  11557. LoggingTime = "20001115175121.127079+480";
  11558. RollupTime = "19970828225103.172448+480";
  11559. Message = "Message with key to search = 706900197";
  11560. RecordNumber = "323";
  11561. User = "amit";
  11562. Type = 5;
  11563. Classification = 7;
  11564. LogType = 2;
  11565. OriginalEvent = instance of __InstanceModificationEvent
  11566. { TargetInstance = instance of Win32_Service
  11567. {
  11568. Name = "SQL";
  11569. DisplayName = "SQL Database Server";
  11570. Status = 1;
  11571. };
  11572. PreviousInstance = instance of Win32_Service
  11573. {
  11574. Name = "SQL";
  11575. DisplayName = "SQL Database Server";
  11576. Status = 1;
  11577. };
  11578. };
  11579. };
  11580. instance of Microsoft_EELTOCEntryInFile
  11581. {
  11582. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11583. Entry ="Microsoft_EELEntry='323'";
  11584. };
  11585. instance of Microsoft_EELEntry
  11586. {
  11587. EventId = "324";
  11588. SourceSubsystemType="NT Event Log";
  11589. SourceSubsystemName ="driver";
  11590. SystemAbout = "abhishea_1";
  11591. SystemFrom = "abhishea_1";
  11592. DeliveredBy = "rakeshb_2";
  11593. Category="services";
  11594. Subcategory="sql server";
  11595. Priority = 1;
  11596. Severity = 2;
  11597. TimeGenerated = "19920303164102.115800+480";
  11598. LoggingTime = "19991014163411.136501+480";
  11599. RollupTime = "19950622180716.125413+480";
  11600. Message = "Message with key to search = 686325818";
  11601. RecordNumber = "324";
  11602. User = "amit";
  11603. Type = 6;
  11604. Classification = 2;
  11605. LogType = 2;
  11606. OriginalEvent = instance of __InstanceDeletionEvent
  11607. { TargetInstance = instance of Win32_Service
  11608. {
  11609. Name = "SQL";
  11610. DisplayName = "SQL Database Server";
  11611. Status = 3;
  11612. };
  11613. };
  11614. };
  11615. instance of Microsoft_EELTOCEntryInFile
  11616. {
  11617. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11618. Entry ="Microsoft_EELEntry='324'";
  11619. };
  11620. instance of Microsoft_EELEntry
  11621. {
  11622. EventId = "325";
  11623. SourceSubsystemType="NT Event Log";
  11624. SourceSubsystemName ="driver";
  11625. SystemAbout = "csood_i2";
  11626. SystemFrom = "abhishea_1";
  11627. DeliveredBy = "abhishea_1";
  11628. Category="services";
  11629. Subcategory="sql server";
  11630. Priority = 4;
  11631. Severity = 1;
  11632. TimeGenerated = "19900113134517.167677+480";
  11633. LoggingTime = "19970828202111.129502+480";
  11634. RollupTime = "19980917160800.112281+480";
  11635. Message = "Message with key to search = 1221029375";
  11636. RecordNumber = "325";
  11637. User = "N/A";
  11638. Type = 2;
  11639. Classification = 2;
  11640. LogType = 2;
  11641. OriginalEvent = instance of __InstanceCreationEvent
  11642. { TargetInstance = instance of Win32_Service
  11643. {
  11644. Name = "SQL";
  11645. DisplayName = "SQL Database Server";
  11646. Status = 1;
  11647. };
  11648. };
  11649. };
  11650. instance of Microsoft_EELTOCEntryInFile
  11651. {
  11652. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11653. Entry ="Microsoft_EELEntry='325'";
  11654. };
  11655. instance of Microsoft_EELEntry
  11656. {
  11657. EventId = "326";
  11658. SourceSubsystemType="SMS Log";
  11659. SourceSubsystemName ="Unknown";
  11660. SystemAbout = "csood_i2";
  11661. SystemFrom = "csood_i2";
  11662. DeliveredBy = "abhishea_1";
  11663. Category="services";
  11664. Subcategory="sql server";
  11665. Priority = 2;
  11666. Severity = 4;
  11667. TimeGenerated = "19910218142205.162116+480";
  11668. LoggingTime = "19991026001717.115991+480";
  11669. RollupTime = "20001111180114.109905+480";
  11670. Message = "Message with key to search = 905725378";
  11671. RecordNumber = "326";
  11672. User = "amit";
  11673. Type = 2;
  11674. Classification = 2;
  11675. LogType = 3;
  11676. OriginalEvent = instance of __InstanceModificationEvent
  11677. { TargetInstance = instance of Win32_Service
  11678. {
  11679. Name = "SQL";
  11680. DisplayName = "SQL Database Server";
  11681. Status = 3;
  11682. };
  11683. PreviousInstance = instance of Win32_Service
  11684. {
  11685. Name = "SQL";
  11686. DisplayName = "SQL Database Server";
  11687. Status = 1;
  11688. };
  11689. };
  11690. };
  11691. instance of Microsoft_EELTOCEntryInFile
  11692. {
  11693. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11694. Entry ="Microsoft_EELEntry='326'";
  11695. };
  11696. instance of Microsoft_EELEntry
  11697. {
  11698. EventId = "327";
  11699. SourceSubsystemType="NT Event Log";
  11700. SourceSubsystemName ="application";
  11701. SystemAbout = "srinik_1";
  11702. SystemFrom = "csood_i2";
  11703. DeliveredBy = "csood_i2";
  11704. Category="services";
  11705. Subcategory="sql server";
  11706. Priority = 1;
  11707. Severity = 4;
  11708. TimeGenerated = "19920307225126.199877+480";
  11709. LoggingTime = "20001107164906.106632+480";
  11710. RollupTime = "19960719194110.124466+480";
  11711. Message = "Message with key to search = 1357527204";
  11712. RecordNumber = "327";
  11713. User = "amit";
  11714. Type = 5;
  11715. Classification = 5;
  11716. LogType = 2;
  11717. OriginalEvent = instance of __InstanceDeletionEvent
  11718. { TargetInstance = instance of Win32_Service
  11719. {
  11720. Name = "SQL";
  11721. DisplayName = "SQL Database Server";
  11722. Status = 1;
  11723. };
  11724. };
  11725. };
  11726. instance of Microsoft_EELTOCEntryInFile
  11727. {
  11728. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11729. Entry ="Microsoft_EELEntry='327'";
  11730. };
  11731. instance of Microsoft_EELEntry
  11732. {
  11733. EventId = "328";
  11734. SourceSubsystemType="SMS Log";
  11735. SourceSubsystemName ="server";
  11736. SystemAbout = "srinik_1";
  11737. SystemFrom = "csood_i2";
  11738. DeliveredBy = "rakeshb_2";
  11739. Category="services";
  11740. Subcategory="sql server";
  11741. Priority = 1;
  11742. Severity = 1;
  11743. TimeGenerated = "19930404104206.126348+480";
  11744. LoggingTime = "19930428171205.138960+480";
  11745. RollupTime = "20001107181504.193466+480";
  11746. Message = "Message with key to search = 1722632559";
  11747. RecordNumber = "328";
  11748. User = "N/A";
  11749. Type = 4;
  11750. Classification = 7;
  11751. LogType = 1;
  11752. OriginalEvent = instance of __InstanceCreationEvent
  11753. { TargetInstance = instance of Win32_Service
  11754. {
  11755. Name = "SQL";
  11756. DisplayName = "SQL Database Server";
  11757. Status = 3;
  11758. };
  11759. };
  11760. };
  11761. instance of Microsoft_EELTOCEntryInFile
  11762. {
  11763. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11764. Entry ="Microsoft_EELEntry='328'";
  11765. };
  11766. instance of Microsoft_EELEntry
  11767. {
  11768. EventId = "329";
  11769. SourceSubsystemType="NT Event Log";
  11770. SourceSubsystemName ="Unknown";
  11771. SystemAbout = "rakeshb_2";
  11772. SystemFrom = "abhishea_1";
  11773. DeliveredBy = "rakeshb_2";
  11774. Category="services";
  11775. Subcategory="sql server";
  11776. Priority = 1;
  11777. Severity = 2;
  11778. TimeGenerated = "19910210055109.188915+480";
  11779. LoggingTime = "19991002035524.168976+480";
  11780. RollupTime = "19900121051524.165514+480";
  11781. Message = "Message with key to search = 851018750";
  11782. RecordNumber = "329";
  11783. User = "amit";
  11784. Type = 6;
  11785. Classification = 4;
  11786. LogType = 2;
  11787. OriginalEvent = instance of __InstanceModificationEvent
  11788. { TargetInstance = instance of Win32_Service
  11789. {
  11790. Name = "SQL";
  11791. DisplayName = "SQL Database Server";
  11792. Status = 2;
  11793. };
  11794. PreviousInstance = instance of Win32_Service
  11795. {
  11796. Name = "SQL";
  11797. DisplayName = "SQL Database Server";
  11798. Status = 2;
  11799. };
  11800. };
  11801. };
  11802. instance of Microsoft_EELTOCEntryInFile
  11803. {
  11804. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11805. Entry ="Microsoft_EELEntry='329'";
  11806. };
  11807. instance of Microsoft_EELEntry
  11808. {
  11809. EventId = "330";
  11810. SourceSubsystemType="SMS Log";
  11811. SourceSubsystemName ="Unknown";
  11812. SystemAbout = "csood_i2";
  11813. SystemFrom = "srinik_1";
  11814. DeliveredBy = "rakeshb_2";
  11815. Category="services";
  11816. Subcategory="sql server";
  11817. Priority = 4;
  11818. Severity = 1;
  11819. TimeGenerated = "19900121055303.164864+480";
  11820. LoggingTime = "19950622212803.139988+480";
  11821. RollupTime = "19960727035318.145776+480";
  11822. Message = "Message with key to search = 976218920";
  11823. RecordNumber = "330";
  11824. User = "sriravi";
  11825. Type = 2;
  11826. Classification = 8;
  11827. LogType = 3;
  11828. OriginalEvent = instance of __InstanceDeletionEvent
  11829. { TargetInstance = instance of Win32_Service
  11830. {
  11831. Name = "SQL";
  11832. DisplayName = "SQL Database Server";
  11833. Status = 4;
  11834. };
  11835. };
  11836. };
  11837. instance of Microsoft_EELTOCEntryInFile
  11838. {
  11839. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11840. Entry ="Microsoft_EELEntry='330'";
  11841. };
  11842. instance of Microsoft_EELEntry
  11843. {
  11844. EventId = "331";
  11845. SourceSubsystemType="SMS Log";
  11846. SourceSubsystemName ="Unknown";
  11847. SystemAbout = "srinik_1";
  11848. SystemFrom = "rakeshb_2";
  11849. DeliveredBy = "rakeshb_2";
  11850. Category="services";
  11851. Subcategory="sql server";
  11852. Priority = 1;
  11853. Severity = 2;
  11854. TimeGenerated = "19980917004420.106399+480";
  11855. LoggingTime = "19960715160813.142197+480";
  11856. RollupTime = "19930408181505.198381+480";
  11857. Message = "Message with key to search = 165867564";
  11858. RecordNumber = "331";
  11859. User = "rishi";
  11860. Type = 5;
  11861. Classification = 4;
  11862. LogType = 3;
  11863. OriginalEvent = instance of __InstanceCreationEvent
  11864. { TargetInstance = instance of Win32_Service
  11865. {
  11866. Name = "SQL";
  11867. DisplayName = "SQL Database Server";
  11868. Status = 1;
  11869. };
  11870. };
  11871. };
  11872. instance of Microsoft_EELTOCEntryInFile
  11873. {
  11874. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11875. Entry ="Microsoft_EELEntry='331'";
  11876. };
  11877. instance of Microsoft_EELEntry
  11878. {
  11879. EventId = "332";
  11880. SourceSubsystemType="SMS Log";
  11881. SourceSubsystemName ="server";
  11882. SystemAbout = "srinik_1";
  11883. SystemFrom = "abhishea_1";
  11884. DeliveredBy = "abhishea_1";
  11885. Category="services";
  11886. Subcategory="sql server";
  11887. Priority = 3;
  11888. Severity = 4;
  11889. TimeGenerated = "19940521065125.128252+480";
  11890. LoggingTime = "19980901171110.148613+480";
  11891. RollupTime = "19991010214012.157605+480";
  11892. Message = "Message with key to search = 1443624831";
  11893. RecordNumber = "332";
  11894. User = "sriravi";
  11895. Type = 0;
  11896. Classification = 6;
  11897. LogType = 1;
  11898. OriginalEvent = instance of __InstanceModificationEvent
  11899. { TargetInstance = instance of Win32_Service
  11900. {
  11901. Name = "SQL";
  11902. DisplayName = "SQL Database Server";
  11903. Status = 3;
  11904. };
  11905. PreviousInstance = instance of Win32_Service
  11906. {
  11907. Name = "SQL";
  11908. DisplayName = "SQL Database Server";
  11909. Status = 2;
  11910. };
  11911. };
  11912. };
  11913. instance of Microsoft_EELTOCEntryInFile
  11914. {
  11915. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  11916. Entry ="Microsoft_EELEntry='332'";
  11917. };
  11918. instance of Microsoft_EELEntry
  11919. {
  11920. EventId = "333";
  11921. SourceSubsystemType="NT Event Log";
  11922. SourceSubsystemName ="server";
  11923. SystemAbout = "srinik_1";
  11924. SystemFrom = "rakeshb_2";
  11925. DeliveredBy = "rakeshb_2";
  11926. Category="services";
  11927. Subcategory="sql server";
  11928. Priority = 1;
  11929. Severity = 2;
  11930. TimeGenerated = "19960707041701.143518+480";
  11931. LoggingTime = "20011212083816.176330+480";
  11932. RollupTime = "20011216222611.169488+480";
  11933. Message = "Message with key to search = 959859808";
  11934. RecordNumber = "333";
  11935. User = "rishi";
  11936. Type = 5;
  11937. Classification = 2;
  11938. LogType = 1;
  11939. OriginalEvent = instance of __InstanceDeletionEvent
  11940. { TargetInstance = instance of Win32_Service
  11941. {
  11942. Name = "SQL";
  11943. DisplayName = "SQL Database Server";
  11944. Status = 2;
  11945. };
  11946. };
  11947. };
  11948. instance of Microsoft_EELTOCEntryInFile
  11949. {
  11950. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  11951. Entry ="Microsoft_EELEntry='333'";
  11952. };
  11953. instance of Microsoft_EELEntry
  11954. {
  11955. EventId = "334";
  11956. SourceSubsystemType="SMS Log";
  11957. SourceSubsystemName ="server";
  11958. SystemAbout = "rakeshb_2";
  11959. SystemFrom = "srinik_1";
  11960. DeliveredBy = "rakeshb_2";
  11961. Category="services";
  11962. Subcategory="sql server";
  11963. Priority = 3;
  11964. Severity = 4;
  11965. TimeGenerated = "19991026050316.197328+480";
  11966. LoggingTime = "19970804171704.178258+480";
  11967. RollupTime = "19940509140519.130882+480";
  11968. Message = "Message with key to search = 1789328675";
  11969. RecordNumber = "334";
  11970. User = "amit";
  11971. Type = 3;
  11972. Classification = 5;
  11973. LogType = 2;
  11974. OriginalEvent = instance of __InstanceCreationEvent
  11975. { TargetInstance = instance of Win32_Service
  11976. {
  11977. Name = "SQL";
  11978. DisplayName = "SQL Database Server";
  11979. Status = 4;
  11980. };
  11981. };
  11982. };
  11983. instance of Microsoft_EELTOCEntryInFile
  11984. {
  11985. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  11986. Entry ="Microsoft_EELEntry='334'";
  11987. };
  11988. instance of Microsoft_EELEntry
  11989. {
  11990. EventId = "335";
  11991. SourceSubsystemType="NT Event Log";
  11992. SourceSubsystemName ="application";
  11993. SystemAbout = "abhishea_1";
  11994. SystemFrom = "csood_i2";
  11995. DeliveredBy = "csood_i2";
  11996. Category="services";
  11997. Subcategory="sql server";
  11998. Priority = 3;
  11999. Severity = 2;
  12000. TimeGenerated = "19930416014613.173256+480";
  12001. LoggingTime = "19970816220125.112705+480";
  12002. RollupTime = "19950610042615.137251+480";
  12003. Message = "Message with key to search = 1397432960";
  12004. RecordNumber = "335";
  12005. User = "sriravi";
  12006. Type = 2;
  12007. Classification = 4;
  12008. LogType = 1;
  12009. OriginalEvent = instance of __InstanceModificationEvent
  12010. { TargetInstance = instance of Win32_Service
  12011. {
  12012. Name = "SQL";
  12013. DisplayName = "SQL Database Server";
  12014. Status = 1;
  12015. };
  12016. PreviousInstance = instance of Win32_Service
  12017. {
  12018. Name = "SQL";
  12019. DisplayName = "SQL Database Server";
  12020. Status = 4;
  12021. };
  12022. };
  12023. };
  12024. instance of Microsoft_EELTOCEntryInFile
  12025. {
  12026. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12027. Entry ="Microsoft_EELEntry='335'";
  12028. };
  12029. instance of Microsoft_EELEntry
  12030. {
  12031. EventId = "336";
  12032. SourceSubsystemType="NT Event Log";
  12033. SourceSubsystemName ="server";
  12034. SystemAbout = "srinik_1";
  12035. SystemFrom = "srinik_1";
  12036. DeliveredBy = "abhishea_1";
  12037. Category="services";
  12038. Subcategory="sql server";
  12039. Priority = 1;
  12040. Severity = 1;
  12041. TimeGenerated = "19910218235703.173858+480";
  12042. LoggingTime = "19991002043704.151161+480";
  12043. RollupTime = "19960707092328.108749+480";
  12044. Message = "Message with key to search = 183010505";
  12045. RecordNumber = "336";
  12046. User = "N/A";
  12047. Type = 4;
  12048. Classification = 5;
  12049. LogType = 3;
  12050. OriginalEvent = instance of __InstanceDeletionEvent
  12051. { TargetInstance = instance of Win32_Service
  12052. {
  12053. Name = "SQL";
  12054. DisplayName = "SQL Database Server";
  12055. Status = 2;
  12056. };
  12057. };
  12058. };
  12059. instance of Microsoft_EELTOCEntryInFile
  12060. {
  12061. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12062. Entry ="Microsoft_EELEntry='336'";
  12063. };
  12064. instance of Microsoft_EELEntry
  12065. {
  12066. EventId = "337";
  12067. SourceSubsystemType="NT Event Log";
  12068. SourceSubsystemName ="application";
  12069. SystemAbout = "csood_i2";
  12070. SystemFrom = "abhishea_1";
  12071. DeliveredBy = "srinik_1";
  12072. Category="services";
  12073. Subcategory="sql server";
  12074. Priority = 4;
  12075. Severity = 4;
  12076. TimeGenerated = "19940521214719.130747+480";
  12077. LoggingTime = "19950606031522.182294+480";
  12078. RollupTime = "19960715115007.148517+480";
  12079. Message = "Message with key to search = 1316463270";
  12080. RecordNumber = "337";
  12081. User = "amit";
  12082. Type = 2;
  12083. Classification = 3;
  12084. LogType = 3;
  12085. OriginalEvent = instance of __InstanceCreationEvent
  12086. { TargetInstance = instance of Win32_Service
  12087. {
  12088. Name = "SQL";
  12089. DisplayName = "SQL Database Server";
  12090. Status = 1;
  12091. };
  12092. };
  12093. };
  12094. instance of Microsoft_EELTOCEntryInFile
  12095. {
  12096. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12097. Entry ="Microsoft_EELEntry='337'";
  12098. };
  12099. instance of Microsoft_EELEntry
  12100. {
  12101. EventId = "338";
  12102. SourceSubsystemType="SMS Log";
  12103. SourceSubsystemName ="Unknown";
  12104. SystemAbout = "rakeshb_2";
  12105. SystemFrom = "abhishea_1";
  12106. DeliveredBy = "rakeshb_2";
  12107. Category="services";
  12108. Subcategory="sql server";
  12109. Priority = 1;
  12110. Severity = 2;
  12111. TimeGenerated = "19920323163023.199721+480";
  12112. LoggingTime = "19970828204001.179378+480";
  12113. RollupTime = "19980921042822.181054+480";
  12114. Message = "Message with key to search = 1921109612";
  12115. RecordNumber = "338";
  12116. User = "rishi";
  12117. Type = 0;
  12118. Classification = 7;
  12119. LogType = 2;
  12120. OriginalEvent = instance of __InstanceModificationEvent
  12121. { TargetInstance = instance of Win32_Service
  12122. {
  12123. Name = "SQL";
  12124. DisplayName = "SQL Database Server";
  12125. Status = 4;
  12126. };
  12127. PreviousInstance = instance of Win32_Service
  12128. {
  12129. Name = "SQL";
  12130. DisplayName = "SQL Database Server";
  12131. Status = 3;
  12132. };
  12133. };
  12134. };
  12135. instance of Microsoft_EELTOCEntryInFile
  12136. {
  12137. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12138. Entry ="Microsoft_EELEntry='338'";
  12139. };
  12140. instance of Microsoft_EELEntry
  12141. {
  12142. EventId = "339";
  12143. SourceSubsystemType="NT Event Log";
  12144. SourceSubsystemName ="driver";
  12145. SystemAbout = "csood_i2";
  12146. SystemFrom = "abhishea_1";
  12147. DeliveredBy = "srinik_1";
  12148. Category="services";
  12149. Subcategory="sql server";
  12150. Priority = 2;
  12151. Severity = 1;
  12152. TimeGenerated = "19950614183926.113037+480";
  12153. LoggingTime = "20001111111415.169407+480";
  12154. RollupTime = "19950606215213.195252+480";
  12155. Message = "Message with key to search = 432545775";
  12156. RecordNumber = "339";
  12157. User = "rishi";
  12158. Type = 0;
  12159. Classification = 1;
  12160. LogType = 1;
  12161. OriginalEvent = instance of __InstanceDeletionEvent
  12162. { TargetInstance = instance of Win32_Service
  12163. {
  12164. Name = "SQL";
  12165. DisplayName = "SQL Database Server";
  12166. Status = 2;
  12167. };
  12168. };
  12169. };
  12170. instance of Microsoft_EELTOCEntryInFile
  12171. {
  12172. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12173. Entry ="Microsoft_EELEntry='339'";
  12174. };
  12175. instance of Microsoft_EELEntry
  12176. {
  12177. EventId = "340";
  12178. SourceSubsystemType="NT Event Log";
  12179. SourceSubsystemName ="driver";
  12180. SystemAbout = "rakeshb_2";
  12181. SystemFrom = "srinik_1";
  12182. DeliveredBy = "srinik_1";
  12183. Category="services";
  12184. Subcategory="sql server";
  12185. Priority = 1;
  12186. Severity = 1;
  12187. TimeGenerated = "19930428191319.169932+480";
  12188. LoggingTime = "19960715090825.112255+480";
  12189. RollupTime = "19970816110027.182012+480";
  12190. Message = "Message with key to search = 716973732";
  12191. RecordNumber = "340";
  12192. User = "amit";
  12193. Type = 4;
  12194. Classification = 5;
  12195. LogType = 3;
  12196. OriginalEvent = instance of __InstanceCreationEvent
  12197. { TargetInstance = instance of Win32_Service
  12198. {
  12199. Name = "SQL";
  12200. DisplayName = "SQL Database Server";
  12201. Status = 2;
  12202. };
  12203. };
  12204. };
  12205. instance of Microsoft_EELTOCEntryInFile
  12206. {
  12207. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12208. Entry ="Microsoft_EELEntry='340'";
  12209. };
  12210. instance of Microsoft_EELEntry
  12211. {
  12212. EventId = "341";
  12213. SourceSubsystemType="SMS Log";
  12214. SourceSubsystemName ="server";
  12215. SystemAbout = "csood_i2";
  12216. SystemFrom = "abhishea_1";
  12217. DeliveredBy = "rakeshb_2";
  12218. Category="services";
  12219. Subcategory="sql server";
  12220. Priority = 2;
  12221. Severity = 3;
  12222. TimeGenerated = "19930412171103.180288+480";
  12223. LoggingTime = "19930416045609.199571+480";
  12224. RollupTime = "20001111171316.101924+480";
  12225. Message = "Message with key to search = 1484683005";
  12226. RecordNumber = "341";
  12227. User = "amit";
  12228. Type = 1;
  12229. Classification = 1;
  12230. LogType = 2;
  12231. OriginalEvent = instance of __InstanceModificationEvent
  12232. { TargetInstance = instance of Win32_Service
  12233. {
  12234. Name = "SQL";
  12235. DisplayName = "SQL Database Server";
  12236. Status = 3;
  12237. };
  12238. PreviousInstance = instance of Win32_Service
  12239. {
  12240. Name = "SQL";
  12241. DisplayName = "SQL Database Server";
  12242. Status = 4;
  12243. };
  12244. };
  12245. };
  12246. instance of Microsoft_EELTOCEntryInFile
  12247. {
  12248. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12249. Entry ="Microsoft_EELEntry='341'";
  12250. };
  12251. instance of Microsoft_EELEntry
  12252. {
  12253. EventId = "342";
  12254. SourceSubsystemType="NT Event Log";
  12255. SourceSubsystemName ="server";
  12256. SystemAbout = "rakeshb_2";
  12257. SystemFrom = "rakeshb_2";
  12258. DeliveredBy = "abhishea_1";
  12259. Category="services";
  12260. Subcategory="sql server";
  12261. Priority = 3;
  12262. Severity = 3;
  12263. TimeGenerated = "19900125201921.180465+480";
  12264. LoggingTime = "20001111221622.198845+480";
  12265. RollupTime = "19970808214025.107844+480";
  12266. Message = "Message with key to search = 190365606";
  12267. RecordNumber = "342";
  12268. User = "amit";
  12269. Type = 4;
  12270. Classification = 7;
  12271. LogType = 2;
  12272. OriginalEvent = instance of __InstanceDeletionEvent
  12273. { TargetInstance = instance of Win32_Service
  12274. {
  12275. Name = "SQL";
  12276. DisplayName = "SQL Database Server";
  12277. Status = 1;
  12278. };
  12279. };
  12280. };
  12281. instance of Microsoft_EELTOCEntryInFile
  12282. {
  12283. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12284. Entry ="Microsoft_EELEntry='342'";
  12285. };
  12286. instance of Microsoft_EELEntry
  12287. {
  12288. EventId = "343";
  12289. SourceSubsystemType="NT Event Log";
  12290. SourceSubsystemName ="server";
  12291. SystemAbout = "csood_i2";
  12292. SystemFrom = "csood_i2";
  12293. DeliveredBy = "rakeshb_2";
  12294. Category="services";
  12295. Subcategory="sql server";
  12296. Priority = 3;
  12297. Severity = 3;
  12298. TimeGenerated = "19900113061006.118810+480";
  12299. LoggingTime = "20011220031918.131046+480";
  12300. RollupTime = "19980921231307.116603+480";
  12301. Message = "Message with key to search = 401974667";
  12302. RecordNumber = "343";
  12303. User = "rishi";
  12304. Type = 3;
  12305. Classification = 2;
  12306. LogType = 1;
  12307. OriginalEvent = instance of __InstanceCreationEvent
  12308. { TargetInstance = instance of Win32_Service
  12309. {
  12310. Name = "SQL";
  12311. DisplayName = "SQL Database Server";
  12312. Status = 4;
  12313. };
  12314. };
  12315. };
  12316. instance of Microsoft_EELTOCEntryInFile
  12317. {
  12318. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12319. Entry ="Microsoft_EELEntry='343'";
  12320. };
  12321. instance of Microsoft_EELEntry
  12322. {
  12323. EventId = "344";
  12324. SourceSubsystemType="SMS Log";
  12325. SourceSubsystemName ="application";
  12326. SystemAbout = "srinik_1";
  12327. SystemFrom = "abhishea_1";
  12328. DeliveredBy = "rakeshb_2";
  12329. Category="services";
  12330. Subcategory="sql server";
  12331. Priority = 1;
  12332. Severity = 1;
  12333. TimeGenerated = "19910222180808.149251+480";
  12334. LoggingTime = "19991022133700.191449+480";
  12335. RollupTime = "19930428082414.135299+480";
  12336. Message = "Message with key to search = 1249948451";
  12337. RecordNumber = "344";
  12338. User = "N/A";
  12339. Type = 3;
  12340. Classification = 2;
  12341. LogType = 2;
  12342. OriginalEvent = instance of __InstanceModificationEvent
  12343. { TargetInstance = instance of Win32_Service
  12344. {
  12345. Name = "SQL";
  12346. DisplayName = "SQL Database Server";
  12347. Status = 4;
  12348. };
  12349. PreviousInstance = instance of Win32_Service
  12350. {
  12351. Name = "SQL";
  12352. DisplayName = "SQL Database Server";
  12353. Status = 1;
  12354. };
  12355. };
  12356. };
  12357. instance of Microsoft_EELTOCEntryInFile
  12358. {
  12359. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12360. Entry ="Microsoft_EELEntry='344'";
  12361. };
  12362. instance of Microsoft_EELEntry
  12363. {
  12364. EventId = "345";
  12365. SourceSubsystemType="SMS Log";
  12366. SourceSubsystemName ="server";
  12367. SystemAbout = "csood_i2";
  12368. SystemFrom = "srinik_1";
  12369. DeliveredBy = "srinik_1";
  12370. Category="services";
  12371. Subcategory="sql server";
  12372. Priority = 3;
  12373. Severity = 3;
  12374. TimeGenerated = "19950622152309.197732+480";
  12375. LoggingTime = "19950622031515.178525+480";
  12376. RollupTime = "19930408004310.178205+480";
  12377. Message = "Message with key to search = 1103096341";
  12378. RecordNumber = "345";
  12379. User = "N/A";
  12380. Type = 4;
  12381. Classification = 2;
  12382. LogType = 2;
  12383. OriginalEvent = instance of __InstanceDeletionEvent
  12384. { TargetInstance = instance of Win32_Service
  12385. {
  12386. Name = "SQL";
  12387. DisplayName = "SQL Database Server";
  12388. Status = 3;
  12389. };
  12390. };
  12391. };
  12392. instance of Microsoft_EELTOCEntryInFile
  12393. {
  12394. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12395. Entry ="Microsoft_EELEntry='345'";
  12396. };
  12397. instance of Microsoft_EELEntry
  12398. {
  12399. EventId = "346";
  12400. SourceSubsystemType="SMS Log";
  12401. SourceSubsystemName ="Unknown";
  12402. SystemAbout = "srinik_1";
  12403. SystemFrom = "srinik_1";
  12404. DeliveredBy = "csood_i2";
  12405. Category="services";
  12406. Subcategory="sql server";
  12407. Priority = 2;
  12408. Severity = 3;
  12409. TimeGenerated = "19900113220012.188115+480";
  12410. LoggingTime = "20011208020901.124527+480";
  12411. RollupTime = "19950622045722.194875+480";
  12412. Message = "Message with key to search = 225854452";
  12413. RecordNumber = "346";
  12414. User = "amit";
  12415. Type = 2;
  12416. Classification = 5;
  12417. LogType = 3;
  12418. OriginalEvent = instance of __InstanceCreationEvent
  12419. { TargetInstance = instance of Win32_Service
  12420. {
  12421. Name = "SQL";
  12422. DisplayName = "SQL Database Server";
  12423. Status = 4;
  12424. };
  12425. };
  12426. };
  12427. instance of Microsoft_EELTOCEntryInFile
  12428. {
  12429. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12430. Entry ="Microsoft_EELEntry='346'";
  12431. };
  12432. instance of Microsoft_EELEntry
  12433. {
  12434. EventId = "347";
  12435. SourceSubsystemType="NT Event Log";
  12436. SourceSubsystemName ="driver";
  12437. SystemAbout = "abhishea_1";
  12438. SystemFrom = "srinik_1";
  12439. DeliveredBy = "csood_i2";
  12440. Category="services";
  12441. Subcategory="sql server";
  12442. Priority = 4;
  12443. Severity = 1;
  12444. TimeGenerated = "19900117101626.120880+480";
  12445. LoggingTime = "20011208032425.177011+480";
  12446. RollupTime = "20011220085325.114207+480";
  12447. Message = "Message with key to search = 811464360";
  12448. RecordNumber = "347";
  12449. User = "sriravi";
  12450. Type = 1;
  12451. Classification = 6;
  12452. LogType = 2;
  12453. OriginalEvent = instance of __InstanceModificationEvent
  12454. { TargetInstance = instance of Win32_Service
  12455. {
  12456. Name = "SQL";
  12457. DisplayName = "SQL Database Server";
  12458. Status = 3;
  12459. };
  12460. PreviousInstance = instance of Win32_Service
  12461. {
  12462. Name = "SQL";
  12463. DisplayName = "SQL Database Server";
  12464. Status = 2;
  12465. };
  12466. };
  12467. };
  12468. instance of Microsoft_EELTOCEntryInFile
  12469. {
  12470. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12471. Entry ="Microsoft_EELEntry='347'";
  12472. };
  12473. instance of Microsoft_EELEntry
  12474. {
  12475. EventId = "348";
  12476. SourceSubsystemType="NT Event Log";
  12477. SourceSubsystemName ="server";
  12478. SystemAbout = "csood_i2";
  12479. SystemFrom = "abhishea_1";
  12480. DeliveredBy = "srinik_1";
  12481. Category="services";
  12482. Subcategory="sql server";
  12483. Priority = 3;
  12484. Severity = 2;
  12485. TimeGenerated = "19900113004917.145732+480";
  12486. LoggingTime = "19980921031015.130798+480";
  12487. RollupTime = "19940521021803.199330+480";
  12488. Message = "Message with key to search = 1118705304";
  12489. RecordNumber = "348";
  12490. User = "sriravi";
  12491. Type = 2;
  12492. Classification = 7;
  12493. LogType = 2;
  12494. OriginalEvent = instance of __InstanceDeletionEvent
  12495. { TargetInstance = instance of Win32_Service
  12496. {
  12497. Name = "SQL";
  12498. DisplayName = "SQL Database Server";
  12499. Status = 3;
  12500. };
  12501. };
  12502. };
  12503. instance of Microsoft_EELTOCEntryInFile
  12504. {
  12505. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12506. Entry ="Microsoft_EELEntry='348'";
  12507. };
  12508. instance of Microsoft_EELEntry
  12509. {
  12510. EventId = "349";
  12511. SourceSubsystemType="NT Event Log";
  12512. SourceSubsystemName ="server";
  12513. SystemAbout = "rakeshb_2";
  12514. SystemFrom = "abhishea_1";
  12515. DeliveredBy = "rakeshb_2";
  12516. Category="services";
  12517. Subcategory="sql server";
  12518. Priority = 3;
  12519. Severity = 1;
  12520. TimeGenerated = "19910218105108.118496+480";
  12521. LoggingTime = "19991010175006.115527+480";
  12522. RollupTime = "19900125034323.131230+480";
  12523. Message = "Message with key to search = 1038819594";
  12524. RecordNumber = "349";
  12525. User = "rishi";
  12526. Type = 0;
  12527. Classification = 1;
  12528. LogType = 2;
  12529. OriginalEvent = instance of __InstanceCreationEvent
  12530. { TargetInstance = instance of Win32_Service
  12531. {
  12532. Name = "SQL";
  12533. DisplayName = "SQL Database Server";
  12534. Status = 1;
  12535. };
  12536. };
  12537. };
  12538. instance of Microsoft_EELTOCEntryInFile
  12539. {
  12540. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12541. Entry ="Microsoft_EELEntry='349'";
  12542. };
  12543. instance of Microsoft_EELEntry
  12544. {
  12545. EventId = "350";
  12546. SourceSubsystemType="SMS Log";
  12547. SourceSubsystemName ="Unknown";
  12548. SystemAbout = "srinik_1";
  12549. SystemFrom = "csood_i2";
  12550. DeliveredBy = "csood_i2";
  12551. Category="services";
  12552. Subcategory="sql server";
  12553. Priority = 4;
  12554. Severity = 3;
  12555. TimeGenerated = "19900101020824.161076+480";
  12556. LoggingTime = "19970812082803.168616+480";
  12557. RollupTime = "20011228140413.109404+480";
  12558. Message = "Message with key to search = 1993483593";
  12559. RecordNumber = "350";
  12560. User = "sriravi";
  12561. Type = 3;
  12562. Classification = 3;
  12563. LogType = 3;
  12564. OriginalEvent = instance of __InstanceModificationEvent
  12565. { TargetInstance = instance of Win32_Service
  12566. {
  12567. Name = "SQL";
  12568. DisplayName = "SQL Database Server";
  12569. Status = 4;
  12570. };
  12571. PreviousInstance = instance of Win32_Service
  12572. {
  12573. Name = "SQL";
  12574. DisplayName = "SQL Database Server";
  12575. Status = 4;
  12576. };
  12577. };
  12578. };
  12579. instance of Microsoft_EELTOCEntryInFile
  12580. {
  12581. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12582. Entry ="Microsoft_EELEntry='350'";
  12583. };
  12584. instance of Microsoft_EELEntry
  12585. {
  12586. EventId = "351";
  12587. SourceSubsystemType="SMS Log";
  12588. SourceSubsystemName ="driver";
  12589. SystemAbout = "rakeshb_2";
  12590. SystemFrom = "abhishea_1";
  12591. DeliveredBy = "srinik_1";
  12592. Category="services";
  12593. Subcategory="sql server";
  12594. Priority = 2;
  12595. Severity = 3;
  12596. TimeGenerated = "19900109094410.180889+480";
  12597. LoggingTime = "19980913224720.129061+480";
  12598. RollupTime = "19960719191115.129516+480";
  12599. Message = "Message with key to search = 1263722308";
  12600. RecordNumber = "351";
  12601. User = "amit";
  12602. Type = 3;
  12603. Classification = 1;
  12604. LogType = 3;
  12605. OriginalEvent = instance of __InstanceDeletionEvent
  12606. { TargetInstance = instance of Win32_Service
  12607. {
  12608. Name = "SQL";
  12609. DisplayName = "SQL Database Server";
  12610. Status = 1;
  12611. };
  12612. };
  12613. };
  12614. instance of Microsoft_EELTOCEntryInFile
  12615. {
  12616. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12617. Entry ="Microsoft_EELEntry='351'";
  12618. };
  12619. instance of Microsoft_EELTOC
  12620. {
  12621. Category="__InstanceCreationEvent";
  12622. Description ="Instance Creation Event ";
  12623. };
  12624. instance of Microsoft_EELTOC
  12625. {
  12626. Category="__InstanceModificationEvent";
  12627. Description ="Instance Modification Event ";
  12628. };
  12629. instance of Microsoft_EELTOC
  12630. {
  12631. Category="__InstanceDeletionEvent";
  12632. Description ="Instance Deletion Event ";
  12633. };
  12634. // Various modem events
  12635. class Win32_Modem
  12636. {
  12637. [key] uint64 DeviceId;
  12638. string Manufacturer;
  12639. boolean OffTheHook;
  12640. };
  12641. instance of Microsoft_EELEntry
  12642. {
  12643. EventId = "352";
  12644. SourceSubsystemType="SMS Log";
  12645. SourceSubsystemName ="Unknown";
  12646. SystemAbout = "Gafoor_1";
  12647. SystemFrom = "Basheer_1";
  12648. DeliveredBy = "Basheer_1";
  12649. Category="modems";
  12650. Subcategory="general";
  12651. Priority = 2;
  12652. Severity = 4;
  12653. TimeGenerated = "19910214094503.101193+480";
  12654. LoggingTime = "19950602090623.130632+480";
  12655. RollupTime = "19910202081311.187098+480";
  12656. Message = "Message with key to search = 726015194";
  12657. RecordNumber = "352";
  12658. User = "sriravi";
  12659. Type = 3;
  12660. Classification = 4;
  12661. LogType = 2;
  12662. OriginalEvent = instance of __InstanceCreationEvent
  12663. { TargetInstance = instance of Win32_Modem
  12664. {
  12665. DeviceId = 1329647895;
  12666. Manufacturer = "Acme Corporation";
  12667. OffTheHook = false;
  12668. };
  12669. };
  12670. };
  12671. instance of Microsoft_EELTOCEntryInFile
  12672. {
  12673. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12674. Entry ="Microsoft_EELEntry='352'";
  12675. };
  12676. instance of Microsoft_EELEntry
  12677. {
  12678. EventId = "353";
  12679. SourceSubsystemType="SMS Log";
  12680. SourceSubsystemName ="Unknown";
  12681. SystemAbout = "Alam_i2";
  12682. SystemFrom = "Gafoor_1";
  12683. DeliveredBy = "Kurshed_2";
  12684. Category="modems";
  12685. Subcategory="general";
  12686. Priority = 4;
  12687. Severity = 2;
  12688. TimeGenerated = "19960727182216.100452+480";
  12689. LoggingTime = "19910206071526.107278+480";
  12690. RollupTime = "19940517101405.190203+480";
  12691. Message = "Message with key to search = 1667527441";
  12692. RecordNumber = "353";
  12693. User = "rishi";
  12694. Type = 6;
  12695. Classification = 8;
  12696. LogType = 3;
  12697. OriginalEvent = instance of __InstanceModificationEvent
  12698. { TargetInstance = instance of Win32_Modem
  12699. {
  12700. DeviceId = 271716257;
  12701. Manufacturer = "Acme Corporation";
  12702. OffTheHook = true;
  12703. };
  12704. PreviousInstance = instance of Win32_Modem
  12705. {
  12706. DeviceId = 866215845;
  12707. Manufacturer = "Acme Corporation";
  12708. OffTheHook = false;
  12709. };
  12710. };
  12711. };
  12712. instance of Microsoft_EELTOCEntryInFile
  12713. {
  12714. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12715. Entry ="Microsoft_EELEntry='353'";
  12716. };
  12717. instance of Microsoft_EELEntry
  12718. {
  12719. EventId = "354";
  12720. SourceSubsystemType="NT Event Log";
  12721. SourceSubsystemName ="application";
  12722. SystemAbout = "Alam_i2";
  12723. SystemFrom = "Gafoor_1";
  12724. DeliveredBy = "Basheer_1";
  12725. Category="modems";
  12726. Subcategory="general";
  12727. Priority = 4;
  12728. Severity = 1;
  12729. TimeGenerated = "19960723010103.136948+480";
  12730. LoggingTime = "20011220221713.110310+480";
  12731. RollupTime = "19960715013903.107583+480";
  12732. Message = "Message with key to search = 1513909030";
  12733. RecordNumber = "354";
  12734. User = "amit";
  12735. Type = 5;
  12736. Classification = 5;
  12737. LogType = 3;
  12738. OriginalEvent = instance of __InstanceDeletionEvent
  12739. { TargetInstance = instance of Win32_Modem
  12740. {
  12741. DeviceId = 1239150328;
  12742. Manufacturer = "Acme Corporation";
  12743. OffTheHook = true;
  12744. };
  12745. };
  12746. };
  12747. instance of Microsoft_EELTOCEntryInFile
  12748. {
  12749. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12750. Entry ="Microsoft_EELEntry='354'";
  12751. };
  12752. instance of Microsoft_EELEntry
  12753. {
  12754. EventId = "355";
  12755. SourceSubsystemType="SMS Log";
  12756. SourceSubsystemName ="server";
  12757. SystemAbout = "Gafoor_1";
  12758. SystemFrom = "Alam_i2";
  12759. DeliveredBy = "Gafoor_1";
  12760. Category="modems";
  12761. Subcategory="general";
  12762. Priority = 1;
  12763. Severity = 3;
  12764. TimeGenerated = "19940501190821.138215+480";
  12765. LoggingTime = "19920311042923.192522+480";
  12766. RollupTime = "20011212012616.169891+480";
  12767. Message = "Message with key to search = 1251292453";
  12768. RecordNumber = "355";
  12769. User = "N/A";
  12770. Type = 0;
  12771. Classification = 2;
  12772. LogType = 3;
  12773. OriginalEvent = instance of __InstanceCreationEvent
  12774. { TargetInstance = instance of Win32_Modem
  12775. {
  12776. DeviceId = 885430673;
  12777. Manufacturer = "Acme Corporation";
  12778. OffTheHook = false;
  12779. };
  12780. };
  12781. };
  12782. instance of Microsoft_EELTOCEntryInFile
  12783. {
  12784. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12785. Entry ="Microsoft_EELEntry='355'";
  12786. };
  12787. instance of Microsoft_EELEntry
  12788. {
  12789. EventId = "356";
  12790. SourceSubsystemType="NT Event Log";
  12791. SourceSubsystemName ="application";
  12792. SystemAbout = "Alam_i2";
  12793. SystemFrom = "Basheer_1";
  12794. DeliveredBy = "Gafoor_1";
  12795. Category="modems";
  12796. Subcategory="general";
  12797. Priority = 1;
  12798. Severity = 3;
  12799. TimeGenerated = "19960711212825.126669+480";
  12800. LoggingTime = "19970824044103.138025+480";
  12801. RollupTime = "19991018064025.118317+480";
  12802. Message = "Message with key to search = 1913819719";
  12803. RecordNumber = "356";
  12804. User = "N/A";
  12805. Type = 0;
  12806. Classification = 7;
  12807. LogType = 2;
  12808. OriginalEvent = instance of __InstanceModificationEvent
  12809. { TargetInstance = instance of Win32_Modem
  12810. {
  12811. DeviceId = 1654068988;
  12812. Manufacturer = "Acme Corporation";
  12813. OffTheHook = false;
  12814. };
  12815. PreviousInstance = instance of Win32_Modem
  12816. {
  12817. DeviceId = 1634911875;
  12818. Manufacturer = "Acme Corporation";
  12819. OffTheHook = false;
  12820. };
  12821. };
  12822. };
  12823. instance of Microsoft_EELTOCEntryInFile
  12824. {
  12825. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12826. Entry ="Microsoft_EELEntry='356'";
  12827. };
  12828. instance of Microsoft_EELEntry
  12829. {
  12830. EventId = "357";
  12831. SourceSubsystemType="NT Event Log";
  12832. SourceSubsystemName ="server";
  12833. SystemAbout = "Kurshed_2";
  12834. SystemFrom = "Gafoor_1";
  12835. DeliveredBy = "Kurshed_2";
  12836. Category="modems";
  12837. Subcategory="general";
  12838. Priority = 1;
  12839. Severity = 3;
  12840. TimeGenerated = "19920303150825.170060+480";
  12841. LoggingTime = "19991018153305.153435+480";
  12842. RollupTime = "19920315070128.156051+480";
  12843. Message = "Message with key to search = 149938729";
  12844. RecordNumber = "357";
  12845. User = "sriravi";
  12846. Type = 1;
  12847. Classification = 6;
  12848. LogType = 3;
  12849. OriginalEvent = instance of __InstanceDeletionEvent
  12850. { TargetInstance = instance of Win32_Modem
  12851. {
  12852. DeviceId = 1810640842;
  12853. Manufacturer = "Acme Corporation";
  12854. OffTheHook = false;
  12855. };
  12856. };
  12857. };
  12858. instance of Microsoft_EELTOCEntryInFile
  12859. {
  12860. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12861. Entry ="Microsoft_EELEntry='357'";
  12862. };
  12863. instance of Microsoft_EELEntry
  12864. {
  12865. EventId = "358";
  12866. SourceSubsystemType="SMS Log";
  12867. SourceSubsystemName ="Unknown";
  12868. SystemAbout = "Basheer_1";
  12869. SystemFrom = "Alam_i2";
  12870. DeliveredBy = "Kurshed_2";
  12871. Category="modems";
  12872. Subcategory="general";
  12873. Priority = 1;
  12874. Severity = 2;
  12875. TimeGenerated = "19950610145522.127877+480";
  12876. LoggingTime = "19980921025306.147362+480";
  12877. RollupTime = "19960715035220.161988+480";
  12878. Message = "Message with key to search = 180151699";
  12879. RecordNumber = "358";
  12880. User = "N/A";
  12881. Type = 2;
  12882. Classification = 2;
  12883. LogType = 3;
  12884. OriginalEvent = instance of __InstanceCreationEvent
  12885. { TargetInstance = instance of Win32_Modem
  12886. {
  12887. DeviceId = 933199448;
  12888. Manufacturer = "Acme Corporation";
  12889. OffTheHook = true;
  12890. };
  12891. };
  12892. };
  12893. instance of Microsoft_EELTOCEntryInFile
  12894. {
  12895. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  12896. Entry ="Microsoft_EELEntry='358'";
  12897. };
  12898. instance of Microsoft_EELEntry
  12899. {
  12900. EventId = "359";
  12901. SourceSubsystemType="SMS Log";
  12902. SourceSubsystemName ="server";
  12903. SystemAbout = "Basheer_1";
  12904. SystemFrom = "Kurshed_2";
  12905. DeliveredBy = "Kurshed_2";
  12906. Category="modems";
  12907. Subcategory="general";
  12908. Priority = 3;
  12909. Severity = 3;
  12910. TimeGenerated = "19910218154725.139606+480";
  12911. LoggingTime = "20011216111614.155650+480";
  12912. RollupTime = "19980913083325.199403+480";
  12913. Message = "Message with key to search = 293204407";
  12914. RecordNumber = "359";
  12915. User = "amit";
  12916. Type = 1;
  12917. Classification = 8;
  12918. LogType = 1;
  12919. OriginalEvent = instance of __InstanceModificationEvent
  12920. { TargetInstance = instance of Win32_Modem
  12921. {
  12922. DeviceId = 876961869;
  12923. Manufacturer = "Acme Corporation";
  12924. OffTheHook = false;
  12925. };
  12926. PreviousInstance = instance of Win32_Modem
  12927. {
  12928. DeviceId = 1486955082;
  12929. Manufacturer = "Acme Corporation";
  12930. OffTheHook = false;
  12931. };
  12932. };
  12933. };
  12934. instance of Microsoft_EELTOCEntryInFile
  12935. {
  12936. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  12937. Entry ="Microsoft_EELEntry='359'";
  12938. };
  12939. instance of Microsoft_EELEntry
  12940. {
  12941. EventId = "360";
  12942. SourceSubsystemType="NT Event Log";
  12943. SourceSubsystemName ="application";
  12944. SystemAbout = "Basheer_1";
  12945. SystemFrom = "Alam_i2";
  12946. DeliveredBy = "Alam_i2";
  12947. Category="modems";
  12948. Subcategory="general";
  12949. Priority = 3;
  12950. Severity = 4;
  12951. TimeGenerated = "19910214094503.101193+480";
  12952. LoggingTime = "19960727080923.104581+480";
  12953. RollupTime = "20011220183824.163394+480";
  12954. Message = "Message with key to search = 1613070472";
  12955. RecordNumber = "360";
  12956. User = "N/A";
  12957. Type = 4;
  12958. Classification = 4;
  12959. LogType = 1;
  12960. OriginalEvent = instance of __InstanceDeletionEvent
  12961. { TargetInstance = instance of Win32_Modem
  12962. {
  12963. DeviceId = 835696885;
  12964. Manufacturer = "Acme Corporation";
  12965. OffTheHook = false;
  12966. };
  12967. };
  12968. };
  12969. instance of Microsoft_EELTOCEntryInFile
  12970. {
  12971. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  12972. Entry ="Microsoft_EELEntry='360'";
  12973. };
  12974. instance of Microsoft_EELEntry
  12975. {
  12976. EventId = "361";
  12977. SourceSubsystemType="SMS Log";
  12978. SourceSubsystemName ="Unknown";
  12979. SystemAbout = "Kurshed_2";
  12980. SystemFrom = "Gafoor_1";
  12981. DeliveredBy = "Alam_i2";
  12982. Category="modems";
  12983. Subcategory="general";
  12984. Priority = 4;
  12985. Severity = 1;
  12986. TimeGenerated = "19910206122901.116969+480";
  12987. LoggingTime = "19960703225801.127602+480";
  12988. RollupTime = "19980905224210.171676+480";
  12989. Message = "Message with key to search = 2050372363";
  12990. RecordNumber = "361";
  12991. User = "rishi";
  12992. Type = 5;
  12993. Classification = 1;
  12994. LogType = 3;
  12995. OriginalEvent = instance of __InstanceCreationEvent
  12996. { TargetInstance = instance of Win32_Modem
  12997. {
  12998. DeviceId = 115870420;
  12999. Manufacturer = "Acme Corporation";
  13000. OffTheHook = false;
  13001. };
  13002. };
  13003. };
  13004. instance of Microsoft_EELTOCEntryInFile
  13005. {
  13006. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13007. Entry ="Microsoft_EELEntry='361'";
  13008. };
  13009. instance of Microsoft_EELEntry
  13010. {
  13011. EventId = "362";
  13012. SourceSubsystemType="SMS Log";
  13013. SourceSubsystemName ="server";
  13014. SystemAbout = "Basheer_1";
  13015. SystemFrom = "Basheer_1";
  13016. DeliveredBy = "Gafoor_1";
  13017. Category="modems";
  13018. Subcategory="general";
  13019. Priority = 4;
  13020. Severity = 3;
  13021. TimeGenerated = "19910206192525.129115+480";
  13022. LoggingTime = "19991014173303.168558+480";
  13023. RollupTime = "19991002094813.157785+480";
  13024. Message = "Message with key to search = 1001199032";
  13025. RecordNumber = "362";
  13026. User = "N/A";
  13027. Type = 1;
  13028. Classification = 6;
  13029. LogType = 1;
  13030. OriginalEvent = instance of __InstanceModificationEvent
  13031. { TargetInstance = instance of Win32_Modem
  13032. {
  13033. DeviceId = 765633902;
  13034. Manufacturer = "Acme Corporation";
  13035. OffTheHook = false;
  13036. };
  13037. PreviousInstance = instance of Win32_Modem
  13038. {
  13039. DeviceId = 1820249378;
  13040. Manufacturer = "Acme Corporation";
  13041. OffTheHook = true;
  13042. };
  13043. };
  13044. };
  13045. instance of Microsoft_EELTOCEntryInFile
  13046. {
  13047. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13048. Entry ="Microsoft_EELEntry='362'";
  13049. };
  13050. instance of Microsoft_EELEntry
  13051. {
  13052. EventId = "363";
  13053. SourceSubsystemType="SMS Log";
  13054. SourceSubsystemName ="application";
  13055. SystemAbout = "Alam_i2";
  13056. SystemFrom = "Gafoor_1";
  13057. DeliveredBy = "Basheer_1";
  13058. Category="modems";
  13059. Subcategory="general";
  13060. Priority = 2;
  13061. Severity = 2;
  13062. TimeGenerated = "19940501133518.130793+480";
  13063. LoggingTime = "20001115080717.182738+480";
  13064. RollupTime = "19940517020115.161513+480";
  13065. Message = "Message with key to search = 2024227513";
  13066. RecordNumber = "363";
  13067. User = "amit";
  13068. Type = 3;
  13069. Classification = 4;
  13070. LogType = 2;
  13071. OriginalEvent = instance of __InstanceDeletionEvent
  13072. { TargetInstance = instance of Win32_Modem
  13073. {
  13074. DeviceId = 1593091279;
  13075. Manufacturer = "Acme Corporation";
  13076. OffTheHook = false;
  13077. };
  13078. };
  13079. };
  13080. instance of Microsoft_EELTOCEntryInFile
  13081. {
  13082. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13083. Entry ="Microsoft_EELEntry='363'";
  13084. };
  13085. instance of Microsoft_EELEntry
  13086. {
  13087. EventId = "364";
  13088. SourceSubsystemType="NT Event Log";
  13089. SourceSubsystemName ="driver";
  13090. SystemAbout = "Kurshed_2";
  13091. SystemFrom = "Kurshed_2";
  13092. DeliveredBy = "Basheer_1";
  13093. Category="modems";
  13094. Subcategory="general";
  13095. Priority = 4;
  13096. Severity = 3;
  13097. TimeGenerated = "19900117095524.167335+480";
  13098. LoggingTime = "19950618054605.108253+480";
  13099. RollupTime = "19970816100301.189190+480";
  13100. Message = "Message with key to search = 1457845480";
  13101. RecordNumber = "364";
  13102. User = "N/A";
  13103. Type = 0;
  13104. Classification = 1;
  13105. LogType = 3;
  13106. OriginalEvent = instance of __InstanceCreationEvent
  13107. { TargetInstance = instance of Win32_Modem
  13108. {
  13109. DeviceId = 1427562832;
  13110. Manufacturer = "Acme Corporation";
  13111. OffTheHook = false;
  13112. };
  13113. };
  13114. };
  13115. instance of Microsoft_EELTOCEntryInFile
  13116. {
  13117. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13118. Entry ="Microsoft_EELEntry='364'";
  13119. };
  13120. instance of Microsoft_EELEntry
  13121. {
  13122. EventId = "365";
  13123. SourceSubsystemType="SMS Log";
  13124. SourceSubsystemName ="driver";
  13125. SystemAbout = "Basheer_1";
  13126. SystemFrom = "Basheer_1";
  13127. DeliveredBy = "Alam_i2";
  13128. Category="modems";
  13129. Subcategory="general";
  13130. Priority = 2;
  13131. Severity = 3;
  13132. TimeGenerated = "19950606061410.198586+480";
  13133. LoggingTime = "19970804083302.126285+480";
  13134. RollupTime = "19950626050628.142210+480";
  13135. Message = "Message with key to search = 1932338216";
  13136. RecordNumber = "365";
  13137. User = "rishi";
  13138. Type = 5;
  13139. Classification = 6;
  13140. LogType = 3;
  13141. OriginalEvent = instance of __InstanceModificationEvent
  13142. { TargetInstance = instance of Win32_Modem
  13143. {
  13144. DeviceId = 1329851903;
  13145. Manufacturer = "Acme Corporation";
  13146. OffTheHook = false;
  13147. };
  13148. PreviousInstance = instance of Win32_Modem
  13149. {
  13150. DeviceId = 225529183;
  13151. Manufacturer = "Acme Corporation";
  13152. OffTheHook = false;
  13153. };
  13154. };
  13155. };
  13156. instance of Microsoft_EELTOCEntryInFile
  13157. {
  13158. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13159. Entry ="Microsoft_EELEntry='365'";
  13160. };
  13161. instance of Microsoft_EELEntry
  13162. {
  13163. EventId = "366";
  13164. SourceSubsystemType="SMS Log";
  13165. SourceSubsystemName ="driver";
  13166. SystemAbout = "Kurshed_2";
  13167. SystemFrom = "Alam_i2";
  13168. DeliveredBy = "Alam_i2";
  13169. Category="modems";
  13170. Subcategory="general";
  13171. Priority = 2;
  13172. Severity = 4;
  13173. TimeGenerated = "19940501064225.142614+480";
  13174. LoggingTime = "19940517080003.113985+480";
  13175. RollupTime = "20011224101128.121704+480";
  13176. Message = "Message with key to search = 1049995423";
  13177. RecordNumber = "366";
  13178. User = "rishi";
  13179. Type = 3;
  13180. Classification = 7;
  13181. LogType = 2;
  13182. OriginalEvent = instance of __InstanceDeletionEvent
  13183. { TargetInstance = instance of Win32_Modem
  13184. {
  13185. DeviceId = 751143340;
  13186. Manufacturer = "Acme Corporation";
  13187. OffTheHook = false;
  13188. };
  13189. };
  13190. };
  13191. instance of Microsoft_EELTOCEntryInFile
  13192. {
  13193. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13194. Entry ="Microsoft_EELEntry='366'";
  13195. };
  13196. instance of Microsoft_EELEntry
  13197. {
  13198. EventId = "367";
  13199. SourceSubsystemType="NT Event Log";
  13200. SourceSubsystemName ="application";
  13201. SystemAbout = "Kurshed_2";
  13202. SystemFrom = "Gafoor_1";
  13203. DeliveredBy = "Alam_i2";
  13204. Category="modems";
  13205. Subcategory="general";
  13206. Priority = 4;
  13207. Severity = 3;
  13208. TimeGenerated = "19900101235319.193025+480";
  13209. LoggingTime = "19970804072600.108446+480";
  13210. RollupTime = "20001111120207.124668+480";
  13211. Message = "Message with key to search = 209290745";
  13212. RecordNumber = "367";
  13213. User = "N/A";
  13214. Type = 4;
  13215. Classification = 8;
  13216. LogType = 3;
  13217. OriginalEvent = instance of __InstanceCreationEvent
  13218. { TargetInstance = instance of Win32_Modem
  13219. {
  13220. DeviceId = 1743420427;
  13221. Manufacturer = "Acme Corporation";
  13222. OffTheHook = false;
  13223. };
  13224. };
  13225. };
  13226. instance of Microsoft_EELTOCEntryInFile
  13227. {
  13228. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13229. Entry ="Microsoft_EELEntry='367'";
  13230. };
  13231. instance of Microsoft_EELEntry
  13232. {
  13233. EventId = "368";
  13234. SourceSubsystemType="NT Event Log";
  13235. SourceSubsystemName ="Unknown";
  13236. SystemAbout = "Basheer_1";
  13237. SystemFrom = "Basheer_1";
  13238. DeliveredBy = "Gafoor_1";
  13239. Category="modems";
  13240. Subcategory="general";
  13241. Priority = 2;
  13242. Severity = 2;
  13243. TimeGenerated = "19900109231221.171678+480";
  13244. LoggingTime = "19910210074016.164886+480";
  13245. RollupTime = "19980921105524.186085+480";
  13246. Message = "Message with key to search = 900714622";
  13247. RecordNumber = "368";
  13248. User = "sriravi";
  13249. Type = 5;
  13250. Classification = 6;
  13251. LogType = 2;
  13252. OriginalEvent = instance of __InstanceModificationEvent
  13253. { TargetInstance = instance of Win32_Modem
  13254. {
  13255. DeviceId = 1871102340;
  13256. Manufacturer = "Acme Corporation";
  13257. OffTheHook = true;
  13258. };
  13259. PreviousInstance = instance of Win32_Modem
  13260. {
  13261. DeviceId = 1234308392;
  13262. Manufacturer = "Acme Corporation";
  13263. OffTheHook = false;
  13264. };
  13265. };
  13266. };
  13267. instance of Microsoft_EELTOCEntryInFile
  13268. {
  13269. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13270. Entry ="Microsoft_EELEntry='368'";
  13271. };
  13272. instance of Microsoft_EELEntry
  13273. {
  13274. EventId = "369";
  13275. SourceSubsystemType="SMS Log";
  13276. SourceSubsystemName ="application";
  13277. SystemAbout = "Gafoor_1";
  13278. SystemFrom = "Gafoor_1";
  13279. DeliveredBy = "Alam_i2";
  13280. Category="modems";
  13281. Subcategory="general";
  13282. Priority = 2;
  13283. Severity = 4;
  13284. TimeGenerated = "19930420224913.147964+480";
  13285. LoggingTime = "19991014152305.197169+480";
  13286. RollupTime = "19960723100410.155705+480";
  13287. Message = "Message with key to search = 354572961";
  13288. RecordNumber = "369";
  13289. User = "sriravi";
  13290. Type = 2;
  13291. Classification = 5;
  13292. LogType = 1;
  13293. OriginalEvent = instance of __InstanceDeletionEvent
  13294. { TargetInstance = instance of Win32_Modem
  13295. {
  13296. DeviceId = 2066675296;
  13297. Manufacturer = "Acme Corporation";
  13298. OffTheHook = true;
  13299. };
  13300. };
  13301. };
  13302. instance of Microsoft_EELTOCEntryInFile
  13303. {
  13304. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13305. Entry ="Microsoft_EELEntry='369'";
  13306. };
  13307. instance of Microsoft_EELEntry
  13308. {
  13309. EventId = "370";
  13310. SourceSubsystemType="NT Event Log";
  13311. SourceSubsystemName ="application";
  13312. SystemAbout = "Gafoor_1";
  13313. SystemFrom = "Gafoor_1";
  13314. DeliveredBy = "Gafoor_1";
  13315. Category="modems";
  13316. Subcategory="general";
  13317. Priority = 3;
  13318. Severity = 1;
  13319. TimeGenerated = "19900101003600.176729+480";
  13320. LoggingTime = "20001107214019.151654+480";
  13321. RollupTime = "19940513100322.122311+480";
  13322. Message = "Message with key to search = 802528998";
  13323. RecordNumber = "370";
  13324. User = "amit";
  13325. Type = 6;
  13326. Classification = 3;
  13327. LogType = 1;
  13328. OriginalEvent = instance of __InstanceCreationEvent
  13329. { TargetInstance = instance of Win32_Modem
  13330. {
  13331. DeviceId = 1037925672;
  13332. Manufacturer = "Acme Corporation";
  13333. OffTheHook = true;
  13334. };
  13335. };
  13336. };
  13337. instance of Microsoft_EELTOCEntryInFile
  13338. {
  13339. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13340. Entry ="Microsoft_EELEntry='370'";
  13341. };
  13342. instance of Microsoft_EELEntry
  13343. {
  13344. EventId = "371";
  13345. SourceSubsystemType="NT Event Log";
  13346. SourceSubsystemName ="server";
  13347. SystemAbout = "Gafoor_1";
  13348. SystemFrom = "Kurshed_2";
  13349. DeliveredBy = "Basheer_1";
  13350. Category="modems";
  13351. Subcategory="general";
  13352. Priority = 3;
  13353. Severity = 4;
  13354. TimeGenerated = "19950606061117.186852+480";
  13355. LoggingTime = "19930404093808.151076+480";
  13356. RollupTime = "19940509112716.191218+480";
  13357. Message = "Message with key to search = 5499262";
  13358. RecordNumber = "371";
  13359. User = "sriravi";
  13360. Type = 1;
  13361. Classification = 4;
  13362. LogType = 3;
  13363. OriginalEvent = instance of __InstanceModificationEvent
  13364. { TargetInstance = instance of Win32_Modem
  13365. {
  13366. DeviceId = 1127015109;
  13367. Manufacturer = "Acme Corporation";
  13368. OffTheHook = false;
  13369. };
  13370. PreviousInstance = instance of Win32_Modem
  13371. {
  13372. DeviceId = 1663509152;
  13373. Manufacturer = "Acme Corporation";
  13374. OffTheHook = true;
  13375. };
  13376. };
  13377. };
  13378. instance of Microsoft_EELTOCEntryInFile
  13379. {
  13380. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13381. Entry ="Microsoft_EELEntry='371'";
  13382. };
  13383. instance of Microsoft_EELEntry
  13384. {
  13385. EventId = "372";
  13386. SourceSubsystemType="SMS Log";
  13387. SourceSubsystemName ="application";
  13388. SystemAbout = "Basheer_1";
  13389. SystemFrom = "Alam_i2";
  13390. DeliveredBy = "Gafoor_1";
  13391. Category="modems";
  13392. Subcategory="general";
  13393. Priority = 4;
  13394. Severity = 1;
  13395. TimeGenerated = "19930408043919.152121+480";
  13396. LoggingTime = "20011220133108.100198+480";
  13397. RollupTime = "19950606171818.181429+480";
  13398. Message = "Message with key to search = 1711706771";
  13399. RecordNumber = "372";
  13400. User = "amit";
  13401. Type = 0;
  13402. Classification = 1;
  13403. LogType = 3;
  13404. OriginalEvent = instance of __InstanceDeletionEvent
  13405. { TargetInstance = instance of Win32_Modem
  13406. {
  13407. DeviceId = 1876235382;
  13408. Manufacturer = "Acme Corporation";
  13409. OffTheHook = false;
  13410. };
  13411. };
  13412. };
  13413. instance of Microsoft_EELTOCEntryInFile
  13414. {
  13415. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13416. Entry ="Microsoft_EELEntry='372'";
  13417. };
  13418. instance of Microsoft_EELEntry
  13419. {
  13420. EventId = "373";
  13421. SourceSubsystemType="NT Event Log";
  13422. SourceSubsystemName ="Unknown";
  13423. SystemAbout = "Basheer_1";
  13424. SystemFrom = "Gafoor_1";
  13425. DeliveredBy = "Gafoor_1";
  13426. Category="modems";
  13427. Subcategory="general";
  13428. Priority = 2;
  13429. Severity = 1;
  13430. TimeGenerated = "19920307134418.159221+480";
  13431. LoggingTime = "20011212011103.136319+480";
  13432. RollupTime = "19930420170800.161722+480";
  13433. Message = "Message with key to search = 560583268";
  13434. RecordNumber = "373";
  13435. User = "sriravi";
  13436. Type = 5;
  13437. Classification = 6;
  13438. LogType = 3;
  13439. OriginalEvent = instance of __InstanceCreationEvent
  13440. { TargetInstance = instance of Win32_Modem
  13441. {
  13442. DeviceId = 407022346;
  13443. Manufacturer = "Acme Corporation";
  13444. OffTheHook = false;
  13445. };
  13446. };
  13447. };
  13448. instance of Microsoft_EELTOCEntryInFile
  13449. {
  13450. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13451. Entry ="Microsoft_EELEntry='373'";
  13452. };
  13453. instance of Microsoft_EELEntry
  13454. {
  13455. EventId = "374";
  13456. SourceSubsystemType="NT Event Log";
  13457. SourceSubsystemName ="application";
  13458. SystemAbout = "Basheer_1";
  13459. SystemFrom = "Alam_i2";
  13460. DeliveredBy = "Kurshed_2";
  13461. Category="modems";
  13462. Subcategory="general";
  13463. Priority = 2;
  13464. Severity = 1;
  13465. TimeGenerated = "19930412062105.182276+480";
  13466. LoggingTime = "20001107100507.185883+480";
  13467. RollupTime = "19950602101504.127808+480";
  13468. Message = "Message with key to search = 1267155622";
  13469. RecordNumber = "374";
  13470. User = "rishi";
  13471. Type = 3;
  13472. Classification = 8;
  13473. LogType = 1;
  13474. OriginalEvent = instance of __InstanceModificationEvent
  13475. { TargetInstance = instance of Win32_Modem
  13476. {
  13477. DeviceId = 1493731680;
  13478. Manufacturer = "Acme Corporation";
  13479. OffTheHook = false;
  13480. };
  13481. PreviousInstance = instance of Win32_Modem
  13482. {
  13483. DeviceId = 1694007365;
  13484. Manufacturer = "Acme Corporation";
  13485. OffTheHook = true;
  13486. };
  13487. };
  13488. };
  13489. instance of Microsoft_EELTOCEntryInFile
  13490. {
  13491. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13492. Entry ="Microsoft_EELEntry='374'";
  13493. };
  13494. instance of Microsoft_EELEntry
  13495. {
  13496. EventId = "375";
  13497. SourceSubsystemType="NT Event Log";
  13498. SourceSubsystemName ="application";
  13499. SystemAbout = "Gafoor_1";
  13500. SystemFrom = "Basheer_1";
  13501. DeliveredBy = "Gafoor_1";
  13502. Category="modems";
  13503. Subcategory="general";
  13504. Priority = 4;
  13505. Severity = 2;
  13506. TimeGenerated = "19900105020505.194772+480";
  13507. LoggingTime = "20011208020901.124527+480";
  13508. RollupTime = "19991006013821.173733+480";
  13509. Message = "Message with key to search = 1300595027";
  13510. RecordNumber = "375";
  13511. User = "amit";
  13512. Type = 1;
  13513. Classification = 4;
  13514. LogType = 3;
  13515. OriginalEvent = instance of __InstanceDeletionEvent
  13516. { TargetInstance = instance of Win32_Modem
  13517. {
  13518. DeviceId = 1077135684;
  13519. Manufacturer = "Acme Corporation";
  13520. OffTheHook = false;
  13521. };
  13522. };
  13523. };
  13524. instance of Microsoft_EELTOCEntryInFile
  13525. {
  13526. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13527. Entry ="Microsoft_EELEntry='375'";
  13528. };
  13529. instance of Microsoft_EELEntry
  13530. {
  13531. EventId = "376";
  13532. SourceSubsystemType="SMS Log";
  13533. SourceSubsystemName ="application";
  13534. SystemAbout = "Kurshed_2";
  13535. SystemFrom = "Alam_i2";
  13536. DeliveredBy = "Basheer_1";
  13537. Category="modems";
  13538. Subcategory="general";
  13539. Priority = 4;
  13540. Severity = 3;
  13541. TimeGenerated = "19910210005521.148915+480";
  13542. LoggingTime = "19991010154303.156199+480";
  13543. RollupTime = "19991014175505.150432+480";
  13544. Message = "Message with key to search = 1182786983";
  13545. RecordNumber = "376";
  13546. User = "sriravi";
  13547. Type = 2;
  13548. Classification = 2;
  13549. LogType = 2;
  13550. OriginalEvent = instance of __InstanceCreationEvent
  13551. { TargetInstance = instance of Win32_Modem
  13552. {
  13553. DeviceId = 1349221112;
  13554. Manufacturer = "Acme Corporation";
  13555. OffTheHook = true;
  13556. };
  13557. };
  13558. };
  13559. instance of Microsoft_EELTOCEntryInFile
  13560. {
  13561. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13562. Entry ="Microsoft_EELEntry='376'";
  13563. };
  13564. instance of Microsoft_EELEntry
  13565. {
  13566. EventId = "377";
  13567. SourceSubsystemType="SMS Log";
  13568. SourceSubsystemName ="application";
  13569. SystemAbout = "Basheer_1";
  13570. SystemFrom = "Basheer_1";
  13571. DeliveredBy = "Kurshed_2";
  13572. Category="modems";
  13573. Subcategory="general";
  13574. Priority = 4;
  13575. Severity = 2;
  13576. TimeGenerated = "19940509170507.136879+480";
  13577. LoggingTime = "19950614124702.153814+480";
  13578. RollupTime = "19920327100203.132868+480";
  13579. Message = "Message with key to search = 1290888221";
  13580. RecordNumber = "377";
  13581. User = "rishi";
  13582. Type = 1;
  13583. Classification = 2;
  13584. LogType = 3;
  13585. OriginalEvent = instance of __InstanceModificationEvent
  13586. { TargetInstance = instance of Win32_Modem
  13587. {
  13588. DeviceId = 175930930;
  13589. Manufacturer = "Acme Corporation";
  13590. OffTheHook = false;
  13591. };
  13592. PreviousInstance = instance of Win32_Modem
  13593. {
  13594. DeviceId = 1526327852;
  13595. Manufacturer = "Acme Corporation";
  13596. OffTheHook = false;
  13597. };
  13598. };
  13599. };
  13600. instance of Microsoft_EELTOCEntryInFile
  13601. {
  13602. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13603. Entry ="Microsoft_EELEntry='377'";
  13604. };
  13605. instance of Microsoft_EELEntry
  13606. {
  13607. EventId = "378";
  13608. SourceSubsystemType="NT Event Log";
  13609. SourceSubsystemName ="application";
  13610. SystemAbout = "Kurshed_2";
  13611. SystemFrom = "Kurshed_2";
  13612. DeliveredBy = "Gafoor_1";
  13613. Category="modems";
  13614. Subcategory="general";
  13615. Priority = 1;
  13616. Severity = 4;
  13617. TimeGenerated = "19900113033608.102681+480";
  13618. LoggingTime = "19980921041716.178958+480";
  13619. RollupTime = "19980917104417.157570+480";
  13620. Message = "Message with key to search = 1783515521";
  13621. RecordNumber = "378";
  13622. User = "N/A";
  13623. Type = 0;
  13624. Classification = 2;
  13625. LogType = 2;
  13626. OriginalEvent = instance of __InstanceDeletionEvent
  13627. { TargetInstance = instance of Win32_Modem
  13628. {
  13629. DeviceId = 425892604;
  13630. Manufacturer = "Acme Corporation";
  13631. OffTheHook = false;
  13632. };
  13633. };
  13634. };
  13635. instance of Microsoft_EELTOCEntryInFile
  13636. {
  13637. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13638. Entry ="Microsoft_EELEntry='378'";
  13639. };
  13640. instance of Microsoft_EELEntry
  13641. {
  13642. EventId = "379";
  13643. SourceSubsystemType="SMS Log";
  13644. SourceSubsystemName ="driver";
  13645. SystemAbout = "Gafoor_1";
  13646. SystemFrom = "Gafoor_1";
  13647. DeliveredBy = "Kurshed_2";
  13648. Category="modems";
  13649. Subcategory="general";
  13650. Priority = 1;
  13651. Severity = 2;
  13652. TimeGenerated = "19910202051013.198433+480";
  13653. LoggingTime = "19950618231427.144752+480";
  13654. RollupTime = "20011208042505.136839+480";
  13655. Message = "Message with key to search = 371711107";
  13656. RecordNumber = "379";
  13657. User = "rishi";
  13658. Type = 1;
  13659. Classification = 5;
  13660. LogType = 2;
  13661. OriginalEvent = instance of __InstanceCreationEvent
  13662. { TargetInstance = instance of Win32_Modem
  13663. {
  13664. DeviceId = 1882909429;
  13665. Manufacturer = "Acme Corporation";
  13666. OffTheHook = true;
  13667. };
  13668. };
  13669. };
  13670. instance of Microsoft_EELTOCEntryInFile
  13671. {
  13672. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13673. Entry ="Microsoft_EELEntry='379'";
  13674. };
  13675. instance of Microsoft_EELEntry
  13676. {
  13677. EventId = "380";
  13678. SourceSubsystemType="NT Event Log";
  13679. SourceSubsystemName ="server";
  13680. SystemAbout = "Kurshed_2";
  13681. SystemFrom = "Alam_i2";
  13682. DeliveredBy = "Kurshed_2";
  13683. Category="modems";
  13684. Subcategory="general";
  13685. Priority = 1;
  13686. Severity = 4;
  13687. TimeGenerated = "19900125065705.157922+480";
  13688. LoggingTime = "19991022162701.192149+480";
  13689. RollupTime = "19940501093728.125682+480";
  13690. Message = "Message with key to search = 2072831271";
  13691. RecordNumber = "380";
  13692. User = "rishi";
  13693. Type = 4;
  13694. Classification = 5;
  13695. LogType = 3;
  13696. OriginalEvent = instance of __InstanceModificationEvent
  13697. { TargetInstance = instance of Win32_Modem
  13698. {
  13699. DeviceId = 630296202;
  13700. Manufacturer = "Acme Corporation";
  13701. OffTheHook = true;
  13702. };
  13703. PreviousInstance = instance of Win32_Modem
  13704. {
  13705. DeviceId = 864617170;
  13706. Manufacturer = "Acme Corporation";
  13707. OffTheHook = true;
  13708. };
  13709. };
  13710. };
  13711. instance of Microsoft_EELTOCEntryInFile
  13712. {
  13713. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13714. Entry ="Microsoft_EELEntry='380'";
  13715. };
  13716. instance of Microsoft_EELEntry
  13717. {
  13718. EventId = "381";
  13719. SourceSubsystemType="SMS Log";
  13720. SourceSubsystemName ="application";
  13721. SystemAbout = "Basheer_1";
  13722. SystemFrom = "Gafoor_1";
  13723. DeliveredBy = "Gafoor_1";
  13724. Category="modems";
  13725. Subcategory="general";
  13726. Priority = 4;
  13727. Severity = 3;
  13728. TimeGenerated = "19960723103619.112110+480";
  13729. LoggingTime = "19960711023100.149795+480";
  13730. RollupTime = "20011228215601.130757+480";
  13731. Message = "Message with key to search = 8963405";
  13732. RecordNumber = "381";
  13733. User = "N/A";
  13734. Type = 3;
  13735. Classification = 1;
  13736. LogType = 1;
  13737. OriginalEvent = instance of __InstanceDeletionEvent
  13738. { TargetInstance = instance of Win32_Modem
  13739. {
  13740. DeviceId = 1794365723;
  13741. Manufacturer = "Acme Corporation";
  13742. OffTheHook = false;
  13743. };
  13744. };
  13745. };
  13746. instance of Microsoft_EELTOCEntryInFile
  13747. {
  13748. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13749. Entry ="Microsoft_EELEntry='381'";
  13750. };
  13751. instance of Microsoft_EELEntry
  13752. {
  13753. EventId = "382";
  13754. SourceSubsystemType="NT Event Log";
  13755. SourceSubsystemName ="server";
  13756. SystemAbout = "Basheer_1";
  13757. SystemFrom = "Kurshed_2";
  13758. DeliveredBy = "Alam_i2";
  13759. Category="modems";
  13760. Subcategory="general";
  13761. Priority = 2;
  13762. Severity = 3;
  13763. TimeGenerated = "19910226190705.114996+480";
  13764. LoggingTime = "19940509115225.163583+480";
  13765. RollupTime = "19960707034624.151590+480";
  13766. Message = "Message with key to search = 1066084268";
  13767. RecordNumber = "382";
  13768. User = "amit";
  13769. Type = 5;
  13770. Classification = 4;
  13771. LogType = 2;
  13772. OriginalEvent = instance of __InstanceCreationEvent
  13773. { TargetInstance = instance of Win32_Modem
  13774. {
  13775. DeviceId = 1207863401;
  13776. Manufacturer = "Acme Corporation";
  13777. OffTheHook = true;
  13778. };
  13779. };
  13780. };
  13781. instance of Microsoft_EELTOCEntryInFile
  13782. {
  13783. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13784. Entry ="Microsoft_EELEntry='382'";
  13785. };
  13786. instance of Microsoft_EELEntry
  13787. {
  13788. EventId = "383";
  13789. SourceSubsystemType="SMS Log";
  13790. SourceSubsystemName ="application";
  13791. SystemAbout = "Gafoor_1";
  13792. SystemFrom = "Alam_i2";
  13793. DeliveredBy = "Kurshed_2";
  13794. Category="modems";
  13795. Subcategory="general";
  13796. Priority = 4;
  13797. Severity = 3;
  13798. TimeGenerated = "19930424234812.107126+480";
  13799. LoggingTime = "20011212100804.164865+480";
  13800. RollupTime = "19910226175904.118477+480";
  13801. Message = "Message with key to search = 505030014";
  13802. RecordNumber = "383";
  13803. User = "N/A";
  13804. Type = 2;
  13805. Classification = 3;
  13806. LogType = 2;
  13807. OriginalEvent = instance of __InstanceModificationEvent
  13808. { TargetInstance = instance of Win32_Modem
  13809. {
  13810. DeviceId = 1693582871;
  13811. Manufacturer = "Acme Corporation";
  13812. OffTheHook = false;
  13813. };
  13814. PreviousInstance = instance of Win32_Modem
  13815. {
  13816. DeviceId = 445961726;
  13817. Manufacturer = "Acme Corporation";
  13818. OffTheHook = false;
  13819. };
  13820. };
  13821. };
  13822. instance of Microsoft_EELTOCEntryInFile
  13823. {
  13824. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13825. Entry ="Microsoft_EELEntry='383'";
  13826. };
  13827. instance of Microsoft_EELEntry
  13828. {
  13829. EventId = "384";
  13830. SourceSubsystemType="NT Event Log";
  13831. SourceSubsystemName ="driver";
  13832. SystemAbout = "Alam_i2";
  13833. SystemFrom = "Gafoor_1";
  13834. DeliveredBy = "Gafoor_1";
  13835. Category="modems";
  13836. Subcategory="general";
  13837. Priority = 3;
  13838. Severity = 4;
  13839. TimeGenerated = "19910202085312.196792+480";
  13840. LoggingTime = "19991014173303.168558+480";
  13841. RollupTime = "20001107181504.193466+480";
  13842. Message = "Message with key to search = 1214893402";
  13843. RecordNumber = "384";
  13844. User = "sriravi";
  13845. Type = 2;
  13846. Classification = 6;
  13847. LogType = 3;
  13848. OriginalEvent = instance of __InstanceDeletionEvent
  13849. { TargetInstance = instance of Win32_Modem
  13850. {
  13851. DeviceId = 1385481271;
  13852. Manufacturer = "Acme Corporation";
  13853. OffTheHook = false;
  13854. };
  13855. };
  13856. };
  13857. instance of Microsoft_EELTOCEntryInFile
  13858. {
  13859. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13860. Entry ="Microsoft_EELEntry='384'";
  13861. };
  13862. instance of Microsoft_EELEntry
  13863. {
  13864. EventId = "385";
  13865. SourceSubsystemType="NT Event Log";
  13866. SourceSubsystemName ="driver";
  13867. SystemAbout = "Basheer_1";
  13868. SystemFrom = "Kurshed_2";
  13869. DeliveredBy = "Basheer_1";
  13870. Category="modems";
  13871. Subcategory="general";
  13872. Priority = 2;
  13873. Severity = 3;
  13874. TimeGenerated = "19930424043006.190474+480";
  13875. LoggingTime = "19930404083718.117930+480";
  13876. RollupTime = "19930424055213.169815+480";
  13877. Message = "Message with key to search = 1203645963";
  13878. RecordNumber = "385";
  13879. User = "rishi";
  13880. Type = 6;
  13881. Classification = 7;
  13882. LogType = 3;
  13883. OriginalEvent = instance of __InstanceCreationEvent
  13884. { TargetInstance = instance of Win32_Modem
  13885. {
  13886. DeviceId = 412253523;
  13887. Manufacturer = "Acme Corporation";
  13888. OffTheHook = true;
  13889. };
  13890. };
  13891. };
  13892. instance of Microsoft_EELTOCEntryInFile
  13893. {
  13894. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  13895. Entry ="Microsoft_EELEntry='385'";
  13896. };
  13897. instance of Microsoft_EELEntry
  13898. {
  13899. EventId = "386";
  13900. SourceSubsystemType="NT Event Log";
  13901. SourceSubsystemName ="application";
  13902. SystemAbout = "Gafoor_1";
  13903. SystemFrom = "Kurshed_2";
  13904. DeliveredBy = "Gafoor_1";
  13905. Category="modems";
  13906. Subcategory="general";
  13907. Priority = 2;
  13908. Severity = 1;
  13909. TimeGenerated = "19940505084526.139096+480";
  13910. LoggingTime = "19950626094203.191207+480";
  13911. RollupTime = "19970804220408.151677+480";
  13912. Message = "Message with key to search = 1678046345";
  13913. RecordNumber = "386";
  13914. User = "sriravi";
  13915. Type = 0;
  13916. Classification = 4;
  13917. LogType = 3;
  13918. OriginalEvent = instance of __InstanceModificationEvent
  13919. { TargetInstance = instance of Win32_Modem
  13920. {
  13921. DeviceId = 1988187436;
  13922. Manufacturer = "Acme Corporation";
  13923. OffTheHook = false;
  13924. };
  13925. PreviousInstance = instance of Win32_Modem
  13926. {
  13927. DeviceId = 1072967587;
  13928. Manufacturer = "Acme Corporation";
  13929. OffTheHook = false;
  13930. };
  13931. };
  13932. };
  13933. instance of Microsoft_EELTOCEntryInFile
  13934. {
  13935. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  13936. Entry ="Microsoft_EELEntry='386'";
  13937. };
  13938. instance of Microsoft_EELEntry
  13939. {
  13940. EventId = "387";
  13941. SourceSubsystemType="NT Event Log";
  13942. SourceSubsystemName ="server";
  13943. SystemAbout = "Gafoor_1";
  13944. SystemFrom = "Kurshed_2";
  13945. DeliveredBy = "Gafoor_1";
  13946. Category="modems";
  13947. Subcategory="general";
  13948. Priority = 1;
  13949. Severity = 4;
  13950. TimeGenerated = "19991006063722.170919+480";
  13951. LoggingTime = "19970816043404.180547+480";
  13952. RollupTime = "19970824055013.167906+480";
  13953. Message = "Message with key to search = 55043987";
  13954. RecordNumber = "387";
  13955. User = "amit";
  13956. Type = 6;
  13957. Classification = 7;
  13958. LogType = 3;
  13959. OriginalEvent = instance of __InstanceDeletionEvent
  13960. { TargetInstance = instance of Win32_Modem
  13961. {
  13962. DeviceId = 513738524;
  13963. Manufacturer = "Acme Corporation";
  13964. OffTheHook = false;
  13965. };
  13966. };
  13967. };
  13968. instance of Microsoft_EELTOCEntryInFile
  13969. {
  13970. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  13971. Entry ="Microsoft_EELEntry='387'";
  13972. };
  13973. instance of Microsoft_EELEntry
  13974. {
  13975. EventId = "388";
  13976. SourceSubsystemType="NT Event Log";
  13977. SourceSubsystemName ="application";
  13978. SystemAbout = "Alam_i2";
  13979. SystemFrom = "Gafoor_1";
  13980. DeliveredBy = "Gafoor_1";
  13981. Category="modems";
  13982. Subcategory="general";
  13983. Priority = 4;
  13984. Severity = 3;
  13985. TimeGenerated = "19940521065125.128252+480";
  13986. LoggingTime = "19920319131628.153277+480";
  13987. RollupTime = "19970816205425.115273+480";
  13988. Message = "Message with key to search = 1163029985";
  13989. RecordNumber = "388";
  13990. User = "sriravi";
  13991. Type = 2;
  13992. Classification = 7;
  13993. LogType = 1;
  13994. OriginalEvent = instance of __InstanceCreationEvent
  13995. { TargetInstance = instance of Win32_Modem
  13996. {
  13997. DeviceId = 1565723749;
  13998. Manufacturer = "Acme Corporation";
  13999. OffTheHook = true;
  14000. };
  14001. };
  14002. };
  14003. instance of Microsoft_EELTOCEntryInFile
  14004. {
  14005. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14006. Entry ="Microsoft_EELEntry='388'";
  14007. };
  14008. instance of Microsoft_EELEntry
  14009. {
  14010. EventId = "389";
  14011. SourceSubsystemType="NT Event Log";
  14012. SourceSubsystemName ="application";
  14013. SystemAbout = "Alam_i2";
  14014. SystemFrom = "Kurshed_2";
  14015. DeliveredBy = "Kurshed_2";
  14016. Category="modems";
  14017. Subcategory="general";
  14018. Priority = 1;
  14019. Severity = 3;
  14020. TimeGenerated = "19930416155007.109777+480";
  14021. LoggingTime = "19950610213425.160751+480";
  14022. RollupTime = "19910226112900.166148+480";
  14023. Message = "Message with key to search = 678063079";
  14024. RecordNumber = "389";
  14025. User = "amit";
  14026. Type = 5;
  14027. Classification = 3;
  14028. LogType = 3;
  14029. OriginalEvent = instance of __InstanceModificationEvent
  14030. { TargetInstance = instance of Win32_Modem
  14031. {
  14032. DeviceId = 2091002237;
  14033. Manufacturer = "Acme Corporation";
  14034. OffTheHook = true;
  14035. };
  14036. PreviousInstance = instance of Win32_Modem
  14037. {
  14038. DeviceId = 1164333839;
  14039. Manufacturer = "Acme Corporation";
  14040. OffTheHook = true;
  14041. };
  14042. };
  14043. };
  14044. instance of Microsoft_EELTOCEntryInFile
  14045. {
  14046. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14047. Entry ="Microsoft_EELEntry='389'";
  14048. };
  14049. instance of Microsoft_EELEntry
  14050. {
  14051. EventId = "390";
  14052. SourceSubsystemType="NT Event Log";
  14053. SourceSubsystemName ="Unknown";
  14054. SystemAbout = "Gafoor_1";
  14055. SystemFrom = "Gafoor_1";
  14056. DeliveredBy = "Alam_i2";
  14057. Category="modems";
  14058. Subcategory="general";
  14059. Priority = 2;
  14060. Severity = 2;
  14061. TimeGenerated = "19900105020505.194772+480";
  14062. LoggingTime = "19920319135909.137418+480";
  14063. RollupTime = "19920323201309.172711+480";
  14064. Message = "Message with key to search = 88658875";
  14065. RecordNumber = "390";
  14066. User = "N/A";
  14067. Type = 0;
  14068. Classification = 4;
  14069. LogType = 1;
  14070. OriginalEvent = instance of __InstanceDeletionEvent
  14071. { TargetInstance = instance of Win32_Modem
  14072. {
  14073. DeviceId = 1977311995;
  14074. Manufacturer = "Acme Corporation";
  14075. OffTheHook = false;
  14076. };
  14077. };
  14078. };
  14079. instance of Microsoft_EELTOCEntryInFile
  14080. {
  14081. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14082. Entry ="Microsoft_EELEntry='390'";
  14083. };
  14084. instance of Microsoft_EELEntry
  14085. {
  14086. EventId = "391";
  14087. SourceSubsystemType="SMS Log";
  14088. SourceSubsystemName ="server";
  14089. SystemAbout = "Kurshed_2";
  14090. SystemFrom = "Alam_i2";
  14091. DeliveredBy = "Gafoor_1";
  14092. Category="modems";
  14093. Subcategory="general";
  14094. Priority = 2;
  14095. Severity = 4;
  14096. TimeGenerated = "19940513104928.181663+480";
  14097. LoggingTime = "19980917130207.193625+480";
  14098. RollupTime = "19940513144607.133184+480";
  14099. Message = "Message with key to search = 495466829";
  14100. RecordNumber = "391";
  14101. User = "amit";
  14102. Type = 2;
  14103. Classification = 6;
  14104. LogType = 3;
  14105. OriginalEvent = instance of __InstanceCreationEvent
  14106. { TargetInstance = instance of Win32_Modem
  14107. {
  14108. DeviceId = 794144663;
  14109. Manufacturer = "Acme Corporation";
  14110. OffTheHook = false;
  14111. };
  14112. };
  14113. };
  14114. instance of Microsoft_EELTOCEntryInFile
  14115. {
  14116. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14117. Entry ="Microsoft_EELEntry='391'";
  14118. };
  14119. instance of Microsoft_EELEntry
  14120. {
  14121. EventId = "392";
  14122. SourceSubsystemType="SMS Log";
  14123. SourceSubsystemName ="application";
  14124. SystemAbout = "Kurshed_2";
  14125. SystemFrom = "Gafoor_1";
  14126. DeliveredBy = "Alam_i2";
  14127. Category="modems";
  14128. Subcategory="general";
  14129. Priority = 4;
  14130. Severity = 2;
  14131. TimeGenerated = "19950618174324.113670+480";
  14132. LoggingTime = "19960707234717.189960+480";
  14133. RollupTime = "19970824185925.131775+480";
  14134. Message = "Message with key to search = 1848532238";
  14135. RecordNumber = "392";
  14136. User = "amit";
  14137. Type = 2;
  14138. Classification = 8;
  14139. LogType = 3;
  14140. OriginalEvent = instance of __InstanceModificationEvent
  14141. { TargetInstance = instance of Win32_Modem
  14142. {
  14143. DeviceId = 726022071;
  14144. Manufacturer = "Acme Corporation";
  14145. OffTheHook = true;
  14146. };
  14147. PreviousInstance = instance of Win32_Modem
  14148. {
  14149. DeviceId = 2085770146;
  14150. Manufacturer = "Acme Corporation";
  14151. OffTheHook = true;
  14152. };
  14153. };
  14154. };
  14155. instance of Microsoft_EELTOCEntryInFile
  14156. {
  14157. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14158. Entry ="Microsoft_EELEntry='392'";
  14159. };
  14160. instance of Microsoft_EELEntry
  14161. {
  14162. EventId = "393";
  14163. SourceSubsystemType="NT Event Log";
  14164. SourceSubsystemName ="Unknown";
  14165. SystemAbout = "Basheer_1";
  14166. SystemFrom = "Gafoor_1";
  14167. DeliveredBy = "Gafoor_1";
  14168. Category="modems";
  14169. Subcategory="general";
  14170. Priority = 1;
  14171. Severity = 4;
  14172. TimeGenerated = "19920323163023.199721+480";
  14173. LoggingTime = "19991022003309.155701+480";
  14174. RollupTime = "20011208084320.198227+480";
  14175. Message = "Message with key to search = 1561894217";
  14176. RecordNumber = "393";
  14177. User = "sriravi";
  14178. Type = 4;
  14179. Classification = 5;
  14180. LogType = 3;
  14181. OriginalEvent = instance of __InstanceDeletionEvent
  14182. { TargetInstance = instance of Win32_Modem
  14183. {
  14184. DeviceId = 622049630;
  14185. Manufacturer = "Acme Corporation";
  14186. OffTheHook = false;
  14187. };
  14188. };
  14189. };
  14190. instance of Microsoft_EELTOCEntryInFile
  14191. {
  14192. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14193. Entry ="Microsoft_EELEntry='393'";
  14194. };
  14195. instance of Microsoft_EELEntry
  14196. {
  14197. EventId = "394";
  14198. SourceSubsystemType="SMS Log";
  14199. SourceSubsystemName ="Unknown";
  14200. SystemAbout = "Basheer_1";
  14201. SystemFrom = "Kurshed_2";
  14202. DeliveredBy = "Basheer_1";
  14203. Category="modems";
  14204. Subcategory="general";
  14205. Priority = 3;
  14206. Severity = 1;
  14207. TimeGenerated = "19950626062917.119518+480";
  14208. LoggingTime = "19960723194302.109130+480";
  14209. RollupTime = "19991014053001.160743+480";
  14210. Message = "Message with key to search = 1910564240";
  14211. RecordNumber = "394";
  14212. User = "sriravi";
  14213. Type = 4;
  14214. Classification = 4;
  14215. LogType = 1;
  14216. OriginalEvent = instance of __InstanceCreationEvent
  14217. { TargetInstance = instance of Win32_Modem
  14218. {
  14219. DeviceId = 1052196005;
  14220. Manufacturer = "Acme Corporation";
  14221. OffTheHook = false;
  14222. };
  14223. };
  14224. };
  14225. instance of Microsoft_EELTOCEntryInFile
  14226. {
  14227. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14228. Entry ="Microsoft_EELEntry='394'";
  14229. };
  14230. instance of Microsoft_EELEntry
  14231. {
  14232. EventId = "395";
  14233. SourceSubsystemType="SMS Log";
  14234. SourceSubsystemName ="driver";
  14235. SystemAbout = "Kurshed_2";
  14236. SystemFrom = "Kurshed_2";
  14237. DeliveredBy = "Kurshed_2";
  14238. Category="modems";
  14239. Subcategory="general";
  14240. Priority = 1;
  14241. Severity = 3;
  14242. TimeGenerated = "19970820184807.177558+480";
  14243. LoggingTime = "19980905112705.189989+480";
  14244. RollupTime = "19980905230817.159828+480";
  14245. Message = "Message with key to search = 1060838484";
  14246. RecordNumber = "395";
  14247. User = "amit";
  14248. Type = 2;
  14249. Classification = 6;
  14250. LogType = 1;
  14251. OriginalEvent = instance of __InstanceModificationEvent
  14252. { TargetInstance = instance of Win32_Modem
  14253. {
  14254. DeviceId = 2095877688;
  14255. Manufacturer = "Acme Corporation";
  14256. OffTheHook = true;
  14257. };
  14258. PreviousInstance = instance of Win32_Modem
  14259. {
  14260. DeviceId = 131727721;
  14261. Manufacturer = "Acme Corporation";
  14262. OffTheHook = false;
  14263. };
  14264. };
  14265. };
  14266. instance of Microsoft_EELTOCEntryInFile
  14267. {
  14268. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14269. Entry ="Microsoft_EELEntry='395'";
  14270. };
  14271. instance of Microsoft_EELEntry
  14272. {
  14273. EventId = "396";
  14274. SourceSubsystemType="NT Event Log";
  14275. SourceSubsystemName ="server";
  14276. SystemAbout = "Basheer_1";
  14277. SystemFrom = "Gafoor_1";
  14278. DeliveredBy = "Basheer_1";
  14279. Category="modems";
  14280. Subcategory="general";
  14281. Priority = 1;
  14282. Severity = 1;
  14283. TimeGenerated = "19970812231317.179463+480";
  14284. LoggingTime = "20001115021723.178569+480";
  14285. RollupTime = "19950622105104.133396+480";
  14286. Message = "Message with key to search = 734604462";
  14287. RecordNumber = "396";
  14288. User = "N/A";
  14289. Type = 6;
  14290. Classification = 3;
  14291. LogType = 3;
  14292. OriginalEvent = instance of __InstanceDeletionEvent
  14293. { TargetInstance = instance of Win32_Modem
  14294. {
  14295. DeviceId = 1871103733;
  14296. Manufacturer = "Acme Corporation";
  14297. OffTheHook = false;
  14298. };
  14299. };
  14300. };
  14301. instance of Microsoft_EELTOCEntryInFile
  14302. {
  14303. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14304. Entry ="Microsoft_EELEntry='396'";
  14305. };
  14306. instance of Microsoft_EELEntry
  14307. {
  14308. EventId = "397";
  14309. SourceSubsystemType="NT Event Log";
  14310. SourceSubsystemName ="server";
  14311. SystemAbout = "Gafoor_1";
  14312. SystemFrom = "Basheer_1";
  14313. DeliveredBy = "Gafoor_1";
  14314. Category="modems";
  14315. Subcategory="general";
  14316. Priority = 2;
  14317. Severity = 3;
  14318. TimeGenerated = "19920311114001.171076+480";
  14319. LoggingTime = "19920323233612.110247+480";
  14320. RollupTime = "19970804180823.187344+480";
  14321. Message = "Message with key to search = 537118027";
  14322. RecordNumber = "397";
  14323. User = "amit";
  14324. Type = 6;
  14325. Classification = 6;
  14326. LogType = 2;
  14327. OriginalEvent = instance of __InstanceCreationEvent
  14328. { TargetInstance = instance of Win32_Modem
  14329. {
  14330. DeviceId = 1155144076;
  14331. Manufacturer = "Acme Corporation";
  14332. OffTheHook = true;
  14333. };
  14334. };
  14335. };
  14336. instance of Microsoft_EELTOCEntryInFile
  14337. {
  14338. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14339. Entry ="Microsoft_EELEntry='397'";
  14340. };
  14341. instance of Microsoft_EELEntry
  14342. {
  14343. EventId = "398";
  14344. SourceSubsystemType="NT Event Log";
  14345. SourceSubsystemName ="Unknown";
  14346. SystemAbout = "Basheer_1";
  14347. SystemFrom = "Kurshed_2";
  14348. DeliveredBy = "Alam_i2";
  14349. Category="modems";
  14350. Subcategory="general";
  14351. Priority = 2;
  14352. Severity = 1;
  14353. TimeGenerated = "19920319103618.115299+480";
  14354. LoggingTime = "19960707003501.178280+480";
  14355. RollupTime = "19930420005604.190727+480";
  14356. Message = "Message with key to search = 2049225683";
  14357. RecordNumber = "398";
  14358. User = "N/A";
  14359. Type = 0;
  14360. Classification = 6;
  14361. LogType = 1;
  14362. OriginalEvent = instance of __InstanceModificationEvent
  14363. { TargetInstance = instance of Win32_Modem
  14364. {
  14365. DeviceId = 239686043;
  14366. Manufacturer = "Acme Corporation";
  14367. OffTheHook = false;
  14368. };
  14369. PreviousInstance = instance of Win32_Modem
  14370. {
  14371. DeviceId = 169132917;
  14372. Manufacturer = "Acme Corporation";
  14373. OffTheHook = true;
  14374. };
  14375. };
  14376. };
  14377. instance of Microsoft_EELTOCEntryInFile
  14378. {
  14379. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14380. Entry ="Microsoft_EELEntry='398'";
  14381. };
  14382. instance of Microsoft_EELEntry
  14383. {
  14384. EventId = "399";
  14385. SourceSubsystemType="NT Event Log";
  14386. SourceSubsystemName ="Unknown";
  14387. SystemAbout = "Basheer_1";
  14388. SystemFrom = "Basheer_1";
  14389. DeliveredBy = "Gafoor_1";
  14390. Category="modems";
  14391. Subcategory="general";
  14392. Priority = 2;
  14393. Severity = 2;
  14394. TimeGenerated = "19910210140527.199391+480";
  14395. LoggingTime = "19991026001717.115991+480";
  14396. RollupTime = "19960727195306.166867+480";
  14397. Message = "Message with key to search = 1793712518";
  14398. RecordNumber = "399";
  14399. User = "N/A";
  14400. Type = 1;
  14401. Classification = 1;
  14402. LogType = 1;
  14403. OriginalEvent = instance of __InstanceDeletionEvent
  14404. { TargetInstance = instance of Win32_Modem
  14405. {
  14406. DeviceId = 2055841528;
  14407. Manufacturer = "Acme Corporation";
  14408. OffTheHook = true;
  14409. };
  14410. };
  14411. };
  14412. instance of Microsoft_EELTOCEntryInFile
  14413. {
  14414. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14415. Entry ="Microsoft_EELEntry='399'";
  14416. };
  14417. instance of Microsoft_EELEntry
  14418. {
  14419. EventId = "400";
  14420. SourceSubsystemType="SMS Log";
  14421. SourceSubsystemName ="application";
  14422. SystemAbout = "Kurshed_2";
  14423. SystemFrom = "Alam_i2";
  14424. DeliveredBy = "Kurshed_2";
  14425. Category="modems";
  14426. Subcategory="general";
  14427. Priority = 2;
  14428. Severity = 3;
  14429. TimeGenerated = "19900113093016.179004+480";
  14430. LoggingTime = "20011216071103.179174+480";
  14431. RollupTime = "19930428091223.163757+480";
  14432. Message = "Message with key to search = 1633632954";
  14433. RecordNumber = "400";
  14434. User = "N/A";
  14435. Type = 5;
  14436. Classification = 7;
  14437. LogType = 2;
  14438. OriginalEvent = instance of __InstanceCreationEvent
  14439. { TargetInstance = instance of Win32_Modem
  14440. {
  14441. DeviceId = 2005303569;
  14442. Manufacturer = "Acme Corporation";
  14443. OffTheHook = false;
  14444. };
  14445. };
  14446. };
  14447. instance of Microsoft_EELTOCEntryInFile
  14448. {
  14449. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14450. Entry ="Microsoft_EELEntry='400'";
  14451. };
  14452. instance of Microsoft_EELEntry
  14453. {
  14454. EventId = "401";
  14455. SourceSubsystemType="NT Event Log";
  14456. SourceSubsystemName ="Unknown";
  14457. SystemAbout = "Kurshed_2";
  14458. SystemFrom = "Basheer_1";
  14459. DeliveredBy = "Alam_i2";
  14460. Category="modems";
  14461. Subcategory="general";
  14462. Priority = 4;
  14463. Severity = 4;
  14464. TimeGenerated = "19900105003521.123640+480";
  14465. LoggingTime = "20011212054302.139244+480";
  14466. RollupTime = "19970804011404.167080+480";
  14467. Message = "Message with key to search = 1445024872";
  14468. RecordNumber = "401";
  14469. User = "rishi";
  14470. Type = 0;
  14471. Classification = 7;
  14472. LogType = 2;
  14473. OriginalEvent = instance of __InstanceModificationEvent
  14474. { TargetInstance = instance of Win32_Modem
  14475. {
  14476. DeviceId = 369127304;
  14477. Manufacturer = "Acme Corporation";
  14478. OffTheHook = false;
  14479. };
  14480. PreviousInstance = instance of Win32_Modem
  14481. {
  14482. DeviceId = 1971243504;
  14483. Manufacturer = "Acme Corporation";
  14484. OffTheHook = false;
  14485. };
  14486. };
  14487. };
  14488. instance of Microsoft_EELTOCEntryInFile
  14489. {
  14490. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14491. Entry ="Microsoft_EELEntry='401'";
  14492. };
  14493. instance of Microsoft_EELEntry
  14494. {
  14495. EventId = "402";
  14496. SourceSubsystemType="SMS Log";
  14497. SourceSubsystemName ="application";
  14498. SystemAbout = "Kurshed_2";
  14499. SystemFrom = "Gafoor_1";
  14500. DeliveredBy = "Alam_i2";
  14501. Category="modems";
  14502. Subcategory="general";
  14503. Priority = 2;
  14504. Severity = 3;
  14505. TimeGenerated = "19970808092312.110050+480";
  14506. LoggingTime = "19991002022024.111453+480";
  14507. RollupTime = "19970820064703.139338+480";
  14508. Message = "Message with key to search = 1402604336";
  14509. RecordNumber = "402";
  14510. User = "rishi";
  14511. Type = 4;
  14512. Classification = 1;
  14513. LogType = 1;
  14514. OriginalEvent = instance of __InstanceDeletionEvent
  14515. { TargetInstance = instance of Win32_Modem
  14516. {
  14517. DeviceId = 2005891159;
  14518. Manufacturer = "Acme Corporation";
  14519. OffTheHook = false;
  14520. };
  14521. };
  14522. };
  14523. instance of Microsoft_EELTOCEntryInFile
  14524. {
  14525. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14526. Entry ="Microsoft_EELEntry='402'";
  14527. };
  14528. instance of Microsoft_EELEntry
  14529. {
  14530. EventId = "403";
  14531. SourceSubsystemType="SMS Log";
  14532. SourceSubsystemName ="driver";
  14533. SystemAbout = "Basheer_1";
  14534. SystemFrom = "Alam_i2";
  14535. DeliveredBy = "Basheer_1";
  14536. Category="modems";
  14537. Subcategory="general";
  14538. Priority = 4;
  14539. Severity = 2;
  14540. TimeGenerated = "19970820003112.105754+480";
  14541. LoggingTime = "19980913144111.114472+480";
  14542. RollupTime = "20001127214712.146438+480";
  14543. Message = "Message with key to search = 817588477";
  14544. RecordNumber = "403";
  14545. User = "rishi";
  14546. Type = 4;
  14547. Classification = 4;
  14548. LogType = 3;
  14549. OriginalEvent = instance of __InstanceCreationEvent
  14550. { TargetInstance = instance of Win32_Modem
  14551. {
  14552. DeviceId = 786507974;
  14553. Manufacturer = "Acme Corporation";
  14554. OffTheHook = false;
  14555. };
  14556. };
  14557. };
  14558. instance of Microsoft_EELTOCEntryInFile
  14559. {
  14560. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14561. Entry ="Microsoft_EELEntry='403'";
  14562. };
  14563. instance of Microsoft_EELEntry
  14564. {
  14565. EventId = "404";
  14566. SourceSubsystemType="NT Event Log";
  14567. SourceSubsystemName ="server";
  14568. SystemAbout = "Alam_i2";
  14569. SystemFrom = "Kurshed_2";
  14570. DeliveredBy = "Basheer_1";
  14571. Category="modems";
  14572. Subcategory="general";
  14573. Priority = 1;
  14574. Severity = 1;
  14575. TimeGenerated = "19910206192525.129115+480";
  14576. LoggingTime = "19991002043704.151161+480";
  14577. RollupTime = "19980905024428.171690+480";
  14578. Message = "Message with key to search = 1447205414";
  14579. RecordNumber = "404";
  14580. User = "amit";
  14581. Type = 1;
  14582. Classification = 5;
  14583. LogType = 1;
  14584. OriginalEvent = instance of __InstanceModificationEvent
  14585. { TargetInstance = instance of Win32_Modem
  14586. {
  14587. DeviceId = 631602314;
  14588. Manufacturer = "Acme Corporation";
  14589. OffTheHook = true;
  14590. };
  14591. PreviousInstance = instance of Win32_Modem
  14592. {
  14593. DeviceId = 1163348866;
  14594. Manufacturer = "Acme Corporation";
  14595. OffTheHook = false;
  14596. };
  14597. };
  14598. };
  14599. instance of Microsoft_EELTOCEntryInFile
  14600. {
  14601. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14602. Entry ="Microsoft_EELEntry='404'";
  14603. };
  14604. instance of Microsoft_EELEntry
  14605. {
  14606. EventId = "405";
  14607. SourceSubsystemType="NT Event Log";
  14608. SourceSubsystemName ="application";
  14609. SystemAbout = "Kurshed_2";
  14610. SystemFrom = "Basheer_1";
  14611. DeliveredBy = "Gafoor_1";
  14612. Category="modems";
  14613. Subcategory="general";
  14614. Priority = 4;
  14615. Severity = 4;
  14616. TimeGenerated = "19930420060519.190652+480";
  14617. LoggingTime = "19991006211520.137835+480";
  14618. RollupTime = "19930420005604.190727+480";
  14619. Message = "Message with key to search = 1875858908";
  14620. RecordNumber = "405";
  14621. User = "sriravi";
  14622. Type = 3;
  14623. Classification = 2;
  14624. LogType = 1;
  14625. OriginalEvent = instance of __InstanceDeletionEvent
  14626. { TargetInstance = instance of Win32_Modem
  14627. {
  14628. DeviceId = 225725407;
  14629. Manufacturer = "Acme Corporation";
  14630. OffTheHook = false;
  14631. };
  14632. };
  14633. };
  14634. instance of Microsoft_EELTOCEntryInFile
  14635. {
  14636. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14637. Entry ="Microsoft_EELEntry='405'";
  14638. };
  14639. instance of Microsoft_EELEntry
  14640. {
  14641. EventId = "406";
  14642. SourceSubsystemType="SMS Log";
  14643. SourceSubsystemName ="driver";
  14644. SystemAbout = "Gafoor_1";
  14645. SystemFrom = "Kurshed_2";
  14646. DeliveredBy = "Gafoor_1";
  14647. Category="modems";
  14648. Subcategory="general";
  14649. Priority = 3;
  14650. Severity = 4;
  14651. TimeGenerated = "19920311203405.123127+480";
  14652. LoggingTime = "20011220170706.174482+480";
  14653. RollupTime = "19991002174827.136775+480";
  14654. Message = "Message with key to search = 1076587508";
  14655. RecordNumber = "406";
  14656. User = "sriravi";
  14657. Type = 6;
  14658. Classification = 1;
  14659. LogType = 1;
  14660. OriginalEvent = instance of __InstanceCreationEvent
  14661. { TargetInstance = instance of Win32_Modem
  14662. {
  14663. DeviceId = 1772483118;
  14664. Manufacturer = "Acme Corporation";
  14665. OffTheHook = false;
  14666. };
  14667. };
  14668. };
  14669. instance of Microsoft_EELTOCEntryInFile
  14670. {
  14671. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14672. Entry ="Microsoft_EELEntry='406'";
  14673. };
  14674. instance of Microsoft_EELEntry
  14675. {
  14676. EventId = "407";
  14677. SourceSubsystemType="SMS Log";
  14678. SourceSubsystemName ="server";
  14679. SystemAbout = "Basheer_1";
  14680. SystemFrom = "Alam_i2";
  14681. DeliveredBy = "Alam_i2";
  14682. Category="modems";
  14683. Subcategory="general";
  14684. Priority = 4;
  14685. Severity = 4;
  14686. TimeGenerated = "19930428174424.161452+480";
  14687. LoggingTime = "19940521141516.108299+480";
  14688. RollupTime = "19980909164216.195970+480";
  14689. Message = "Message with key to search = 744575795";
  14690. RecordNumber = "407";
  14691. User = "rishi";
  14692. Type = 3;
  14693. Classification = 8;
  14694. LogType = 2;
  14695. OriginalEvent = instance of __InstanceModificationEvent
  14696. { TargetInstance = instance of Win32_Modem
  14697. {
  14698. DeviceId = 1805504158;
  14699. Manufacturer = "Acme Corporation";
  14700. OffTheHook = true;
  14701. };
  14702. PreviousInstance = instance of Win32_Modem
  14703. {
  14704. DeviceId = 1426827059;
  14705. Manufacturer = "Acme Corporation";
  14706. OffTheHook = true;
  14707. };
  14708. };
  14709. };
  14710. instance of Microsoft_EELTOCEntryInFile
  14711. {
  14712. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14713. Entry ="Microsoft_EELEntry='407'";
  14714. };
  14715. instance of Microsoft_EELEntry
  14716. {
  14717. EventId = "408";
  14718. SourceSubsystemType="SMS Log";
  14719. SourceSubsystemName ="server";
  14720. SystemAbout = "Alam_i2";
  14721. SystemFrom = "Kurshed_2";
  14722. DeliveredBy = "Gafoor_1";
  14723. Category="modems";
  14724. Subcategory="general";
  14725. Priority = 2;
  14726. Severity = 3;
  14727. TimeGenerated = "19920323163023.199721+480";
  14728. LoggingTime = "20001127014008.101040+480";
  14729. RollupTime = "20011228004212.110266+480";
  14730. Message = "Message with key to search = 1259984672";
  14731. RecordNumber = "408";
  14732. User = "rishi";
  14733. Type = 4;
  14734. Classification = 8;
  14735. LogType = 3;
  14736. OriginalEvent = instance of __InstanceDeletionEvent
  14737. { TargetInstance = instance of Win32_Modem
  14738. {
  14739. DeviceId = 525274621;
  14740. Manufacturer = "Acme Corporation";
  14741. OffTheHook = false;
  14742. };
  14743. };
  14744. };
  14745. instance of Microsoft_EELTOCEntryInFile
  14746. {
  14747. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14748. Entry ="Microsoft_EELEntry='408'";
  14749. };
  14750. instance of Microsoft_EELEntry
  14751. {
  14752. EventId = "409";
  14753. SourceSubsystemType="SMS Log";
  14754. SourceSubsystemName ="application";
  14755. SystemAbout = "Gafoor_1";
  14756. SystemFrom = "Basheer_1";
  14757. DeliveredBy = "Gafoor_1";
  14758. Category="modems";
  14759. Subcategory="general";
  14760. Priority = 1;
  14761. Severity = 4;
  14762. TimeGenerated = "19900113170419.119400+480";
  14763. LoggingTime = "20001123114623.147047+480";
  14764. RollupTime = "19960719191115.129516+480";
  14765. Message = "Message with key to search = 1267209908";
  14766. RecordNumber = "409";
  14767. User = "N/A";
  14768. Type = 3;
  14769. Classification = 8;
  14770. LogType = 3;
  14771. OriginalEvent = instance of __InstanceCreationEvent
  14772. { TargetInstance = instance of Win32_Modem
  14773. {
  14774. DeviceId = 1580603625;
  14775. Manufacturer = "Acme Corporation";
  14776. OffTheHook = true;
  14777. };
  14778. };
  14779. };
  14780. instance of Microsoft_EELTOCEntryInFile
  14781. {
  14782. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14783. Entry ="Microsoft_EELEntry='409'";
  14784. };
  14785. instance of Microsoft_EELEntry
  14786. {
  14787. EventId = "410";
  14788. SourceSubsystemType="SMS Log";
  14789. SourceSubsystemName ="server";
  14790. SystemAbout = "Basheer_1";
  14791. SystemFrom = "Alam_i2";
  14792. DeliveredBy = "Gafoor_1";
  14793. Category="modems";
  14794. Subcategory="general";
  14795. Priority = 4;
  14796. Severity = 4;
  14797. TimeGenerated = "19950626090702.161969+480";
  14798. LoggingTime = "19970820054614.193467+480";
  14799. RollupTime = "19980901051626.129244+480";
  14800. Message = "Message with key to search = 2032962396";
  14801. RecordNumber = "410";
  14802. User = "amit";
  14803. Type = 4;
  14804. Classification = 2;
  14805. LogType = 3;
  14806. OriginalEvent = instance of __InstanceModificationEvent
  14807. { TargetInstance = instance of Win32_Modem
  14808. {
  14809. DeviceId = 940793973;
  14810. Manufacturer = "Acme Corporation";
  14811. OffTheHook = false;
  14812. };
  14813. PreviousInstance = instance of Win32_Modem
  14814. {
  14815. DeviceId = 124624881;
  14816. Manufacturer = "Acme Corporation";
  14817. OffTheHook = true;
  14818. };
  14819. };
  14820. };
  14821. instance of Microsoft_EELTOCEntryInFile
  14822. {
  14823. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14824. Entry ="Microsoft_EELEntry='410'";
  14825. };
  14826. instance of Microsoft_EELEntry
  14827. {
  14828. EventId = "411";
  14829. SourceSubsystemType="NT Event Log";
  14830. SourceSubsystemName ="Unknown";
  14831. SystemAbout = "Kurshed_2";
  14832. SystemFrom = "Alam_i2";
  14833. DeliveredBy = "Kurshed_2";
  14834. Category="modems";
  14835. Subcategory="general";
  14836. Priority = 2;
  14837. Severity = 1;
  14838. TimeGenerated = "19960723231024.115326+480";
  14839. LoggingTime = "19991014150319.154207+480";
  14840. RollupTime = "20011228111423.104190+480";
  14841. Message = "Message with key to search = 708149736";
  14842. RecordNumber = "411";
  14843. User = "rishi";
  14844. Type = 2;
  14845. Classification = 2;
  14846. LogType = 3;
  14847. OriginalEvent = instance of __InstanceDeletionEvent
  14848. { TargetInstance = instance of Win32_Modem
  14849. {
  14850. DeviceId = 816696152;
  14851. Manufacturer = "Acme Corporation";
  14852. OffTheHook = false;
  14853. };
  14854. };
  14855. };
  14856. instance of Microsoft_EELTOCEntryInFile
  14857. {
  14858. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14859. Entry ="Microsoft_EELEntry='411'";
  14860. };
  14861. instance of Microsoft_EELEntry
  14862. {
  14863. EventId = "412";
  14864. SourceSubsystemType="NT Event Log";
  14865. SourceSubsystemName ="server";
  14866. SystemAbout = "Basheer_1";
  14867. SystemFrom = "Basheer_1";
  14868. DeliveredBy = "Alam_i2";
  14869. Category="modems";
  14870. Subcategory="general";
  14871. Priority = 3;
  14872. Severity = 1;
  14873. TimeGenerated = "19910226162003.154031+480";
  14874. LoggingTime = "19940501000311.162400+480";
  14875. RollupTime = "19960723215220.191668+480";
  14876. Message = "Message with key to search = 1027182250";
  14877. RecordNumber = "412";
  14878. User = "N/A";
  14879. Type = 4;
  14880. Classification = 1;
  14881. LogType = 3;
  14882. OriginalEvent = instance of __InstanceCreationEvent
  14883. { TargetInstance = instance of Win32_Modem
  14884. {
  14885. DeviceId = 85226322;
  14886. Manufacturer = "Acme Corporation";
  14887. OffTheHook = true;
  14888. };
  14889. };
  14890. };
  14891. instance of Microsoft_EELTOCEntryInFile
  14892. {
  14893. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  14894. Entry ="Microsoft_EELEntry='412'";
  14895. };
  14896. instance of Microsoft_EELEntry
  14897. {
  14898. EventId = "413";
  14899. SourceSubsystemType="SMS Log";
  14900. SourceSubsystemName ="server";
  14901. SystemAbout = "Gafoor_1";
  14902. SystemFrom = "Kurshed_2";
  14903. DeliveredBy = "Gafoor_1";
  14904. Category="modems";
  14905. Subcategory="general";
  14906. Priority = 1;
  14907. Severity = 2;
  14908. TimeGenerated = "19980913211916.147024+480";
  14909. LoggingTime = "19960715231111.121117+480";
  14910. RollupTime = "19960711043024.110978+480";
  14911. Message = "Message with key to search = 1945672139";
  14912. RecordNumber = "413";
  14913. User = "rishi";
  14914. Type = 1;
  14915. Classification = 7;
  14916. LogType = 3;
  14917. OriginalEvent = instance of __InstanceModificationEvent
  14918. { TargetInstance = instance of Win32_Modem
  14919. {
  14920. DeviceId = 986928743;
  14921. Manufacturer = "Acme Corporation";
  14922. OffTheHook = false;
  14923. };
  14924. PreviousInstance = instance of Win32_Modem
  14925. {
  14926. DeviceId = 343138297;
  14927. Manufacturer = "Acme Corporation";
  14928. OffTheHook = true;
  14929. };
  14930. };
  14931. };
  14932. instance of Microsoft_EELTOCEntryInFile
  14933. {
  14934. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  14935. Entry ="Microsoft_EELEntry='413'";
  14936. };
  14937. instance of Microsoft_EELEntry
  14938. {
  14939. EventId = "414";
  14940. SourceSubsystemType="NT Event Log";
  14941. SourceSubsystemName ="application";
  14942. SystemAbout = "Alam_i2";
  14943. SystemFrom = "Basheer_1";
  14944. DeliveredBy = "Kurshed_2";
  14945. Category="modems";
  14946. Subcategory="general";
  14947. Priority = 1;
  14948. Severity = 3;
  14949. TimeGenerated = "19920323153825.149937+480";
  14950. LoggingTime = "20001111084010.134102+480";
  14951. RollupTime = "19940509225114.119941+480";
  14952. Message = "Message with key to search = 1837388636";
  14953. RecordNumber = "414";
  14954. User = "N/A";
  14955. Type = 2;
  14956. Classification = 4;
  14957. LogType = 2;
  14958. OriginalEvent = instance of __InstanceDeletionEvent
  14959. { TargetInstance = instance of Win32_Modem
  14960. {
  14961. DeviceId = 829368601;
  14962. Manufacturer = "Acme Corporation";
  14963. OffTheHook = false;
  14964. };
  14965. };
  14966. };
  14967. instance of Microsoft_EELTOCEntryInFile
  14968. {
  14969. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  14970. Entry ="Microsoft_EELEntry='414'";
  14971. };
  14972. instance of Microsoft_EELEntry
  14973. {
  14974. EventId = "415";
  14975. SourceSubsystemType="SMS Log";
  14976. SourceSubsystemName ="Unknown";
  14977. SystemAbout = "Basheer_1";
  14978. SystemFrom = "Alam_i2";
  14979. DeliveredBy = "Alam_i2";
  14980. Category="modems";
  14981. Subcategory="general";
  14982. Priority = 3;
  14983. Severity = 3;
  14984. TimeGenerated = "19900125054705.185013+480";
  14985. LoggingTime = "20011220133108.100198+480";
  14986. RollupTime = "19940501201914.118622+480";
  14987. Message = "Message with key to search = 1467494504";
  14988. RecordNumber = "415";
  14989. User = "sriravi";
  14990. Type = 1;
  14991. Classification = 1;
  14992. LogType = 3;
  14993. OriginalEvent = instance of __InstanceCreationEvent
  14994. { TargetInstance = instance of Win32_Modem
  14995. {
  14996. DeviceId = 1613935396;
  14997. Manufacturer = "Acme Corporation";
  14998. OffTheHook = true;
  14999. };
  15000. };
  15001. };
  15002. instance of Microsoft_EELTOCEntryInFile
  15003. {
  15004. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15005. Entry ="Microsoft_EELEntry='415'";
  15006. };
  15007. instance of Microsoft_EELEntry
  15008. {
  15009. EventId = "416";
  15010. SourceSubsystemType="NT Event Log";
  15011. SourceSubsystemName ="driver";
  15012. SystemAbout = "Basheer_1";
  15013. SystemFrom = "Kurshed_2";
  15014. DeliveredBy = "Basheer_1";
  15015. Category="modems";
  15016. Subcategory="general";
  15017. Priority = 2;
  15018. Severity = 3;
  15019. TimeGenerated = "19900109151800.108936+480";
  15020. LoggingTime = "20001123003214.168175+480";
  15021. RollupTime = "20011216014523.155155+480";
  15022. Message = "Message with key to search = 719497148";
  15023. RecordNumber = "416";
  15024. User = "rishi";
  15025. Type = 6;
  15026. Classification = 4;
  15027. LogType = 3;
  15028. OriginalEvent = instance of __InstanceModificationEvent
  15029. { TargetInstance = instance of Win32_Modem
  15030. {
  15031. DeviceId = 1527151732;
  15032. Manufacturer = "Acme Corporation";
  15033. OffTheHook = true;
  15034. };
  15035. PreviousInstance = instance of Win32_Modem
  15036. {
  15037. DeviceId = 1739377832;
  15038. Manufacturer = "Acme Corporation";
  15039. OffTheHook = false;
  15040. };
  15041. };
  15042. };
  15043. instance of Microsoft_EELTOCEntryInFile
  15044. {
  15045. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15046. Entry ="Microsoft_EELEntry='416'";
  15047. };
  15048. instance of Microsoft_EELEntry
  15049. {
  15050. EventId = "417";
  15051. SourceSubsystemType="SMS Log";
  15052. SourceSubsystemName ="Unknown";
  15053. SystemAbout = "Kurshed_2";
  15054. SystemFrom = "Basheer_1";
  15055. DeliveredBy = "Kurshed_2";
  15056. Category="modems";
  15057. Subcategory="general";
  15058. Priority = 2;
  15059. Severity = 2;
  15060. TimeGenerated = "19910226195518.124084+480";
  15061. LoggingTime = "20011204063919.115243+480";
  15062. RollupTime = "20001123124526.170293+480";
  15063. Message = "Message with key to search = 510250983";
  15064. RecordNumber = "417";
  15065. User = "rishi";
  15066. Type = 3;
  15067. Classification = 6;
  15068. LogType = 1;
  15069. OriginalEvent = instance of __InstanceDeletionEvent
  15070. { TargetInstance = instance of Win32_Modem
  15071. {
  15072. DeviceId = 490552739;
  15073. Manufacturer = "Acme Corporation";
  15074. OffTheHook = false;
  15075. };
  15076. };
  15077. };
  15078. instance of Microsoft_EELTOCEntryInFile
  15079. {
  15080. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15081. Entry ="Microsoft_EELEntry='417'";
  15082. };
  15083. instance of Microsoft_EELEntry
  15084. {
  15085. EventId = "418";
  15086. SourceSubsystemType="NT Event Log";
  15087. SourceSubsystemName ="Unknown";
  15088. SystemAbout = "Kurshed_2";
  15089. SystemFrom = "Alam_i2";
  15090. DeliveredBy = "Alam_i2";
  15091. Category="modems";
  15092. Subcategory="general";
  15093. Priority = 3;
  15094. Severity = 2;
  15095. TimeGenerated = "19910210175310.155588+480";
  15096. LoggingTime = "19980909162119.151647+480";
  15097. RollupTime = "19980909213528.178666+480";
  15098. Message = "Message with key to search = 1876776693";
  15099. RecordNumber = "418";
  15100. User = "N/A";
  15101. Type = 0;
  15102. Classification = 7;
  15103. LogType = 3;
  15104. OriginalEvent = instance of __InstanceCreationEvent
  15105. { TargetInstance = instance of Win32_Modem
  15106. {
  15107. DeviceId = 988884538;
  15108. Manufacturer = "Acme Corporation";
  15109. OffTheHook = true;
  15110. };
  15111. };
  15112. };
  15113. instance of Microsoft_EELTOCEntryInFile
  15114. {
  15115. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15116. Entry ="Microsoft_EELEntry='418'";
  15117. };
  15118. instance of Microsoft_EELEntry
  15119. {
  15120. EventId = "419";
  15121. SourceSubsystemType="SMS Log";
  15122. SourceSubsystemName ="Unknown";
  15123. SystemAbout = "Basheer_1";
  15124. SystemFrom = "Gafoor_1";
  15125. DeliveredBy = "Basheer_1";
  15126. Category="modems";
  15127. Subcategory="general";
  15128. Priority = 1;
  15129. Severity = 2;
  15130. TimeGenerated = "19930408052204.104265+480";
  15131. LoggingTime = "19980925221526.182619+480";
  15132. RollupTime = "19940513192428.172375+480";
  15133. Message = "Message with key to search = 1510060355";
  15134. RecordNumber = "419";
  15135. User = "sriravi";
  15136. Type = 3;
  15137. Classification = 7;
  15138. LogType = 3;
  15139. OriginalEvent = instance of __InstanceModificationEvent
  15140. { TargetInstance = instance of Win32_Modem
  15141. {
  15142. DeviceId = 1241756781;
  15143. Manufacturer = "Acme Corporation";
  15144. OffTheHook = true;
  15145. };
  15146. PreviousInstance = instance of Win32_Modem
  15147. {
  15148. DeviceId = 1023680870;
  15149. Manufacturer = "Acme Corporation";
  15150. OffTheHook = false;
  15151. };
  15152. };
  15153. };
  15154. instance of Microsoft_EELTOCEntryInFile
  15155. {
  15156. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15157. Entry ="Microsoft_EELEntry='419'";
  15158. };
  15159. instance of Microsoft_EELEntry
  15160. {
  15161. EventId = "420";
  15162. SourceSubsystemType="SMS Log";
  15163. SourceSubsystemName ="application";
  15164. SystemAbout = "Alam_i2";
  15165. SystemFrom = "Alam_i2";
  15166. DeliveredBy = "Basheer_1";
  15167. Category="modems";
  15168. Subcategory="general";
  15169. Priority = 2;
  15170. Severity = 4;
  15171. TimeGenerated = "19900113102603.101859+480";
  15172. LoggingTime = "19960703225801.127602+480";
  15173. RollupTime = "19980917134223.182569+480";
  15174. Message = "Message with key to search = 846827766";
  15175. RecordNumber = "420";
  15176. User = "amit";
  15177. Type = 0;
  15178. Classification = 6;
  15179. LogType = 1;
  15180. OriginalEvent = instance of __InstanceDeletionEvent
  15181. { TargetInstance = instance of Win32_Modem
  15182. {
  15183. DeviceId = 204053754;
  15184. Manufacturer = "Acme Corporation";
  15185. OffTheHook = true;
  15186. };
  15187. };
  15188. };
  15189. instance of Microsoft_EELTOCEntryInFile
  15190. {
  15191. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15192. Entry ="Microsoft_EELEntry='420'";
  15193. };
  15194. instance of Microsoft_EELEntry
  15195. {
  15196. EventId = "421";
  15197. SourceSubsystemType="SMS Log";
  15198. SourceSubsystemName ="application";
  15199. SystemAbout = "Kurshed_2";
  15200. SystemFrom = "Alam_i2";
  15201. DeliveredBy = "Basheer_1";
  15202. Category="modems";
  15203. Subcategory="general";
  15204. Priority = 4;
  15205. Severity = 1;
  15206. TimeGenerated = "19910218032310.115034+480";
  15207. LoggingTime = "19940517054608.159811+480";
  15208. RollupTime = "19920327033316.107236+480";
  15209. Message = "Message with key to search = 1186177488";
  15210. RecordNumber = "421";
  15211. User = "N/A";
  15212. Type = 5;
  15213. Classification = 8;
  15214. LogType = 3;
  15215. OriginalEvent = instance of __InstanceCreationEvent
  15216. { TargetInstance = instance of Win32_Modem
  15217. {
  15218. DeviceId = 597274291;
  15219. Manufacturer = "Acme Corporation";
  15220. OffTheHook = true;
  15221. };
  15222. };
  15223. };
  15224. instance of Microsoft_EELTOCEntryInFile
  15225. {
  15226. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15227. Entry ="Microsoft_EELEntry='421'";
  15228. };
  15229. instance of Microsoft_EELEntry
  15230. {
  15231. EventId = "422";
  15232. SourceSubsystemType="NT Event Log";
  15233. SourceSubsystemName ="driver";
  15234. SystemAbout = "Basheer_1";
  15235. SystemFrom = "Alam_i2";
  15236. DeliveredBy = "Kurshed_2";
  15237. Category="modems";
  15238. Subcategory="general";
  15239. Priority = 1;
  15240. Severity = 4;
  15241. TimeGenerated = "19960723103619.112110+480";
  15242. LoggingTime = "20001103220813.180786+480";
  15243. RollupTime = "20001111094722.198157+480";
  15244. Message = "Message with key to search = 745841838";
  15245. RecordNumber = "422";
  15246. User = "rishi";
  15247. Type = 4;
  15248. Classification = 4;
  15249. LogType = 1;
  15250. OriginalEvent = instance of __InstanceModificationEvent
  15251. { TargetInstance = instance of Win32_Modem
  15252. {
  15253. DeviceId = 1600103871;
  15254. Manufacturer = "Acme Corporation";
  15255. OffTheHook = true;
  15256. };
  15257. PreviousInstance = instance of Win32_Modem
  15258. {
  15259. DeviceId = 24159568;
  15260. Manufacturer = "Acme Corporation";
  15261. OffTheHook = false;
  15262. };
  15263. };
  15264. };
  15265. instance of Microsoft_EELTOCEntryInFile
  15266. {
  15267. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15268. Entry ="Microsoft_EELEntry='422'";
  15269. };
  15270. instance of Microsoft_EELEntry
  15271. {
  15272. EventId = "423";
  15273. SourceSubsystemType="SMS Log";
  15274. SourceSubsystemName ="driver";
  15275. SystemAbout = "Gafoor_1";
  15276. SystemFrom = "Alam_i2";
  15277. DeliveredBy = "Basheer_1";
  15278. Category="modems";
  15279. Subcategory="general";
  15280. Priority = 2;
  15281. Severity = 4;
  15282. TimeGenerated = "19910222004404.154420+480";
  15283. LoggingTime = "19960707152120.139789+480";
  15284. RollupTime = "19991026212201.189505+480";
  15285. Message = "Message with key to search = 616811712";
  15286. RecordNumber = "423";
  15287. User = "N/A";
  15288. Type = 1;
  15289. Classification = 1;
  15290. LogType = 2;
  15291. OriginalEvent = instance of __InstanceDeletionEvent
  15292. { TargetInstance = instance of Win32_Modem
  15293. {
  15294. DeviceId = 1181463229;
  15295. Manufacturer = "Acme Corporation";
  15296. OffTheHook = false;
  15297. };
  15298. };
  15299. };
  15300. instance of Microsoft_EELTOCEntryInFile
  15301. {
  15302. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15303. Entry ="Microsoft_EELEntry='423'";
  15304. };
  15305. instance of Microsoft_EELEntry
  15306. {
  15307. EventId = "424";
  15308. SourceSubsystemType="SMS Log";
  15309. SourceSubsystemName ="application";
  15310. SystemAbout = "Kurshed_2";
  15311. SystemFrom = "Kurshed_2";
  15312. DeliveredBy = "Kurshed_2";
  15313. Category="modems";
  15314. Subcategory="general";
  15315. Priority = 2;
  15316. Severity = 3;
  15317. TimeGenerated = "19910202215322.190828+480";
  15318. LoggingTime = "19930416052328.168391+480";
  15319. RollupTime = "19980921081506.149092+480";
  15320. Message = "Message with key to search = 1789922873";
  15321. RecordNumber = "424";
  15322. User = "sriravi";
  15323. Type = 2;
  15324. Classification = 8;
  15325. LogType = 3;
  15326. OriginalEvent = instance of __InstanceCreationEvent
  15327. { TargetInstance = instance of Win32_Modem
  15328. {
  15329. DeviceId = 778553486;
  15330. Manufacturer = "Acme Corporation";
  15331. OffTheHook = false;
  15332. };
  15333. };
  15334. };
  15335. instance of Microsoft_EELTOCEntryInFile
  15336. {
  15337. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15338. Entry ="Microsoft_EELEntry='424'";
  15339. };
  15340. instance of Microsoft_EELEntry
  15341. {
  15342. EventId = "425";
  15343. SourceSubsystemType="SMS Log";
  15344. SourceSubsystemName ="application";
  15345. SystemAbout = "Gafoor_1";
  15346. SystemFrom = "Basheer_1";
  15347. DeliveredBy = "Kurshed_2";
  15348. Category="modems";
  15349. Subcategory="general";
  15350. Priority = 2;
  15351. Severity = 2;
  15352. TimeGenerated = "19950602212511.151553+480";
  15353. LoggingTime = "19950606164727.178737+480";
  15354. RollupTime = "20011228220205.120365+480";
  15355. Message = "Message with key to search = 1740574113";
  15356. RecordNumber = "425";
  15357. User = "rishi";
  15358. Type = 3;
  15359. Classification = 7;
  15360. LogType = 1;
  15361. OriginalEvent = instance of __InstanceModificationEvent
  15362. { TargetInstance = instance of Win32_Modem
  15363. {
  15364. DeviceId = 471497873;
  15365. Manufacturer = "Acme Corporation";
  15366. OffTheHook = true;
  15367. };
  15368. PreviousInstance = instance of Win32_Modem
  15369. {
  15370. DeviceId = 20291984;
  15371. Manufacturer = "Acme Corporation";
  15372. OffTheHook = false;
  15373. };
  15374. };
  15375. };
  15376. instance of Microsoft_EELTOCEntryInFile
  15377. {
  15378. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15379. Entry ="Microsoft_EELEntry='425'";
  15380. };
  15381. instance of Microsoft_EELEntry
  15382. {
  15383. EventId = "426";
  15384. SourceSubsystemType="NT Event Log";
  15385. SourceSubsystemName ="Unknown";
  15386. SystemAbout = "Kurshed_2";
  15387. SystemFrom = "Gafoor_1";
  15388. DeliveredBy = "Alam_i2";
  15389. Category="modems";
  15390. Subcategory="general";
  15391. Priority = 2;
  15392. Severity = 2;
  15393. TimeGenerated = "19950622151805.175153+480";
  15394. LoggingTime = "19980925085907.105445+480";
  15395. RollupTime = "19970816205425.115273+480";
  15396. Message = "Message with key to search = 371011797";
  15397. RecordNumber = "426";
  15398. User = "rishi";
  15399. Type = 6;
  15400. Classification = 6;
  15401. LogType = 3;
  15402. OriginalEvent = instance of __InstanceDeletionEvent
  15403. { TargetInstance = instance of Win32_Modem
  15404. {
  15405. DeviceId = 2112723128;
  15406. Manufacturer = "Acme Corporation";
  15407. OffTheHook = true;
  15408. };
  15409. };
  15410. };
  15411. instance of Microsoft_EELTOCEntryInFile
  15412. {
  15413. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15414. Entry ="Microsoft_EELEntry='426'";
  15415. };
  15416. instance of Microsoft_EELEntry
  15417. {
  15418. EventId = "427";
  15419. SourceSubsystemType="NT Event Log";
  15420. SourceSubsystemName ="server";
  15421. SystemAbout = "Basheer_1";
  15422. SystemFrom = "Basheer_1";
  15423. DeliveredBy = "Gafoor_1";
  15424. Category="modems";
  15425. Subcategory="general";
  15426. Priority = 2;
  15427. Severity = 3;
  15428. TimeGenerated = "19930416044526.108544+480";
  15429. LoggingTime = "19950614124702.153814+480";
  15430. RollupTime = "20011212160628.112890+480";
  15431. Message = "Message with key to search = 1610789459";
  15432. RecordNumber = "427";
  15433. User = "sriravi";
  15434. Type = 1;
  15435. Classification = 6;
  15436. LogType = 3;
  15437. OriginalEvent = instance of __InstanceCreationEvent
  15438. { TargetInstance = instance of Win32_Modem
  15439. {
  15440. DeviceId = 2069354655;
  15441. Manufacturer = "Acme Corporation";
  15442. OffTheHook = true;
  15443. };
  15444. };
  15445. };
  15446. instance of Microsoft_EELTOCEntryInFile
  15447. {
  15448. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15449. Entry ="Microsoft_EELEntry='427'";
  15450. };
  15451. instance of Microsoft_EELEntry
  15452. {
  15453. EventId = "428";
  15454. SourceSubsystemType="SMS Log";
  15455. SourceSubsystemName ="driver";
  15456. SystemAbout = "Kurshed_2";
  15457. SystemFrom = "Alam_i2";
  15458. DeliveredBy = "Kurshed_2";
  15459. Category="modems";
  15460. Subcategory="general";
  15461. Priority = 2;
  15462. Severity = 4;
  15463. TimeGenerated = "19910210005521.148915+480";
  15464. LoggingTime = "20011220045102.114351+480";
  15465. RollupTime = "19900101041008.188128+480";
  15466. Message = "Message with key to search = 1561189001";
  15467. RecordNumber = "428";
  15468. User = "rishi";
  15469. Type = 3;
  15470. Classification = 7;
  15471. LogType = 1;
  15472. OriginalEvent = instance of __InstanceModificationEvent
  15473. { TargetInstance = instance of Win32_Modem
  15474. {
  15475. DeviceId = 629823301;
  15476. Manufacturer = "Acme Corporation";
  15477. OffTheHook = true;
  15478. };
  15479. PreviousInstance = instance of Win32_Modem
  15480. {
  15481. DeviceId = 2040711858;
  15482. Manufacturer = "Acme Corporation";
  15483. OffTheHook = false;
  15484. };
  15485. };
  15486. };
  15487. instance of Microsoft_EELTOCEntryInFile
  15488. {
  15489. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15490. Entry ="Microsoft_EELEntry='428'";
  15491. };
  15492. instance of Microsoft_EELEntry
  15493. {
  15494. EventId = "429";
  15495. SourceSubsystemType="NT Event Log";
  15496. SourceSubsystemName ="server";
  15497. SystemAbout = "Gafoor_1";
  15498. SystemFrom = "Basheer_1";
  15499. DeliveredBy = "Gafoor_1";
  15500. Category="modems";
  15501. Subcategory="general";
  15502. Priority = 4;
  15503. Severity = 3;
  15504. TimeGenerated = "19950626002007.121229+480";
  15505. LoggingTime = "19991026142327.158923+480";
  15506. RollupTime = "19991026222914.116198+480";
  15507. Message = "Message with key to search = 1478400862";
  15508. RecordNumber = "429";
  15509. User = "amit";
  15510. Type = 1;
  15511. Classification = 6;
  15512. LogType = 1;
  15513. OriginalEvent = instance of __InstanceDeletionEvent
  15514. { TargetInstance = instance of Win32_Modem
  15515. {
  15516. DeviceId = 240666359;
  15517. Manufacturer = "Acme Corporation";
  15518. OffTheHook = true;
  15519. };
  15520. };
  15521. };
  15522. instance of Microsoft_EELTOCEntryInFile
  15523. {
  15524. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15525. Entry ="Microsoft_EELEntry='429'";
  15526. };
  15527. instance of Microsoft_EELEntry
  15528. {
  15529. EventId = "430";
  15530. SourceSubsystemType="SMS Log";
  15531. SourceSubsystemName ="driver";
  15532. SystemAbout = "Alam_i2";
  15533. SystemFrom = "Kurshed_2";
  15534. DeliveredBy = "Alam_i2";
  15535. Category="modems";
  15536. Subcategory="general";
  15537. Priority = 4;
  15538. Severity = 3;
  15539. TimeGenerated = "19900113024122.151557+480";
  15540. LoggingTime = "19980909162119.151647+480";
  15541. RollupTime = "19960707164818.158530+480";
  15542. Message = "Message with key to search = 72512145";
  15543. RecordNumber = "430";
  15544. User = "amit";
  15545. Type = 3;
  15546. Classification = 8;
  15547. LogType = 2;
  15548. OriginalEvent = instance of __InstanceCreationEvent
  15549. { TargetInstance = instance of Win32_Modem
  15550. {
  15551. DeviceId = 1177916452;
  15552. Manufacturer = "Acme Corporation";
  15553. OffTheHook = true;
  15554. };
  15555. };
  15556. };
  15557. instance of Microsoft_EELTOCEntryInFile
  15558. {
  15559. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15560. Entry ="Microsoft_EELEntry='430'";
  15561. };
  15562. instance of Microsoft_EELEntry
  15563. {
  15564. EventId = "431";
  15565. SourceSubsystemType="SMS Log";
  15566. SourceSubsystemName ="driver";
  15567. SystemAbout = "Gafoor_1";
  15568. SystemFrom = "Basheer_1";
  15569. DeliveredBy = "Gafoor_1";
  15570. Category="modems";
  15571. Subcategory="general";
  15572. Priority = 2;
  15573. Severity = 4;
  15574. TimeGenerated = "19950614224900.148413+480";
  15575. LoggingTime = "19970808132512.114850+480";
  15576. RollupTime = "20001107181504.193466+480";
  15577. Message = "Message with key to search = 149241166";
  15578. RecordNumber = "431";
  15579. User = "rishi";
  15580. Type = 5;
  15581. Classification = 1;
  15582. LogType = 3;
  15583. OriginalEvent = instance of __InstanceModificationEvent
  15584. { TargetInstance = instance of Win32_Modem
  15585. {
  15586. DeviceId = 1702088305;
  15587. Manufacturer = "Acme Corporation";
  15588. OffTheHook = false;
  15589. };
  15590. PreviousInstance = instance of Win32_Modem
  15591. {
  15592. DeviceId = 1728296852;
  15593. Manufacturer = "Acme Corporation";
  15594. OffTheHook = false;
  15595. };
  15596. };
  15597. };
  15598. instance of Microsoft_EELTOCEntryInFile
  15599. {
  15600. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15601. Entry ="Microsoft_EELEntry='431'";
  15602. };
  15603. instance of Microsoft_EELEntry
  15604. {
  15605. EventId = "432";
  15606. SourceSubsystemType="NT Event Log";
  15607. SourceSubsystemName ="driver";
  15608. SystemAbout = "Kurshed_2";
  15609. SystemFrom = "Basheer_1";
  15610. DeliveredBy = "Alam_i2";
  15611. Category="modems";
  15612. Subcategory="general";
  15613. Priority = 1;
  15614. Severity = 4;
  15615. TimeGenerated = "19930428152324.195903+480";
  15616. LoggingTime = "19970804131616.179208+480";
  15617. RollupTime = "19930428105428.129339+480";
  15618. Message = "Message with key to search = 1074032696";
  15619. RecordNumber = "432";
  15620. User = "rishi";
  15621. Type = 2;
  15622. Classification = 6;
  15623. LogType = 1;
  15624. OriginalEvent = instance of __InstanceDeletionEvent
  15625. { TargetInstance = instance of Win32_Modem
  15626. {
  15627. DeviceId = 1376340963;
  15628. Manufacturer = "Acme Corporation";
  15629. OffTheHook = false;
  15630. };
  15631. };
  15632. };
  15633. instance of Microsoft_EELTOCEntryInFile
  15634. {
  15635. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15636. Entry ="Microsoft_EELEntry='432'";
  15637. };
  15638. instance of Microsoft_EELEntry
  15639. {
  15640. EventId = "433";
  15641. SourceSubsystemType="NT Event Log";
  15642. SourceSubsystemName ="server";
  15643. SystemAbout = "Gafoor_1";
  15644. SystemFrom = "Gafoor_1";
  15645. DeliveredBy = "Gafoor_1";
  15646. Category="modems";
  15647. Subcategory="general";
  15648. Priority = 3;
  15649. Severity = 2;
  15650. TimeGenerated = "19991022101011.138320+480";
  15651. LoggingTime = "19991022133700.191449+480";
  15652. RollupTime = "20011220050806.165216+480";
  15653. Message = "Message with key to search = 1845406237";
  15654. RecordNumber = "433";
  15655. User = "N/A";
  15656. Type = 4;
  15657. Classification = 6;
  15658. LogType = 3;
  15659. OriginalEvent = instance of __InstanceCreationEvent
  15660. { TargetInstance = instance of Win32_Modem
  15661. {
  15662. DeviceId = 389763632;
  15663. Manufacturer = "Acme Corporation";
  15664. OffTheHook = true;
  15665. };
  15666. };
  15667. };
  15668. instance of Microsoft_EELTOCEntryInFile
  15669. {
  15670. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15671. Entry ="Microsoft_EELEntry='433'";
  15672. };
  15673. instance of Microsoft_EELEntry
  15674. {
  15675. EventId = "434";
  15676. SourceSubsystemType="SMS Log";
  15677. SourceSubsystemName ="Unknown";
  15678. SystemAbout = "Alam_i2";
  15679. SystemFrom = "Alam_i2";
  15680. DeliveredBy = "Kurshed_2";
  15681. Category="modems";
  15682. Subcategory="general";
  15683. Priority = 4;
  15684. Severity = 3;
  15685. TimeGenerated = "19920327195100.112778+480";
  15686. LoggingTime = "19950614053202.182836+480";
  15687. RollupTime = "20001123142314.184209+480";
  15688. Message = "Message with key to search = 321959114";
  15689. RecordNumber = "434";
  15690. User = "rishi";
  15691. Type = 4;
  15692. Classification = 8;
  15693. LogType = 3;
  15694. OriginalEvent = instance of __InstanceModificationEvent
  15695. { TargetInstance = instance of Win32_Modem
  15696. {
  15697. DeviceId = 737147784;
  15698. Manufacturer = "Acme Corporation";
  15699. OffTheHook = false;
  15700. };
  15701. PreviousInstance = instance of Win32_Modem
  15702. {
  15703. DeviceId = 601632714;
  15704. Manufacturer = "Acme Corporation";
  15705. OffTheHook = false;
  15706. };
  15707. };
  15708. };
  15709. instance of Microsoft_EELTOCEntryInFile
  15710. {
  15711. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15712. Entry ="Microsoft_EELEntry='434'";
  15713. };
  15714. instance of Microsoft_EELEntry
  15715. {
  15716. EventId = "435";
  15717. SourceSubsystemType="NT Event Log";
  15718. SourceSubsystemName ="Unknown";
  15719. SystemAbout = "Basheer_1";
  15720. SystemFrom = "Kurshed_2";
  15721. DeliveredBy = "Gafoor_1";
  15722. Category="modems";
  15723. Subcategory="general";
  15724. Priority = 4;
  15725. Severity = 1;
  15726. TimeGenerated = "19900125154227.192172+480";
  15727. LoggingTime = "20001115222208.175456+480";
  15728. RollupTime = "20001123145025.172882+480";
  15729. Message = "Message with key to search = 80403476";
  15730. RecordNumber = "435";
  15731. User = "rishi";
  15732. Type = 3;
  15733. Classification = 7;
  15734. LogType = 3;
  15735. OriginalEvent = instance of __InstanceDeletionEvent
  15736. { TargetInstance = instance of Win32_Modem
  15737. {
  15738. DeviceId = 1081136702;
  15739. Manufacturer = "Acme Corporation";
  15740. OffTheHook = false;
  15741. };
  15742. };
  15743. };
  15744. instance of Microsoft_EELTOCEntryInFile
  15745. {
  15746. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15747. Entry ="Microsoft_EELEntry='435'";
  15748. };
  15749. instance of Microsoft_EELEntry
  15750. {
  15751. EventId = "436";
  15752. SourceSubsystemType="SMS Log";
  15753. SourceSubsystemName ="Unknown";
  15754. SystemAbout = "Alam_i2";
  15755. SystemFrom = "Alam_i2";
  15756. DeliveredBy = "Basheer_1";
  15757. Category="modems";
  15758. Subcategory="general";
  15759. Priority = 4;
  15760. Severity = 4;
  15761. TimeGenerated = "19930428183419.199112+480";
  15762. LoggingTime = "19991002140313.131889+480";
  15763. RollupTime = "19920315122227.182843+480";
  15764. Message = "Message with key to search = 102816277";
  15765. RecordNumber = "436";
  15766. User = "N/A";
  15767. Type = 0;
  15768. Classification = 1;
  15769. LogType = 1;
  15770. OriginalEvent = instance of __InstanceCreationEvent
  15771. { TargetInstance = instance of Win32_Modem
  15772. {
  15773. DeviceId = 1872029112;
  15774. Manufacturer = "Acme Corporation";
  15775. OffTheHook = true;
  15776. };
  15777. };
  15778. };
  15779. instance of Microsoft_EELTOCEntryInFile
  15780. {
  15781. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15782. Entry ="Microsoft_EELEntry='436'";
  15783. };
  15784. instance of Microsoft_EELEntry
  15785. {
  15786. EventId = "437";
  15787. SourceSubsystemType="NT Event Log";
  15788. SourceSubsystemName ="server";
  15789. SystemAbout = "Alam_i2";
  15790. SystemFrom = "Alam_i2";
  15791. DeliveredBy = "Kurshed_2";
  15792. Category="modems";
  15793. Subcategory="general";
  15794. Priority = 2;
  15795. Severity = 2;
  15796. TimeGenerated = "19910222163721.118268+480";
  15797. LoggingTime = "20011204002113.111540+480";
  15798. RollupTime = "19991010081623.178179+480";
  15799. Message = "Message with key to search = 1830113060";
  15800. RecordNumber = "437";
  15801. User = "sriravi";
  15802. Type = 0;
  15803. Classification = 4;
  15804. LogType = 1;
  15805. OriginalEvent = instance of __InstanceModificationEvent
  15806. { TargetInstance = instance of Win32_Modem
  15807. {
  15808. DeviceId = 937550722;
  15809. Manufacturer = "Acme Corporation";
  15810. OffTheHook = false;
  15811. };
  15812. PreviousInstance = instance of Win32_Modem
  15813. {
  15814. DeviceId = 1440599967;
  15815. Manufacturer = "Acme Corporation";
  15816. OffTheHook = false;
  15817. };
  15818. };
  15819. };
  15820. instance of Microsoft_EELTOCEntryInFile
  15821. {
  15822. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15823. Entry ="Microsoft_EELEntry='437'";
  15824. };
  15825. instance of Microsoft_EELEntry
  15826. {
  15827. EventId = "438";
  15828. SourceSubsystemType="SMS Log";
  15829. SourceSubsystemName ="server";
  15830. SystemAbout = "Gafoor_1";
  15831. SystemFrom = "Gafoor_1";
  15832. DeliveredBy = "Gafoor_1";
  15833. Category="modems";
  15834. Subcategory="general";
  15835. Priority = 4;
  15836. Severity = 4;
  15837. TimeGenerated = "19940517174500.191578+480";
  15838. LoggingTime = "19991014003227.126819+480";
  15839. RollupTime = "20001115093623.186274+480";
  15840. Message = "Message with key to search = 198390391";
  15841. RecordNumber = "438";
  15842. User = "rishi";
  15843. Type = 0;
  15844. Classification = 3;
  15845. LogType = 2;
  15846. OriginalEvent = instance of __InstanceDeletionEvent
  15847. { TargetInstance = instance of Win32_Modem
  15848. {
  15849. DeviceId = 732247827;
  15850. Manufacturer = "Acme Corporation";
  15851. OffTheHook = false;
  15852. };
  15853. };
  15854. };
  15855. instance of Microsoft_EELTOCEntryInFile
  15856. {
  15857. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15858. Entry ="Microsoft_EELEntry='438'";
  15859. };
  15860. instance of Microsoft_EELEntry
  15861. {
  15862. EventId = "439";
  15863. SourceSubsystemType="NT Event Log";
  15864. SourceSubsystemName ="application";
  15865. SystemAbout = "Kurshed_2";
  15866. SystemFrom = "Gafoor_1";
  15867. DeliveredBy = "Alam_i2";
  15868. Category="modems";
  15869. Subcategory="general";
  15870. Priority = 4;
  15871. Severity = 2;
  15872. TimeGenerated = "19930420125523.136799+480";
  15873. LoggingTime = "19950618053720.101123+480";
  15874. RollupTime = "19930420092316.185898+480";
  15875. Message = "Message with key to search = 1305818350";
  15876. RecordNumber = "439";
  15877. User = "N/A";
  15878. Type = 0;
  15879. Classification = 6;
  15880. LogType = 2;
  15881. OriginalEvent = instance of __InstanceCreationEvent
  15882. { TargetInstance = instance of Win32_Modem
  15883. {
  15884. DeviceId = 1410260751;
  15885. Manufacturer = "Acme Corporation";
  15886. OffTheHook = true;
  15887. };
  15888. };
  15889. };
  15890. instance of Microsoft_EELTOCEntryInFile
  15891. {
  15892. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  15893. Entry ="Microsoft_EELEntry='439'";
  15894. };
  15895. instance of Microsoft_EELEntry
  15896. {
  15897. EventId = "440";
  15898. SourceSubsystemType="NT Event Log";
  15899. SourceSubsystemName ="Unknown";
  15900. SystemAbout = "Gafoor_1";
  15901. SystemFrom = "Basheer_1";
  15902. DeliveredBy = "Basheer_1";
  15903. Category="modems";
  15904. Subcategory="general";
  15905. Priority = 2;
  15906. Severity = 3;
  15907. TimeGenerated = "19910222023309.127350+480";
  15908. LoggingTime = "19950622034515.182002+480";
  15909. RollupTime = "19991002170514.156961+480";
  15910. Message = "Message with key to search = 1264406398";
  15911. RecordNumber = "440";
  15912. User = "rishi";
  15913. Type = 0;
  15914. Classification = 8;
  15915. LogType = 1;
  15916. OriginalEvent = instance of __InstanceModificationEvent
  15917. { TargetInstance = instance of Win32_Modem
  15918. {
  15919. DeviceId = 127932868;
  15920. Manufacturer = "Acme Corporation";
  15921. OffTheHook = false;
  15922. };
  15923. PreviousInstance = instance of Win32_Modem
  15924. {
  15925. DeviceId = 47603626;
  15926. Manufacturer = "Acme Corporation";
  15927. OffTheHook = true;
  15928. };
  15929. };
  15930. };
  15931. instance of Microsoft_EELTOCEntryInFile
  15932. {
  15933. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  15934. Entry ="Microsoft_EELEntry='440'";
  15935. };
  15936. instance of Microsoft_EELEntry
  15937. {
  15938. EventId = "441";
  15939. SourceSubsystemType="SMS Log";
  15940. SourceSubsystemName ="application";
  15941. SystemAbout = "Kurshed_2";
  15942. SystemFrom = "Gafoor_1";
  15943. DeliveredBy = "Alam_i2";
  15944. Category="modems";
  15945. Subcategory="general";
  15946. Priority = 1;
  15947. Severity = 4;
  15948. TimeGenerated = "19920311123614.165391+480";
  15949. LoggingTime = "19991006190814.164789+480";
  15950. RollupTime = "19960719003411.145238+480";
  15951. Message = "Message with key to search = 945005944";
  15952. RecordNumber = "441";
  15953. User = "N/A";
  15954. Type = 5;
  15955. Classification = 2;
  15956. LogType = 3;
  15957. OriginalEvent = instance of __InstanceDeletionEvent
  15958. { TargetInstance = instance of Win32_Modem
  15959. {
  15960. DeviceId = 1798354659;
  15961. Manufacturer = "Acme Corporation";
  15962. OffTheHook = false;
  15963. };
  15964. };
  15965. };
  15966. instance of Microsoft_EELTOCEntryInFile
  15967. {
  15968. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  15969. Entry ="Microsoft_EELEntry='441'";
  15970. };
  15971. instance of Microsoft_EELEntry
  15972. {
  15973. EventId = "442";
  15974. SourceSubsystemType="SMS Log";
  15975. SourceSubsystemName ="server";
  15976. SystemAbout = "Kurshed_2";
  15977. SystemFrom = "Kurshed_2";
  15978. DeliveredBy = "Kurshed_2";
  15979. Category="modems";
  15980. Subcategory="general";
  15981. Priority = 3;
  15982. Severity = 3;
  15983. TimeGenerated = "19920307051406.141960+480";
  15984. LoggingTime = "20011228202317.158248+480";
  15985. RollupTime = "19920311152516.185958+480";
  15986. Message = "Message with key to search = 810016724";
  15987. RecordNumber = "442";
  15988. User = "sriravi";
  15989. Type = 2;
  15990. Classification = 8;
  15991. LogType = 1;
  15992. OriginalEvent = instance of __InstanceCreationEvent
  15993. { TargetInstance = instance of Win32_Modem
  15994. {
  15995. DeviceId = 230622761;
  15996. Manufacturer = "Acme Corporation";
  15997. OffTheHook = false;
  15998. };
  15999. };
  16000. };
  16001. instance of Microsoft_EELTOCEntryInFile
  16002. {
  16003. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16004. Entry ="Microsoft_EELEntry='442'";
  16005. };
  16006. instance of Microsoft_EELEntry
  16007. {
  16008. EventId = "443";
  16009. SourceSubsystemType="NT Event Log";
  16010. SourceSubsystemName ="driver";
  16011. SystemAbout = "Basheer_1";
  16012. SystemFrom = "Kurshed_2";
  16013. DeliveredBy = "Kurshed_2";
  16014. Category="modems";
  16015. Subcategory="general";
  16016. Priority = 1;
  16017. Severity = 4;
  16018. TimeGenerated = "19950618165703.179846+480";
  16019. LoggingTime = "20001107033112.131905+480";
  16020. RollupTime = "20011216065724.164367+480";
  16021. Message = "Message with key to search = 1808885201";
  16022. RecordNumber = "443";
  16023. User = "N/A";
  16024. Type = 3;
  16025. Classification = 7;
  16026. LogType = 1;
  16027. OriginalEvent = instance of __InstanceModificationEvent
  16028. { TargetInstance = instance of Win32_Modem
  16029. {
  16030. DeviceId = 931575541;
  16031. Manufacturer = "Acme Corporation";
  16032. OffTheHook = false;
  16033. };
  16034. PreviousInstance = instance of Win32_Modem
  16035. {
  16036. DeviceId = 626608361;
  16037. Manufacturer = "Acme Corporation";
  16038. OffTheHook = true;
  16039. };
  16040. };
  16041. };
  16042. instance of Microsoft_EELTOCEntryInFile
  16043. {
  16044. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16045. Entry ="Microsoft_EELEntry='443'";
  16046. };
  16047. instance of Microsoft_EELEntry
  16048. {
  16049. EventId = "444";
  16050. SourceSubsystemType="SMS Log";
  16051. SourceSubsystemName ="server";
  16052. SystemAbout = "Kurshed_2";
  16053. SystemFrom = "Gafoor_1";
  16054. DeliveredBy = "Kurshed_2";
  16055. Category="modems";
  16056. Subcategory="general";
  16057. Priority = 4;
  16058. Severity = 3;
  16059. TimeGenerated = "19910202164809.149029+480";
  16060. LoggingTime = "19950626050711.149887+480";
  16061. RollupTime = "19991014160827.109299+480";
  16062. Message = "Message with key to search = 1797736593";
  16063. RecordNumber = "444";
  16064. User = "N/A";
  16065. Type = 6;
  16066. Classification = 7;
  16067. LogType = 3;
  16068. OriginalEvent = instance of __InstanceDeletionEvent
  16069. { TargetInstance = instance of Win32_Modem
  16070. {
  16071. DeviceId = 1805441338;
  16072. Manufacturer = "Acme Corporation";
  16073. OffTheHook = true;
  16074. };
  16075. };
  16076. };
  16077. instance of Microsoft_EELTOCEntryInFile
  16078. {
  16079. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16080. Entry ="Microsoft_EELEntry='444'";
  16081. };
  16082. instance of Microsoft_EELEntry
  16083. {
  16084. EventId = "445";
  16085. SourceSubsystemType="NT Event Log";
  16086. SourceSubsystemName ="driver";
  16087. SystemAbout = "Kurshed_2";
  16088. SystemFrom = "Alam_i2";
  16089. DeliveredBy = "Kurshed_2";
  16090. Category="modems";
  16091. Subcategory="general";
  16092. Priority = 4;
  16093. Severity = 1;
  16094. TimeGenerated = "19900105224914.167611+480";
  16095. LoggingTime = "19970816175222.105877+480";
  16096. RollupTime = "19991010232618.187977+480";
  16097. Message = "Message with key to search = 410502822";
  16098. RecordNumber = "445";
  16099. User = "N/A";
  16100. Type = 5;
  16101. Classification = 4;
  16102. LogType = 3;
  16103. OriginalEvent = instance of __InstanceCreationEvent
  16104. { TargetInstance = instance of Win32_Modem
  16105. {
  16106. DeviceId = 1434893994;
  16107. Manufacturer = "Acme Corporation";
  16108. OffTheHook = false;
  16109. };
  16110. };
  16111. };
  16112. instance of Microsoft_EELTOCEntryInFile
  16113. {
  16114. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16115. Entry ="Microsoft_EELEntry='445'";
  16116. };
  16117. instance of Microsoft_EELEntry
  16118. {
  16119. EventId = "446";
  16120. SourceSubsystemType="NT Event Log";
  16121. SourceSubsystemName ="application";
  16122. SystemAbout = "Basheer_1";
  16123. SystemFrom = "Gafoor_1";
  16124. DeliveredBy = "Kurshed_2";
  16125. Category="modems";
  16126. Subcategory="general";
  16127. Priority = 2;
  16128. Severity = 2;
  16129. TimeGenerated = "19910202071708.185112+480";
  16130. LoggingTime = "19991018013628.114378+480";
  16131. RollupTime = "19950606215213.195252+480";
  16132. Message = "Message with key to search = 1622284599";
  16133. RecordNumber = "446";
  16134. User = "amit";
  16135. Type = 6;
  16136. Classification = 5;
  16137. LogType = 3;
  16138. OriginalEvent = instance of __InstanceModificationEvent
  16139. { TargetInstance = instance of Win32_Modem
  16140. {
  16141. DeviceId = 1836915503;
  16142. Manufacturer = "Acme Corporation";
  16143. OffTheHook = false;
  16144. };
  16145. PreviousInstance = instance of Win32_Modem
  16146. {
  16147. DeviceId = 391571561;
  16148. Manufacturer = "Acme Corporation";
  16149. OffTheHook = false;
  16150. };
  16151. };
  16152. };
  16153. instance of Microsoft_EELTOCEntryInFile
  16154. {
  16155. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16156. Entry ="Microsoft_EELEntry='446'";
  16157. };
  16158. instance of Microsoft_EELEntry
  16159. {
  16160. EventId = "447";
  16161. SourceSubsystemType="NT Event Log";
  16162. SourceSubsystemName ="Unknown";
  16163. SystemAbout = "Kurshed_2";
  16164. SystemFrom = "Basheer_1";
  16165. DeliveredBy = "Basheer_1";
  16166. Category="modems";
  16167. Subcategory="general";
  16168. Priority = 1;
  16169. Severity = 2;
  16170. TimeGenerated = "19920327090413.194584+480";
  16171. LoggingTime = "20011204091518.115029+480";
  16172. RollupTime = "19980921131614.140096+480";
  16173. Message = "Message with key to search = 604721380";
  16174. RecordNumber = "447";
  16175. User = "rishi";
  16176. Type = 4;
  16177. Classification = 1;
  16178. LogType = 2;
  16179. OriginalEvent = instance of __InstanceDeletionEvent
  16180. { TargetInstance = instance of Win32_Modem
  16181. {
  16182. DeviceId = 236683740;
  16183. Manufacturer = "Acme Corporation";
  16184. OffTheHook = false;
  16185. };
  16186. };
  16187. };
  16188. instance of Microsoft_EELTOCEntryInFile
  16189. {
  16190. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16191. Entry ="Microsoft_EELEntry='447'";
  16192. };
  16193. instance of Microsoft_EELEntry
  16194. {
  16195. EventId = "448";
  16196. SourceSubsystemType="NT Event Log";
  16197. SourceSubsystemName ="application";
  16198. SystemAbout = "Kurshed_2";
  16199. SystemFrom = "Alam_i2";
  16200. DeliveredBy = "Basheer_1";
  16201. Category="modems";
  16202. Subcategory="general";
  16203. Priority = 2;
  16204. Severity = 1;
  16205. TimeGenerated = "19960703234119.169800+480";
  16206. LoggingTime = "19980901182305.118337+480";
  16207. RollupTime = "19940509211423.198000+480";
  16208. Message = "Message with key to search = 312998855";
  16209. RecordNumber = "448";
  16210. User = "amit";
  16211. Type = 6;
  16212. Classification = 2;
  16213. LogType = 2;
  16214. OriginalEvent = instance of __InstanceCreationEvent
  16215. { TargetInstance = instance of Win32_Modem
  16216. {
  16217. DeviceId = 1000823404;
  16218. Manufacturer = "Acme Corporation";
  16219. OffTheHook = true;
  16220. };
  16221. };
  16222. };
  16223. instance of Microsoft_EELTOCEntryInFile
  16224. {
  16225. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16226. Entry ="Microsoft_EELEntry='448'";
  16227. };
  16228. instance of Microsoft_EELEntry
  16229. {
  16230. EventId = "449";
  16231. SourceSubsystemType="SMS Log";
  16232. SourceSubsystemName ="driver";
  16233. SystemAbout = "Kurshed_2";
  16234. SystemFrom = "Gafoor_1";
  16235. DeliveredBy = "Alam_i2";
  16236. Category="modems";
  16237. Subcategory="general";
  16238. Priority = 3;
  16239. Severity = 1;
  16240. TimeGenerated = "19900121141905.148275+480";
  16241. LoggingTime = "19960707003501.178280+480";
  16242. RollupTime = "20001103092500.191672+480";
  16243. Message = "Message with key to search = 506451612";
  16244. RecordNumber = "449";
  16245. User = "rishi";
  16246. Type = 6;
  16247. Classification = 2;
  16248. LogType = 3;
  16249. OriginalEvent = instance of __InstanceModificationEvent
  16250. { TargetInstance = instance of Win32_Modem
  16251. {
  16252. DeviceId = 420672345;
  16253. Manufacturer = "Acme Corporation";
  16254. OffTheHook = false;
  16255. };
  16256. PreviousInstance = instance of Win32_Modem
  16257. {
  16258. DeviceId = 1024081172;
  16259. Manufacturer = "Acme Corporation";
  16260. OffTheHook = true;
  16261. };
  16262. };
  16263. };
  16264. instance of Microsoft_EELTOCEntryInFile
  16265. {
  16266. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16267. Entry ="Microsoft_EELEntry='449'";
  16268. };
  16269. instance of Microsoft_EELEntry
  16270. {
  16271. EventId = "450";
  16272. SourceSubsystemType="NT Event Log";
  16273. SourceSubsystemName ="server";
  16274. SystemAbout = "Kurshed_2";
  16275. SystemFrom = "Basheer_1";
  16276. DeliveredBy = "Alam_i2";
  16277. Category="modems";
  16278. Subcategory="general";
  16279. Priority = 3;
  16280. Severity = 2;
  16281. TimeGenerated = "19920311091503.157544+480";
  16282. LoggingTime = "19940521111516.165354+480";
  16283. RollupTime = "19970824143927.125745+480";
  16284. Message = "Message with key to search = 110410278";
  16285. RecordNumber = "450";
  16286. User = "N/A";
  16287. Type = 4;
  16288. Classification = 3;
  16289. LogType = 3;
  16290. OriginalEvent = instance of __InstanceDeletionEvent
  16291. { TargetInstance = instance of Win32_Modem
  16292. {
  16293. DeviceId = 652900337;
  16294. Manufacturer = "Acme Corporation";
  16295. OffTheHook = false;
  16296. };
  16297. };
  16298. };
  16299. instance of Microsoft_EELTOCEntryInFile
  16300. {
  16301. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16302. Entry ="Microsoft_EELEntry='450'";
  16303. };
  16304. instance of Microsoft_EELEntry
  16305. {
  16306. EventId = "451";
  16307. SourceSubsystemType="NT Event Log";
  16308. SourceSubsystemName ="application";
  16309. SystemAbout = "Basheer_1";
  16310. SystemFrom = "Alam_i2";
  16311. DeliveredBy = "Basheer_1";
  16312. Category="modems";
  16313. Subcategory="general";
  16314. Priority = 1;
  16315. Severity = 2;
  16316. TimeGenerated = "19950618085209.163420+480";
  16317. LoggingTime = "20011216055415.163092+480";
  16318. RollupTime = "19950606232517.181897+480";
  16319. Message = "Message with key to search = 2073770245";
  16320. RecordNumber = "451";
  16321. User = "rishi";
  16322. Type = 6;
  16323. Classification = 4;
  16324. LogType = 2;
  16325. OriginalEvent = instance of __InstanceCreationEvent
  16326. { TargetInstance = instance of Win32_Modem
  16327. {
  16328. DeviceId = 579884700;
  16329. Manufacturer = "Acme Corporation";
  16330. OffTheHook = true;
  16331. };
  16332. };
  16333. };
  16334. instance of Microsoft_EELTOCEntryInFile
  16335. {
  16336. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16337. Entry ="Microsoft_EELEntry='451'";
  16338. };
  16339. instance of Microsoft_EELEntry
  16340. {
  16341. EventId = "452";
  16342. SourceSubsystemType="NT Event Log";
  16343. SourceSubsystemName ="driver";
  16344. SystemAbout = "Alam_i2";
  16345. SystemFrom = "Alam_i2";
  16346. DeliveredBy = "Basheer_1";
  16347. Category="modems";
  16348. Subcategory="general";
  16349. Priority = 1;
  16350. Severity = 1;
  16351. TimeGenerated = "19930416014613.173256+480";
  16352. LoggingTime = "19960711162225.199947+480";
  16353. RollupTime = "19900105102527.146045+480";
  16354. Message = "Message with key to search = 1427172272";
  16355. RecordNumber = "452";
  16356. User = "N/A";
  16357. Type = 2;
  16358. Classification = 6;
  16359. LogType = 1;
  16360. OriginalEvent = instance of __InstanceModificationEvent
  16361. { TargetInstance = instance of Win32_Modem
  16362. {
  16363. DeviceId = 1258028295;
  16364. Manufacturer = "Acme Corporation";
  16365. OffTheHook = true;
  16366. };
  16367. PreviousInstance = instance of Win32_Modem
  16368. {
  16369. DeviceId = 1067998730;
  16370. Manufacturer = "Acme Corporation";
  16371. OffTheHook = false;
  16372. };
  16373. };
  16374. };
  16375. instance of Microsoft_EELTOCEntryInFile
  16376. {
  16377. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16378. Entry ="Microsoft_EELEntry='452'";
  16379. };
  16380. instance of Microsoft_EELEntry
  16381. {
  16382. EventId = "453";
  16383. SourceSubsystemType="SMS Log";
  16384. SourceSubsystemName ="Unknown";
  16385. SystemAbout = "Alam_i2";
  16386. SystemFrom = "Alam_i2";
  16387. DeliveredBy = "Alam_i2";
  16388. Category="modems";
  16389. Subcategory="general";
  16390. Priority = 2;
  16391. Severity = 2;
  16392. TimeGenerated = "19900109201418.182807+480";
  16393. LoggingTime = "20001103014201.106938+480";
  16394. RollupTime = "19950622234406.131824+480";
  16395. Message = "Message with key to search = 513167748";
  16396. RecordNumber = "453";
  16397. User = "N/A";
  16398. Type = 0;
  16399. Classification = 4;
  16400. LogType = 3;
  16401. OriginalEvent = instance of __InstanceDeletionEvent
  16402. { TargetInstance = instance of Win32_Modem
  16403. {
  16404. DeviceId = 798097298;
  16405. Manufacturer = "Acme Corporation";
  16406. OffTheHook = true;
  16407. };
  16408. };
  16409. };
  16410. instance of Microsoft_EELTOCEntryInFile
  16411. {
  16412. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16413. Entry ="Microsoft_EELEntry='453'";
  16414. };
  16415. instance of Microsoft_EELEntry
  16416. {
  16417. EventId = "454";
  16418. SourceSubsystemType="NT Event Log";
  16419. SourceSubsystemName ="server";
  16420. SystemAbout = "Kurshed_2";
  16421. SystemFrom = "Alam_i2";
  16422. DeliveredBy = "Alam_i2";
  16423. Category="modems";
  16424. Subcategory="general";
  16425. Priority = 3;
  16426. Severity = 1;
  16427. TimeGenerated = "19950622144223.121297+480";
  16428. LoggingTime = "20001107054724.146018+480";
  16429. RollupTime = "20001103030618.180848+480";
  16430. Message = "Message with key to search = 2048271261";
  16431. RecordNumber = "454";
  16432. User = "amit";
  16433. Type = 4;
  16434. Classification = 2;
  16435. LogType = 3;
  16436. OriginalEvent = instance of __InstanceCreationEvent
  16437. { TargetInstance = instance of Win32_Modem
  16438. {
  16439. DeviceId = 851452515;
  16440. Manufacturer = "Acme Corporation";
  16441. OffTheHook = true;
  16442. };
  16443. };
  16444. };
  16445. instance of Microsoft_EELTOCEntryInFile
  16446. {
  16447. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16448. Entry ="Microsoft_EELEntry='454'";
  16449. };
  16450. instance of Microsoft_EELEntry
  16451. {
  16452. EventId = "455";
  16453. SourceSubsystemType="SMS Log";
  16454. SourceSubsystemName ="Unknown";
  16455. SystemAbout = "Gafoor_1";
  16456. SystemFrom = "Gafoor_1";
  16457. DeliveredBy = "Basheer_1";
  16458. Category="modems";
  16459. Subcategory="general";
  16460. Priority = 3;
  16461. Severity = 4;
  16462. TimeGenerated = "19940517084500.154989+480";
  16463. LoggingTime = "19940513011806.192090+480";
  16464. RollupTime = "19900125154704.158694+480";
  16465. Message = "Message with key to search = 974759175";
  16466. RecordNumber = "455";
  16467. User = "sriravi";
  16468. Type = 6;
  16469. Classification = 3;
  16470. LogType = 1;
  16471. OriginalEvent = instance of __InstanceModificationEvent
  16472. { TargetInstance = instance of Win32_Modem
  16473. {
  16474. DeviceId = 932509311;
  16475. Manufacturer = "Acme Corporation";
  16476. OffTheHook = false;
  16477. };
  16478. PreviousInstance = instance of Win32_Modem
  16479. {
  16480. DeviceId = 506309985;
  16481. Manufacturer = "Acme Corporation";
  16482. OffTheHook = true;
  16483. };
  16484. };
  16485. };
  16486. instance of Microsoft_EELTOCEntryInFile
  16487. {
  16488. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16489. Entry ="Microsoft_EELEntry='455'";
  16490. };
  16491. instance of Microsoft_EELEntry
  16492. {
  16493. EventId = "456";
  16494. SourceSubsystemType="SMS Log";
  16495. SourceSubsystemName ="application";
  16496. SystemAbout = "Basheer_1";
  16497. SystemFrom = "Gafoor_1";
  16498. DeliveredBy = "Alam_i2";
  16499. Category="modems";
  16500. Subcategory="general";
  16501. Priority = 3;
  16502. Severity = 3;
  16503. TimeGenerated = "19910214005922.127049+480";
  16504. LoggingTime = "19991018101608.103011+480";
  16505. RollupTime = "19991018175813.114342+480";
  16506. Message = "Message with key to search = 890998141";
  16507. RecordNumber = "456";
  16508. User = "sriravi";
  16509. Type = 5;
  16510. Classification = 2;
  16511. LogType = 1;
  16512. OriginalEvent = instance of __InstanceDeletionEvent
  16513. { TargetInstance = instance of Win32_Modem
  16514. {
  16515. DeviceId = 1654195798;
  16516. Manufacturer = "Acme Corporation";
  16517. OffTheHook = false;
  16518. };
  16519. };
  16520. };
  16521. instance of Microsoft_EELTOCEntryInFile
  16522. {
  16523. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16524. Entry ="Microsoft_EELEntry='456'";
  16525. };
  16526. instance of Microsoft_EELEntry
  16527. {
  16528. EventId = "457";
  16529. SourceSubsystemType="NT Event Log";
  16530. SourceSubsystemName ="application";
  16531. SystemAbout = "Kurshed_2";
  16532. SystemFrom = "Basheer_1";
  16533. DeliveredBy = "Gafoor_1";
  16534. Category="modems";
  16535. Subcategory="general";
  16536. Priority = 3;
  16537. Severity = 1;
  16538. TimeGenerated = "19930404101818.170345+480";
  16539. LoggingTime = "19920323092512.143792+480";
  16540. RollupTime = "19910214131720.144148+480";
  16541. Message = "Message with key to search = 64783621";
  16542. RecordNumber = "457";
  16543. User = "amit";
  16544. Type = 1;
  16545. Classification = 8;
  16546. LogType = 3;
  16547. OriginalEvent = instance of __InstanceCreationEvent
  16548. { TargetInstance = instance of Win32_Modem
  16549. {
  16550. DeviceId = 854658201;
  16551. Manufacturer = "Acme Corporation";
  16552. OffTheHook = false;
  16553. };
  16554. };
  16555. };
  16556. instance of Microsoft_EELTOCEntryInFile
  16557. {
  16558. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16559. Entry ="Microsoft_EELEntry='457'";
  16560. };
  16561. instance of Microsoft_EELEntry
  16562. {
  16563. EventId = "458";
  16564. SourceSubsystemType="NT Event Log";
  16565. SourceSubsystemName ="driver";
  16566. SystemAbout = "Alam_i2";
  16567. SystemFrom = "Alam_i2";
  16568. DeliveredBy = "Alam_i2";
  16569. Category="modems";
  16570. Subcategory="general";
  16571. Priority = 3;
  16572. Severity = 2;
  16573. TimeGenerated = "19900113190323.143193+480";
  16574. LoggingTime = "20011224204411.102288+480";
  16575. RollupTime = "19980905230817.159828+480";
  16576. Message = "Message with key to search = 165440625";
  16577. RecordNumber = "458";
  16578. User = "sriravi";
  16579. Type = 4;
  16580. Classification = 8;
  16581. LogType = 3;
  16582. OriginalEvent = instance of __InstanceModificationEvent
  16583. { TargetInstance = instance of Win32_Modem
  16584. {
  16585. DeviceId = 946038107;
  16586. Manufacturer = "Acme Corporation";
  16587. OffTheHook = true;
  16588. };
  16589. PreviousInstance = instance of Win32_Modem
  16590. {
  16591. DeviceId = 1829195538;
  16592. Manufacturer = "Acme Corporation";
  16593. OffTheHook = false;
  16594. };
  16595. };
  16596. };
  16597. instance of Microsoft_EELTOCEntryInFile
  16598. {
  16599. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16600. Entry ="Microsoft_EELEntry='458'";
  16601. };
  16602. instance of Microsoft_EELEntry
  16603. {
  16604. EventId = "459";
  16605. SourceSubsystemType="NT Event Log";
  16606. SourceSubsystemName ="server";
  16607. SystemAbout = "Basheer_1";
  16608. SystemFrom = "Basheer_1";
  16609. DeliveredBy = "Alam_i2";
  16610. Category="modems";
  16611. Subcategory="general";
  16612. Priority = 1;
  16613. Severity = 3;
  16614. TimeGenerated = "19910202164809.149029+480";
  16615. LoggingTime = "19960703062201.166186+480";
  16616. RollupTime = "19970816220323.125286+480";
  16617. Message = "Message with key to search = 2126985372";
  16618. RecordNumber = "459";
  16619. User = "sriravi";
  16620. Type = 5;
  16621. Classification = 6;
  16622. LogType = 2;
  16623. OriginalEvent = instance of __InstanceDeletionEvent
  16624. { TargetInstance = instance of Win32_Modem
  16625. {
  16626. DeviceId = 633103718;
  16627. Manufacturer = "Acme Corporation";
  16628. OffTheHook = false;
  16629. };
  16630. };
  16631. };
  16632. instance of Microsoft_EELTOCEntryInFile
  16633. {
  16634. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16635. Entry ="Microsoft_EELEntry='459'";
  16636. };
  16637. instance of Microsoft_EELEntry
  16638. {
  16639. EventId = "460";
  16640. SourceSubsystemType="NT Event Log";
  16641. SourceSubsystemName ="driver";
  16642. SystemAbout = "Alam_i2";
  16643. SystemFrom = "Alam_i2";
  16644. DeliveredBy = "Gafoor_1";
  16645. Category="modems";
  16646. Subcategory="general";
  16647. Priority = 2;
  16648. Severity = 2;
  16649. TimeGenerated = "19910202072507.181920+480";
  16650. LoggingTime = "19980913005325.157067+480";
  16651. RollupTime = "19950614193618.118826+480";
  16652. Message = "Message with key to search = 585764593";
  16653. RecordNumber = "460";
  16654. User = "amit";
  16655. Type = 4;
  16656. Classification = 1;
  16657. LogType = 3;
  16658. OriginalEvent = instance of __InstanceCreationEvent
  16659. { TargetInstance = instance of Win32_Modem
  16660. {
  16661. DeviceId = 524798507;
  16662. Manufacturer = "Acme Corporation";
  16663. OffTheHook = true;
  16664. };
  16665. };
  16666. };
  16667. instance of Microsoft_EELTOCEntryInFile
  16668. {
  16669. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16670. Entry ="Microsoft_EELEntry='460'";
  16671. };
  16672. instance of Microsoft_EELEntry
  16673. {
  16674. EventId = "461";
  16675. SourceSubsystemType="SMS Log";
  16676. SourceSubsystemName ="driver";
  16677. SystemAbout = "Gafoor_1";
  16678. SystemFrom = "Gafoor_1";
  16679. DeliveredBy = "Kurshed_2";
  16680. Category="modems";
  16681. Subcategory="general";
  16682. Priority = 4;
  16683. Severity = 3;
  16684. TimeGenerated = "19920315064709.124310+480";
  16685. LoggingTime = "19980913175815.197054+480";
  16686. RollupTime = "19960707223312.188790+480";
  16687. Message = "Message with key to search = 191027717";
  16688. RecordNumber = "461";
  16689. User = "N/A";
  16690. Type = 1;
  16691. Classification = 3;
  16692. LogType = 1;
  16693. OriginalEvent = instance of __InstanceModificationEvent
  16694. { TargetInstance = instance of Win32_Modem
  16695. {
  16696. DeviceId = 1915043965;
  16697. Manufacturer = "Acme Corporation";
  16698. OffTheHook = true;
  16699. };
  16700. PreviousInstance = instance of Win32_Modem
  16701. {
  16702. DeviceId = 104146879;
  16703. Manufacturer = "Acme Corporation";
  16704. OffTheHook = true;
  16705. };
  16706. };
  16707. };
  16708. instance of Microsoft_EELTOCEntryInFile
  16709. {
  16710. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16711. Entry ="Microsoft_EELEntry='461'";
  16712. };
  16713. instance of Microsoft_EELEntry
  16714. {
  16715. EventId = "462";
  16716. SourceSubsystemType="NT Event Log";
  16717. SourceSubsystemName ="application";
  16718. SystemAbout = "Basheer_1";
  16719. SystemFrom = "Gafoor_1";
  16720. DeliveredBy = "Kurshed_2";
  16721. Category="modems";
  16722. Subcategory="general";
  16723. Priority = 3;
  16724. Severity = 4;
  16725. TimeGenerated = "19980909200304.109382+480";
  16726. LoggingTime = "19991002011501.153968+480";
  16727. RollupTime = "19980921160827.145666+480";
  16728. Message = "Message with key to search = 933462635";
  16729. RecordNumber = "462";
  16730. User = "rishi";
  16731. Type = 6;
  16732. Classification = 3;
  16733. LogType = 2;
  16734. OriginalEvent = instance of __InstanceDeletionEvent
  16735. { TargetInstance = instance of Win32_Modem
  16736. {
  16737. DeviceId = 1180859721;
  16738. Manufacturer = "Acme Corporation";
  16739. OffTheHook = false;
  16740. };
  16741. };
  16742. };
  16743. instance of Microsoft_EELTOCEntryInFile
  16744. {
  16745. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16746. Entry ="Microsoft_EELEntry='462'";
  16747. };
  16748. instance of Microsoft_EELEntry
  16749. {
  16750. EventId = "463";
  16751. SourceSubsystemType="SMS Log";
  16752. SourceSubsystemName ="driver";
  16753. SystemAbout = "Basheer_1";
  16754. SystemFrom = "Kurshed_2";
  16755. DeliveredBy = "Gafoor_1";
  16756. Category="modems";
  16757. Subcategory="general";
  16758. Priority = 4;
  16759. Severity = 3;
  16760. TimeGenerated = "19910226162003.154031+480";
  16761. LoggingTime = "19991010080927.168074+480";
  16762. RollupTime = "19991014152417.139134+480";
  16763. Message = "Message with key to search = 1590514311";
  16764. RecordNumber = "463";
  16765. User = "rishi";
  16766. Type = 1;
  16767. Classification = 2;
  16768. LogType = 1;
  16769. OriginalEvent = instance of __InstanceCreationEvent
  16770. { TargetInstance = instance of Win32_Modem
  16771. {
  16772. DeviceId = 1975833406;
  16773. Manufacturer = "Acme Corporation";
  16774. OffTheHook = true;
  16775. };
  16776. };
  16777. };
  16778. instance of Microsoft_EELTOCEntryInFile
  16779. {
  16780. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16781. Entry ="Microsoft_EELEntry='463'";
  16782. };
  16783. instance of Microsoft_EELEntry
  16784. {
  16785. EventId = "464";
  16786. SourceSubsystemType="SMS Log";
  16787. SourceSubsystemName ="driver";
  16788. SystemAbout = "Kurshed_2";
  16789. SystemFrom = "Gafoor_1";
  16790. DeliveredBy = "Alam_i2";
  16791. Category="modems";
  16792. Subcategory="general";
  16793. Priority = 2;
  16794. Severity = 4;
  16795. TimeGenerated = "19920303194626.143059+480";
  16796. LoggingTime = "19960727113618.155847+480";
  16797. RollupTime = "20001111025908.189322+480";
  16798. Message = "Message with key to search = 468985283";
  16799. RecordNumber = "464";
  16800. User = "N/A";
  16801. Type = 2;
  16802. Classification = 3;
  16803. LogType = 2;
  16804. OriginalEvent = instance of __InstanceModificationEvent
  16805. { TargetInstance = instance of Win32_Modem
  16806. {
  16807. DeviceId = 1270586363;
  16808. Manufacturer = "Acme Corporation";
  16809. OffTheHook = true;
  16810. };
  16811. PreviousInstance = instance of Win32_Modem
  16812. {
  16813. DeviceId = 912248424;
  16814. Manufacturer = "Acme Corporation";
  16815. OffTheHook = true;
  16816. };
  16817. };
  16818. };
  16819. instance of Microsoft_EELTOCEntryInFile
  16820. {
  16821. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16822. Entry ="Microsoft_EELEntry='464'";
  16823. };
  16824. instance of Microsoft_EELEntry
  16825. {
  16826. EventId = "465";
  16827. SourceSubsystemType="SMS Log";
  16828. SourceSubsystemName ="application";
  16829. SystemAbout = "Gafoor_1";
  16830. SystemFrom = "Kurshed_2";
  16831. DeliveredBy = "Kurshed_2";
  16832. Category="modems";
  16833. Subcategory="general";
  16834. Priority = 4;
  16835. Severity = 4;
  16836. TimeGenerated = "19991006172314.104268+480";
  16837. LoggingTime = "19950622122607.184000+480";
  16838. RollupTime = "19920327070502.139418+480";
  16839. Message = "Message with key to search = 1835618554";
  16840. RecordNumber = "465";
  16841. User = "N/A";
  16842. Type = 1;
  16843. Classification = 1;
  16844. LogType = 1;
  16845. OriginalEvent = instance of __InstanceDeletionEvent
  16846. { TargetInstance = instance of Win32_Modem
  16847. {
  16848. DeviceId = 299219616;
  16849. Manufacturer = "Acme Corporation";
  16850. OffTheHook = false;
  16851. };
  16852. };
  16853. };
  16854. instance of Microsoft_EELTOCEntryInFile
  16855. {
  16856. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16857. Entry ="Microsoft_EELEntry='465'";
  16858. };
  16859. instance of Microsoft_EELEntry
  16860. {
  16861. EventId = "466";
  16862. SourceSubsystemType="NT Event Log";
  16863. SourceSubsystemName ="Unknown";
  16864. SystemAbout = "Kurshed_2";
  16865. SystemFrom = "Gafoor_1";
  16866. DeliveredBy = "Basheer_1";
  16867. Category="modems";
  16868. Subcategory="general";
  16869. Priority = 2;
  16870. Severity = 1;
  16871. TimeGenerated = "19930428180604.192504+480";
  16872. LoggingTime = "20011220094612.186176+480";
  16873. RollupTime = "20011228215601.130757+480";
  16874. Message = "Message with key to search = 1676606389";
  16875. RecordNumber = "466";
  16876. User = "N/A";
  16877. Type = 0;
  16878. Classification = 7;
  16879. LogType = 2;
  16880. OriginalEvent = instance of __InstanceCreationEvent
  16881. { TargetInstance = instance of Win32_Modem
  16882. {
  16883. DeviceId = 1373404739;
  16884. Manufacturer = "Acme Corporation";
  16885. OffTheHook = true;
  16886. };
  16887. };
  16888. };
  16889. instance of Microsoft_EELTOCEntryInFile
  16890. {
  16891. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  16892. Entry ="Microsoft_EELEntry='466'";
  16893. };
  16894. instance of Microsoft_EELEntry
  16895. {
  16896. EventId = "467";
  16897. SourceSubsystemType="NT Event Log";
  16898. SourceSubsystemName ="server";
  16899. SystemAbout = "Kurshed_2";
  16900. SystemFrom = "Alam_i2";
  16901. DeliveredBy = "Gafoor_1";
  16902. Category="modems";
  16903. Subcategory="general";
  16904. Priority = 3;
  16905. Severity = 2;
  16906. TimeGenerated = "19910210154828.119696+480";
  16907. LoggingTime = "19970808003816.162768+480";
  16908. RollupTime = "19960727152505.158968+480";
  16909. Message = "Message with key to search = 1148177515";
  16910. RecordNumber = "467";
  16911. User = "rishi";
  16912. Type = 3;
  16913. Classification = 2;
  16914. LogType = 1;
  16915. OriginalEvent = instance of __InstanceModificationEvent
  16916. { TargetInstance = instance of Win32_Modem
  16917. {
  16918. DeviceId = 682345886;
  16919. Manufacturer = "Acme Corporation";
  16920. OffTheHook = true;
  16921. };
  16922. PreviousInstance = instance of Win32_Modem
  16923. {
  16924. DeviceId = 75562044;
  16925. Manufacturer = "Acme Corporation";
  16926. OffTheHook = true;
  16927. };
  16928. };
  16929. };
  16930. instance of Microsoft_EELTOCEntryInFile
  16931. {
  16932. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  16933. Entry ="Microsoft_EELEntry='467'";
  16934. };
  16935. instance of Microsoft_EELEntry
  16936. {
  16937. EventId = "468";
  16938. SourceSubsystemType="SMS Log";
  16939. SourceSubsystemName ="server";
  16940. SystemAbout = "Basheer_1";
  16941. SystemFrom = "Basheer_1";
  16942. DeliveredBy = "Gafoor_1";
  16943. Category="modems";
  16944. Subcategory="general";
  16945. Priority = 4;
  16946. Severity = 2;
  16947. TimeGenerated = "19900121075415.196946+480";
  16948. LoggingTime = "19980913022205.176444+480";
  16949. RollupTime = "19920327034116.133590+480";
  16950. Message = "Message with key to search = 798709380";
  16951. RecordNumber = "468";
  16952. User = "N/A";
  16953. Type = 5;
  16954. Classification = 6;
  16955. LogType = 1;
  16956. OriginalEvent = instance of __InstanceDeletionEvent
  16957. { TargetInstance = instance of Win32_Modem
  16958. {
  16959. DeviceId = 1048786071;
  16960. Manufacturer = "Acme Corporation";
  16961. OffTheHook = false;
  16962. };
  16963. };
  16964. };
  16965. instance of Microsoft_EELTOCEntryInFile
  16966. {
  16967. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  16968. Entry ="Microsoft_EELEntry='468'";
  16969. };
  16970. instance of Microsoft_EELEntry
  16971. {
  16972. EventId = "469";
  16973. SourceSubsystemType="NT Event Log";
  16974. SourceSubsystemName ="Unknown";
  16975. SystemAbout = "Alam_i2";
  16976. SystemFrom = "Kurshed_2";
  16977. DeliveredBy = "Gafoor_1";
  16978. Category="modems";
  16979. Subcategory="general";
  16980. Priority = 3;
  16981. Severity = 2;
  16982. TimeGenerated = "19910210125707.134140+480";
  16983. LoggingTime = "19991002112811.177405+480";
  16984. RollupTime = "19960719160209.163436+480";
  16985. Message = "Message with key to search = 324082467";
  16986. RecordNumber = "469";
  16987. User = "amit";
  16988. Type = 4;
  16989. Classification = 1;
  16990. LogType = 2;
  16991. OriginalEvent = instance of __InstanceCreationEvent
  16992. { TargetInstance = instance of Win32_Modem
  16993. {
  16994. DeviceId = 1468019633;
  16995. Manufacturer = "Acme Corporation";
  16996. OffTheHook = false;
  16997. };
  16998. };
  16999. };
  17000. instance of Microsoft_EELTOCEntryInFile
  17001. {
  17002. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17003. Entry ="Microsoft_EELEntry='469'";
  17004. };
  17005. instance of Microsoft_EELEntry
  17006. {
  17007. EventId = "470";
  17008. SourceSubsystemType="SMS Log";
  17009. SourceSubsystemName ="application";
  17010. SystemAbout = "Gafoor_1";
  17011. SystemFrom = "Kurshed_2";
  17012. DeliveredBy = "Kurshed_2";
  17013. Category="modems";
  17014. Subcategory="general";
  17015. Priority = 4;
  17016. Severity = 4;
  17017. TimeGenerated = "19930408043919.152121+480";
  17018. LoggingTime = "20001107090205.141947+480";
  17019. RollupTime = "19910222142609.186506+480";
  17020. Message = "Message with key to search = 398351708";
  17021. RecordNumber = "470";
  17022. User = "sriravi";
  17023. Type = 5;
  17024. Classification = 8;
  17025. LogType = 2;
  17026. OriginalEvent = instance of __InstanceModificationEvent
  17027. { TargetInstance = instance of Win32_Modem
  17028. {
  17029. DeviceId = 1467644533;
  17030. Manufacturer = "Acme Corporation";
  17031. OffTheHook = true;
  17032. };
  17033. PreviousInstance = instance of Win32_Modem
  17034. {
  17035. DeviceId = 1190999031;
  17036. Manufacturer = "Acme Corporation";
  17037. OffTheHook = false;
  17038. };
  17039. };
  17040. };
  17041. instance of Microsoft_EELTOCEntryInFile
  17042. {
  17043. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17044. Entry ="Microsoft_EELEntry='470'";
  17045. };
  17046. instance of Microsoft_EELEntry
  17047. {
  17048. EventId = "471";
  17049. SourceSubsystemType="SMS Log";
  17050. SourceSubsystemName ="Unknown";
  17051. SystemAbout = "Kurshed_2";
  17052. SystemFrom = "Kurshed_2";
  17053. DeliveredBy = "Gafoor_1";
  17054. Category="modems";
  17055. Subcategory="general";
  17056. Priority = 4;
  17057. Severity = 1;
  17058. TimeGenerated = "19940501114228.172710+480";
  17059. LoggingTime = "20011216032924.151748+480";
  17060. RollupTime = "19991010081623.178179+480";
  17061. Message = "Message with key to search = 1170734940";
  17062. RecordNumber = "471";
  17063. User = "sriravi";
  17064. Type = 0;
  17065. Classification = 8;
  17066. LogType = 3;
  17067. OriginalEvent = instance of __InstanceDeletionEvent
  17068. { TargetInstance = instance of Win32_Modem
  17069. {
  17070. DeviceId = 469705469;
  17071. Manufacturer = "Acme Corporation";
  17072. OffTheHook = true;
  17073. };
  17074. };
  17075. };
  17076. instance of Microsoft_EELTOCEntryInFile
  17077. {
  17078. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17079. Entry ="Microsoft_EELEntry='471'";
  17080. };
  17081. instance of Microsoft_EELEntry
  17082. {
  17083. EventId = "472";
  17084. SourceSubsystemType="NT Event Log";
  17085. SourceSubsystemName ="application";
  17086. SystemAbout = "Alam_i2";
  17087. SystemFrom = "Gafoor_1";
  17088. DeliveredBy = "Gafoor_1";
  17089. Category="modems";
  17090. Subcategory="general";
  17091. Priority = 1;
  17092. Severity = 2;
  17093. TimeGenerated = "19920307094117.167943+480";
  17094. LoggingTime = "19950626032224.172357+480";
  17095. RollupTime = "19991002081113.128611+480";
  17096. Message = "Message with key to search = 469615876";
  17097. RecordNumber = "472";
  17098. User = "sriravi";
  17099. Type = 5;
  17100. Classification = 8;
  17101. LogType = 1;
  17102. OriginalEvent = instance of __InstanceCreationEvent
  17103. { TargetInstance = instance of Win32_Modem
  17104. {
  17105. DeviceId = 584197059;
  17106. Manufacturer = "Acme Corporation";
  17107. OffTheHook = true;
  17108. };
  17109. };
  17110. };
  17111. instance of Microsoft_EELTOCEntryInFile
  17112. {
  17113. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17114. Entry ="Microsoft_EELEntry='472'";
  17115. };
  17116. instance of Microsoft_EELEntry
  17117. {
  17118. EventId = "473";
  17119. SourceSubsystemType="SMS Log";
  17120. SourceSubsystemName ="Unknown";
  17121. SystemAbout = "Alam_i2";
  17122. SystemFrom = "Gafoor_1";
  17123. DeliveredBy = "Basheer_1";
  17124. Category="modems";
  17125. Subcategory="general";
  17126. Priority = 4;
  17127. Severity = 3;
  17128. TimeGenerated = "19900113004917.145732+480";
  17129. LoggingTime = "20011228085507.199027+480";
  17130. RollupTime = "19980925195628.118639+480";
  17131. Message = "Message with key to search = 1506786119";
  17132. RecordNumber = "473";
  17133. User = "rishi";
  17134. Type = 6;
  17135. Classification = 3;
  17136. LogType = 2;
  17137. OriginalEvent = instance of __InstanceModificationEvent
  17138. { TargetInstance = instance of Win32_Modem
  17139. {
  17140. DeviceId = 1443019893;
  17141. Manufacturer = "Acme Corporation";
  17142. OffTheHook = false;
  17143. };
  17144. PreviousInstance = instance of Win32_Modem
  17145. {
  17146. DeviceId = 314601573;
  17147. Manufacturer = "Acme Corporation";
  17148. OffTheHook = true;
  17149. };
  17150. };
  17151. };
  17152. instance of Microsoft_EELTOCEntryInFile
  17153. {
  17154. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17155. Entry ="Microsoft_EELEntry='473'";
  17156. };
  17157. instance of Microsoft_EELEntry
  17158. {
  17159. EventId = "474";
  17160. SourceSubsystemType="SMS Log";
  17161. SourceSubsystemName ="application";
  17162. SystemAbout = "Alam_i2";
  17163. SystemFrom = "Kurshed_2";
  17164. DeliveredBy = "Kurshed_2";
  17165. Category="modems";
  17166. Subcategory="general";
  17167. Priority = 3;
  17168. Severity = 4;
  17169. TimeGenerated = "19920315165822.169283+480";
  17170. LoggingTime = "19950606164727.178737+480";
  17171. RollupTime = "20001107182621.104540+480";
  17172. Message = "Message with key to search = 1389283722";
  17173. RecordNumber = "474";
  17174. User = "sriravi";
  17175. Type = 6;
  17176. Classification = 1;
  17177. LogType = 2;
  17178. OriginalEvent = instance of __InstanceDeletionEvent
  17179. { TargetInstance = instance of Win32_Modem
  17180. {
  17181. DeviceId = 1132280556;
  17182. Manufacturer = "Acme Corporation";
  17183. OffTheHook = false;
  17184. };
  17185. };
  17186. };
  17187. instance of Microsoft_EELTOCEntryInFile
  17188. {
  17189. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17190. Entry ="Microsoft_EELEntry='474'";
  17191. };
  17192. instance of Microsoft_EELEntry
  17193. {
  17194. EventId = "475";
  17195. SourceSubsystemType="SMS Log";
  17196. SourceSubsystemName ="server";
  17197. SystemAbout = "Alam_i2";
  17198. SystemFrom = "Kurshed_2";
  17199. DeliveredBy = "Gafoor_1";
  17200. Category="modems";
  17201. Subcategory="general";
  17202. Priority = 4;
  17203. Severity = 2;
  17204. TimeGenerated = "19920307173516.121321+480";
  17205. LoggingTime = "20011208175711.174420+480";
  17206. RollupTime = "19970828103116.163887+480";
  17207. Message = "Message with key to search = 1111322111";
  17208. RecordNumber = "475";
  17209. User = "sriravi";
  17210. Type = 5;
  17211. Classification = 8;
  17212. LogType = 3;
  17213. OriginalEvent = instance of __InstanceCreationEvent
  17214. { TargetInstance = instance of Win32_Modem
  17215. {
  17216. DeviceId = 1898691639;
  17217. Manufacturer = "Acme Corporation";
  17218. OffTheHook = false;
  17219. };
  17220. };
  17221. };
  17222. instance of Microsoft_EELTOCEntryInFile
  17223. {
  17224. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17225. Entry ="Microsoft_EELEntry='475'";
  17226. };
  17227. instance of Microsoft_EELEntry
  17228. {
  17229. EventId = "476";
  17230. SourceSubsystemType="SMS Log";
  17231. SourceSubsystemName ="Unknown";
  17232. SystemAbout = "Gafoor_1";
  17233. SystemFrom = "Basheer_1";
  17234. DeliveredBy = "Alam_i2";
  17235. Category="modems";
  17236. Subcategory="general";
  17237. Priority = 1;
  17238. Severity = 2;
  17239. TimeGenerated = "19930412062105.182276+480";
  17240. LoggingTime = "20001127112019.136580+480";
  17241. RollupTime = "19991014133924.110728+480";
  17242. Message = "Message with key to search = 1088147528";
  17243. RecordNumber = "476";
  17244. User = "rishi";
  17245. Type = 0;
  17246. Classification = 7;
  17247. LogType = 3;
  17248. OriginalEvent = instance of __InstanceModificationEvent
  17249. { TargetInstance = instance of Win32_Modem
  17250. {
  17251. DeviceId = 334799848;
  17252. Manufacturer = "Acme Corporation";
  17253. OffTheHook = false;
  17254. };
  17255. PreviousInstance = instance of Win32_Modem
  17256. {
  17257. DeviceId = 1377514297;
  17258. Manufacturer = "Acme Corporation";
  17259. OffTheHook = true;
  17260. };
  17261. };
  17262. };
  17263. instance of Microsoft_EELTOCEntryInFile
  17264. {
  17265. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17266. Entry ="Microsoft_EELEntry='476'";
  17267. };
  17268. instance of Microsoft_EELEntry
  17269. {
  17270. EventId = "477";
  17271. SourceSubsystemType="SMS Log";
  17272. SourceSubsystemName ="driver";
  17273. SystemAbout = "Basheer_1";
  17274. SystemFrom = "Kurshed_2";
  17275. DeliveredBy = "Kurshed_2";
  17276. Category="modems";
  17277. Subcategory="general";
  17278. Priority = 4;
  17279. Severity = 2;
  17280. TimeGenerated = "19920327035621.110986+480";
  17281. LoggingTime = "20001127082214.182501+480";
  17282. RollupTime = "19960707150522.194272+480";
  17283. Message = "Message with key to search = 603289516";
  17284. RecordNumber = "477";
  17285. User = "N/A";
  17286. Type = 6;
  17287. Classification = 7;
  17288. LogType = 3;
  17289. OriginalEvent = instance of __InstanceDeletionEvent
  17290. { TargetInstance = instance of Win32_Modem
  17291. {
  17292. DeviceId = 2016256130;
  17293. Manufacturer = "Acme Corporation";
  17294. OffTheHook = false;
  17295. };
  17296. };
  17297. };
  17298. instance of Microsoft_EELTOCEntryInFile
  17299. {
  17300. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17301. Entry ="Microsoft_EELEntry='477'";
  17302. };
  17303. instance of Microsoft_EELEntry
  17304. {
  17305. EventId = "478";
  17306. SourceSubsystemType="NT Event Log";
  17307. SourceSubsystemName ="driver";
  17308. SystemAbout = "Gafoor_1";
  17309. SystemFrom = "Basheer_1";
  17310. DeliveredBy = "Gafoor_1";
  17311. Category="modems";
  17312. Subcategory="general";
  17313. Priority = 2;
  17314. Severity = 1;
  17315. TimeGenerated = "19940517221328.182439+480";
  17316. LoggingTime = "20011216071103.179174+480";
  17317. RollupTime = "19970804143918.151682+480";
  17318. Message = "Message with key to search = 1021439597";
  17319. RecordNumber = "478";
  17320. User = "rishi";
  17321. Type = 1;
  17322. Classification = 1;
  17323. LogType = 2;
  17324. OriginalEvent = instance of __InstanceCreationEvent
  17325. { TargetInstance = instance of Win32_Modem
  17326. {
  17327. DeviceId = 363598721;
  17328. Manufacturer = "Acme Corporation";
  17329. OffTheHook = false;
  17330. };
  17331. };
  17332. };
  17333. instance of Microsoft_EELTOCEntryInFile
  17334. {
  17335. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17336. Entry ="Microsoft_EELEntry='478'";
  17337. };
  17338. instance of Microsoft_EELEntry
  17339. {
  17340. EventId = "479";
  17341. SourceSubsystemType="SMS Log";
  17342. SourceSubsystemName ="application";
  17343. SystemAbout = "Alam_i2";
  17344. SystemFrom = "Alam_i2";
  17345. DeliveredBy = "Basheer_1";
  17346. Category="modems";
  17347. Subcategory="general";
  17348. Priority = 4;
  17349. Severity = 1;
  17350. TimeGenerated = "19920303103423.139775+480";
  17351. LoggingTime = "20011224224010.129689+480";
  17352. RollupTime = "19940517065113.150596+480";
  17353. Message = "Message with key to search = 2003226424";
  17354. RecordNumber = "479";
  17355. User = "N/A";
  17356. Type = 3;
  17357. Classification = 5;
  17358. LogType = 1;
  17359. OriginalEvent = instance of __InstanceModificationEvent
  17360. { TargetInstance = instance of Win32_Modem
  17361. {
  17362. DeviceId = 1798459092;
  17363. Manufacturer = "Acme Corporation";
  17364. OffTheHook = true;
  17365. };
  17366. PreviousInstance = instance of Win32_Modem
  17367. {
  17368. DeviceId = 1880461605;
  17369. Manufacturer = "Acme Corporation";
  17370. OffTheHook = true;
  17371. };
  17372. };
  17373. };
  17374. instance of Microsoft_EELTOCEntryInFile
  17375. {
  17376. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17377. Entry ="Microsoft_EELEntry='479'";
  17378. };
  17379. instance of Microsoft_EELEntry
  17380. {
  17381. EventId = "480";
  17382. SourceSubsystemType="NT Event Log";
  17383. SourceSubsystemName ="application";
  17384. SystemAbout = "Gafoor_1";
  17385. SystemFrom = "Alam_i2";
  17386. DeliveredBy = "Gafoor_1";
  17387. Category="modems";
  17388. Subcategory="general";
  17389. Priority = 1;
  17390. Severity = 4;
  17391. TimeGenerated = "19930420005114.173160+480";
  17392. LoggingTime = "19960723043624.186781+480";
  17393. RollupTime = "19930428222307.158321+480";
  17394. Message = "Message with key to search = 1690293573";
  17395. RecordNumber = "480";
  17396. User = "N/A";
  17397. Type = 4;
  17398. Classification = 6;
  17399. LogType = 3;
  17400. OriginalEvent = instance of __InstanceDeletionEvent
  17401. { TargetInstance = instance of Win32_Modem
  17402. {
  17403. DeviceId = 1467552873;
  17404. Manufacturer = "Acme Corporation";
  17405. OffTheHook = false;
  17406. };
  17407. };
  17408. };
  17409. instance of Microsoft_EELTOCEntryInFile
  17410. {
  17411. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17412. Entry ="Microsoft_EELEntry='480'";
  17413. };
  17414. instance of Microsoft_EELEntry
  17415. {
  17416. EventId = "481";
  17417. SourceSubsystemType="NT Event Log";
  17418. SourceSubsystemName ="application";
  17419. SystemAbout = "Alam_i2";
  17420. SystemFrom = "Kurshed_2";
  17421. DeliveredBy = "Kurshed_2";
  17422. Category="modems";
  17423. Subcategory="general";
  17424. Priority = 1;
  17425. Severity = 1;
  17426. TimeGenerated = "19900117095524.167335+480";
  17427. LoggingTime = "19930416111523.107468+480";
  17428. RollupTime = "19960719150014.114256+480";
  17429. Message = "Message with key to search = 1350203968";
  17430. RecordNumber = "481";
  17431. User = "rishi";
  17432. Type = 1;
  17433. Classification = 1;
  17434. LogType = 2;
  17435. OriginalEvent = instance of __InstanceCreationEvent
  17436. { TargetInstance = instance of Win32_Modem
  17437. {
  17438. DeviceId = 865208015;
  17439. Manufacturer = "Acme Corporation";
  17440. OffTheHook = false;
  17441. };
  17442. };
  17443. };
  17444. instance of Microsoft_EELTOCEntryInFile
  17445. {
  17446. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17447. Entry ="Microsoft_EELEntry='481'";
  17448. };
  17449. instance of Microsoft_EELEntry
  17450. {
  17451. EventId = "482";
  17452. SourceSubsystemType="SMS Log";
  17453. SourceSubsystemName ="server";
  17454. SystemAbout = "Alam_i2";
  17455. SystemFrom = "Kurshed_2";
  17456. DeliveredBy = "Kurshed_2";
  17457. Category="modems";
  17458. Subcategory="general";
  17459. Priority = 2;
  17460. Severity = 1;
  17461. TimeGenerated = "19930420164301.166372+480";
  17462. LoggingTime = "19980917051616.128916+480";
  17463. RollupTime = "20001123142314.184209+480";
  17464. Message = "Message with key to search = 1084621419";
  17465. RecordNumber = "482";
  17466. User = "sriravi";
  17467. Type = 1;
  17468. Classification = 7;
  17469. LogType = 1;
  17470. OriginalEvent = instance of __InstanceModificationEvent
  17471. { TargetInstance = instance of Win32_Modem
  17472. {
  17473. DeviceId = 1959588364;
  17474. Manufacturer = "Acme Corporation";
  17475. OffTheHook = true;
  17476. };
  17477. PreviousInstance = instance of Win32_Modem
  17478. {
  17479. DeviceId = 1560524063;
  17480. Manufacturer = "Acme Corporation";
  17481. OffTheHook = false;
  17482. };
  17483. };
  17484. };
  17485. instance of Microsoft_EELTOCEntryInFile
  17486. {
  17487. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17488. Entry ="Microsoft_EELEntry='482'";
  17489. };
  17490. instance of Microsoft_EELEntry
  17491. {
  17492. EventId = "483";
  17493. SourceSubsystemType="SMS Log";
  17494. SourceSubsystemName ="server";
  17495. SystemAbout = "Gafoor_1";
  17496. SystemFrom = "Alam_i2";
  17497. DeliveredBy = "Gafoor_1";
  17498. Category="modems";
  17499. Subcategory="general";
  17500. Priority = 4;
  17501. Severity = 4;
  17502. TimeGenerated = "19900101203304.154775+480";
  17503. LoggingTime = "20011224223004.110481+480";
  17504. RollupTime = "20001123021017.164579+480";
  17505. Message = "Message with key to search = 545169243";
  17506. RecordNumber = "483";
  17507. User = "N/A";
  17508. Type = 5;
  17509. Classification = 7;
  17510. LogType = 1;
  17511. OriginalEvent = instance of __InstanceDeletionEvent
  17512. { TargetInstance = instance of Win32_Modem
  17513. {
  17514. DeviceId = 258091488;
  17515. Manufacturer = "Acme Corporation";
  17516. OffTheHook = false;
  17517. };
  17518. };
  17519. };
  17520. instance of Microsoft_EELTOCEntryInFile
  17521. {
  17522. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17523. Entry ="Microsoft_EELEntry='483'";
  17524. };
  17525. instance of Microsoft_EELEntry
  17526. {
  17527. EventId = "484";
  17528. SourceSubsystemType="SMS Log";
  17529. SourceSubsystemName ="driver";
  17530. SystemAbout = "Gafoor_1";
  17531. SystemFrom = "Gafoor_1";
  17532. DeliveredBy = "Kurshed_2";
  17533. Category="modems";
  17534. Subcategory="general";
  17535. Priority = 3;
  17536. Severity = 2;
  17537. TimeGenerated = "19970812224822.173671+480";
  17538. LoggingTime = "19991010221201.187123+480";
  17539. RollupTime = "20011212012616.169891+480";
  17540. Message = "Message with key to search = 2140116679";
  17541. RecordNumber = "484";
  17542. User = "rishi";
  17543. Type = 2;
  17544. Classification = 4;
  17545. LogType = 3;
  17546. OriginalEvent = instance of __InstanceCreationEvent
  17547. { TargetInstance = instance of Win32_Modem
  17548. {
  17549. DeviceId = 1994492437;
  17550. Manufacturer = "Acme Corporation";
  17551. OffTheHook = true;
  17552. };
  17553. };
  17554. };
  17555. instance of Microsoft_EELTOCEntryInFile
  17556. {
  17557. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17558. Entry ="Microsoft_EELEntry='484'";
  17559. };
  17560. instance of Microsoft_EELEntry
  17561. {
  17562. EventId = "485";
  17563. SourceSubsystemType="NT Event Log";
  17564. SourceSubsystemName ="driver";
  17565. SystemAbout = "Basheer_1";
  17566. SystemFrom = "Kurshed_2";
  17567. DeliveredBy = "Basheer_1";
  17568. Category="modems";
  17569. Subcategory="general";
  17570. Priority = 3;
  17571. Severity = 1;
  17572. TimeGenerated = "19920311091503.157544+480";
  17573. LoggingTime = "20011216060708.160622+480";
  17574. RollupTime = "20011204172521.165916+480";
  17575. Message = "Message with key to search = 580014211";
  17576. RecordNumber = "485";
  17577. User = "amit";
  17578. Type = 2;
  17579. Classification = 8;
  17580. LogType = 1;
  17581. OriginalEvent = instance of __InstanceModificationEvent
  17582. { TargetInstance = instance of Win32_Modem
  17583. {
  17584. DeviceId = 2119482570;
  17585. Manufacturer = "Acme Corporation";
  17586. OffTheHook = false;
  17587. };
  17588. PreviousInstance = instance of Win32_Modem
  17589. {
  17590. DeviceId = 2069762017;
  17591. Manufacturer = "Acme Corporation";
  17592. OffTheHook = false;
  17593. };
  17594. };
  17595. };
  17596. instance of Microsoft_EELTOCEntryInFile
  17597. {
  17598. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17599. Entry ="Microsoft_EELEntry='485'";
  17600. };
  17601. instance of Microsoft_EELEntry
  17602. {
  17603. EventId = "486";
  17604. SourceSubsystemType="SMS Log";
  17605. SourceSubsystemName ="Unknown";
  17606. SystemAbout = "Gafoor_1";
  17607. SystemFrom = "Gafoor_1";
  17608. DeliveredBy = "Gafoor_1";
  17609. Category="modems";
  17610. Subcategory="general";
  17611. Priority = 3;
  17612. Severity = 3;
  17613. TimeGenerated = "19940521065125.128252+480";
  17614. LoggingTime = "19980901172822.162032+480";
  17615. RollupTime = "20011224033202.156055+480";
  17616. Message = "Message with key to search = 1632395987";
  17617. RecordNumber = "486";
  17618. User = "amit";
  17619. Type = 0;
  17620. Classification = 7;
  17621. LogType = 1;
  17622. OriginalEvent = instance of __InstanceDeletionEvent
  17623. { TargetInstance = instance of Win32_Modem
  17624. {
  17625. DeviceId = 1928276297;
  17626. Manufacturer = "Acme Corporation";
  17627. OffTheHook = false;
  17628. };
  17629. };
  17630. };
  17631. instance of Microsoft_EELTOCEntryInFile
  17632. {
  17633. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17634. Entry ="Microsoft_EELEntry='486'";
  17635. };
  17636. instance of Microsoft_EELEntry
  17637. {
  17638. EventId = "487";
  17639. SourceSubsystemType="SMS Log";
  17640. SourceSubsystemName ="driver";
  17641. SystemAbout = "Alam_i2";
  17642. SystemFrom = "Gafoor_1";
  17643. DeliveredBy = "Alam_i2";
  17644. Category="modems";
  17645. Subcategory="general";
  17646. Priority = 4;
  17647. Severity = 2;
  17648. TimeGenerated = "19940521043909.145021+480";
  17649. LoggingTime = "19970828044401.164803+480";
  17650. RollupTime = "20011220182014.104733+480";
  17651. Message = "Message with key to search = 716864686";
  17652. RecordNumber = "487";
  17653. User = "rishi";
  17654. Type = 4;
  17655. Classification = 4;
  17656. LogType = 2;
  17657. OriginalEvent = instance of __InstanceCreationEvent
  17658. { TargetInstance = instance of Win32_Modem
  17659. {
  17660. DeviceId = 790240180;
  17661. Manufacturer = "Acme Corporation";
  17662. OffTheHook = false;
  17663. };
  17664. };
  17665. };
  17666. instance of Microsoft_EELTOCEntryInFile
  17667. {
  17668. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17669. Entry ="Microsoft_EELEntry='487'";
  17670. };
  17671. instance of Microsoft_EELEntry
  17672. {
  17673. EventId = "488";
  17674. SourceSubsystemType="SMS Log";
  17675. SourceSubsystemName ="Unknown";
  17676. SystemAbout = "Alam_i2";
  17677. SystemFrom = "Kurshed_2";
  17678. DeliveredBy = "Gafoor_1";
  17679. Category="modems";
  17680. Subcategory="general";
  17681. Priority = 4;
  17682. Severity = 4;
  17683. TimeGenerated = "19930428174424.161452+480";
  17684. LoggingTime = "19980913091105.157345+480";
  17685. RollupTime = "19970804225012.159869+480";
  17686. Message = "Message with key to search = 1430406410";
  17687. RecordNumber = "488";
  17688. User = "sriravi";
  17689. Type = 0;
  17690. Classification = 2;
  17691. LogType = 1;
  17692. OriginalEvent = instance of __InstanceModificationEvent
  17693. { TargetInstance = instance of Win32_Modem
  17694. {
  17695. DeviceId = 1011859159;
  17696. Manufacturer = "Acme Corporation";
  17697. OffTheHook = false;
  17698. };
  17699. PreviousInstance = instance of Win32_Modem
  17700. {
  17701. DeviceId = 1496212831;
  17702. Manufacturer = "Acme Corporation";
  17703. OffTheHook = false;
  17704. };
  17705. };
  17706. };
  17707. instance of Microsoft_EELTOCEntryInFile
  17708. {
  17709. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17710. Entry ="Microsoft_EELEntry='488'";
  17711. };
  17712. instance of Microsoft_EELEntry
  17713. {
  17714. EventId = "489";
  17715. SourceSubsystemType="SMS Log";
  17716. SourceSubsystemName ="application";
  17717. SystemAbout = "Basheer_1";
  17718. SystemFrom = "Kurshed_2";
  17719. DeliveredBy = "Alam_i2";
  17720. Category="modems";
  17721. Subcategory="general";
  17722. Priority = 1;
  17723. Severity = 4;
  17724. TimeGenerated = "19920315183108.137556+480";
  17725. LoggingTime = "19930416223117.142862+480";
  17726. RollupTime = "19970824185925.131775+480";
  17727. Message = "Message with key to search = 436893633";
  17728. RecordNumber = "489";
  17729. User = "sriravi";
  17730. Type = 2;
  17731. Classification = 7;
  17732. LogType = 3;
  17733. OriginalEvent = instance of __InstanceDeletionEvent
  17734. { TargetInstance = instance of Win32_Modem
  17735. {
  17736. DeviceId = 1742892772;
  17737. Manufacturer = "Acme Corporation";
  17738. OffTheHook = false;
  17739. };
  17740. };
  17741. };
  17742. instance of Microsoft_EELTOCEntryInFile
  17743. {
  17744. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17745. Entry ="Microsoft_EELEntry='489'";
  17746. };
  17747. instance of Microsoft_EELEntry
  17748. {
  17749. EventId = "490";
  17750. SourceSubsystemType="SMS Log";
  17751. SourceSubsystemName ="server";
  17752. SystemAbout = "Gafoor_1";
  17753. SystemFrom = "Basheer_1";
  17754. DeliveredBy = "Basheer_1";
  17755. Category="modems";
  17756. Subcategory="general";
  17757. Priority = 2;
  17758. Severity = 4;
  17759. TimeGenerated = "19910218001220.185710+480";
  17760. LoggingTime = "19980921164106.163631+480";
  17761. RollupTime = "19910214035702.114112+480";
  17762. Message = "Message with key to search = 504251188";
  17763. RecordNumber = "490";
  17764. User = "sriravi";
  17765. Type = 5;
  17766. Classification = 2;
  17767. LogType = 3;
  17768. OriginalEvent = instance of __InstanceCreationEvent
  17769. { TargetInstance = instance of Win32_Modem
  17770. {
  17771. DeviceId = 1281484843;
  17772. Manufacturer = "Acme Corporation";
  17773. OffTheHook = false;
  17774. };
  17775. };
  17776. };
  17777. instance of Microsoft_EELTOCEntryInFile
  17778. {
  17779. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17780. Entry ="Microsoft_EELEntry='490'";
  17781. };
  17782. instance of Microsoft_EELEntry
  17783. {
  17784. EventId = "491";
  17785. SourceSubsystemType="NT Event Log";
  17786. SourceSubsystemName ="driver";
  17787. SystemAbout = "Alam_i2";
  17788. SystemFrom = "Alam_i2";
  17789. DeliveredBy = "Kurshed_2";
  17790. Category="modems";
  17791. Subcategory="general";
  17792. Priority = 2;
  17793. Severity = 1;
  17794. TimeGenerated = "19910218024816.106945+480";
  17795. LoggingTime = "19980917045209.123674+480";
  17796. RollupTime = "19920319015600.161358+480";
  17797. Message = "Message with key to search = 1785699462";
  17798. RecordNumber = "491";
  17799. User = "N/A";
  17800. Type = 5;
  17801. Classification = 4;
  17802. LogType = 1;
  17803. OriginalEvent = instance of __InstanceModificationEvent
  17804. { TargetInstance = instance of Win32_Modem
  17805. {
  17806. DeviceId = 934777686;
  17807. Manufacturer = "Acme Corporation";
  17808. OffTheHook = true;
  17809. };
  17810. PreviousInstance = instance of Win32_Modem
  17811. {
  17812. DeviceId = 1182668140;
  17813. Manufacturer = "Acme Corporation";
  17814. OffTheHook = true;
  17815. };
  17816. };
  17817. };
  17818. instance of Microsoft_EELTOCEntryInFile
  17819. {
  17820. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17821. Entry ="Microsoft_EELEntry='491'";
  17822. };
  17823. instance of Microsoft_EELEntry
  17824. {
  17825. EventId = "492";
  17826. SourceSubsystemType="NT Event Log";
  17827. SourceSubsystemName ="application";
  17828. SystemAbout = "Gafoor_1";
  17829. SystemFrom = "Gafoor_1";
  17830. DeliveredBy = "Basheer_1";
  17831. Category="modems";
  17832. Subcategory="general";
  17833. Priority = 4;
  17834. Severity = 1;
  17835. TimeGenerated = "19940513225527.185303+480";
  17836. LoggingTime = "19991026161424.127826+480";
  17837. RollupTime = "19920327000214.178778+480";
  17838. Message = "Message with key to search = 165298222";
  17839. RecordNumber = "492";
  17840. User = "amit";
  17841. Type = 3;
  17842. Classification = 5;
  17843. LogType = 1;
  17844. OriginalEvent = instance of __InstanceDeletionEvent
  17845. { TargetInstance = instance of Win32_Modem
  17846. {
  17847. DeviceId = 2093209264;
  17848. Manufacturer = "Acme Corporation";
  17849. OffTheHook = true;
  17850. };
  17851. };
  17852. };
  17853. instance of Microsoft_EELTOCEntryInFile
  17854. {
  17855. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17856. Entry ="Microsoft_EELEntry='492'";
  17857. };
  17858. instance of Microsoft_EELEntry
  17859. {
  17860. EventId = "493";
  17861. SourceSubsystemType="SMS Log";
  17862. SourceSubsystemName ="Unknown";
  17863. SystemAbout = "Gafoor_1";
  17864. SystemFrom = "Alam_i2";
  17865. DeliveredBy = "Basheer_1";
  17866. Category="modems";
  17867. Subcategory="general";
  17868. Priority = 4;
  17869. Severity = 3;
  17870. TimeGenerated = "19920315064709.124310+480";
  17871. LoggingTime = "20011228132916.125908+480";
  17872. RollupTime = "19910222231319.102309+480";
  17873. Message = "Message with key to search = 1629488967";
  17874. RecordNumber = "493";
  17875. User = "N/A";
  17876. Type = 2;
  17877. Classification = 5;
  17878. LogType = 1;
  17879. OriginalEvent = instance of __InstanceCreationEvent
  17880. { TargetInstance = instance of Win32_Modem
  17881. {
  17882. DeviceId = 1610168329;
  17883. Manufacturer = "Acme Corporation";
  17884. OffTheHook = false;
  17885. };
  17886. };
  17887. };
  17888. instance of Microsoft_EELTOCEntryInFile
  17889. {
  17890. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  17891. Entry ="Microsoft_EELEntry='493'";
  17892. };
  17893. instance of Microsoft_EELEntry
  17894. {
  17895. EventId = "494";
  17896. SourceSubsystemType="SMS Log";
  17897. SourceSubsystemName ="Unknown";
  17898. SystemAbout = "Basheer_1";
  17899. SystemFrom = "Basheer_1";
  17900. DeliveredBy = "Gafoor_1";
  17901. Category="modems";
  17902. Subcategory="general";
  17903. Priority = 1;
  17904. Severity = 3;
  17905. TimeGenerated = "19910210055109.188915+480";
  17906. LoggingTime = "20011212005121.108302+480";
  17907. RollupTime = "19920319185925.107312+480";
  17908. Message = "Message with key to search = 1465662528";
  17909. RecordNumber = "494";
  17910. User = "N/A";
  17911. Type = 5;
  17912. Classification = 4;
  17913. LogType = 3;
  17914. OriginalEvent = instance of __InstanceModificationEvent
  17915. { TargetInstance = instance of Win32_Modem
  17916. {
  17917. DeviceId = 1886711632;
  17918. Manufacturer = "Acme Corporation";
  17919. OffTheHook = false;
  17920. };
  17921. PreviousInstance = instance of Win32_Modem
  17922. {
  17923. DeviceId = 355087463;
  17924. Manufacturer = "Acme Corporation";
  17925. OffTheHook = true;
  17926. };
  17927. };
  17928. };
  17929. instance of Microsoft_EELTOCEntryInFile
  17930. {
  17931. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  17932. Entry ="Microsoft_EELEntry='494'";
  17933. };
  17934. instance of Microsoft_EELEntry
  17935. {
  17936. EventId = "495";
  17937. SourceSubsystemType="SMS Log";
  17938. SourceSubsystemName ="server";
  17939. SystemAbout = "Basheer_1";
  17940. SystemFrom = "Basheer_1";
  17941. DeliveredBy = "Alam_i2";
  17942. Category="modems";
  17943. Subcategory="general";
  17944. Priority = 1;
  17945. Severity = 1;
  17946. TimeGenerated = "19900105122511.157250+480";
  17947. LoggingTime = "19960727153616.152218+480";
  17948. RollupTime = "19920323124506.147785+480";
  17949. Message = "Message with key to search = 2055122385";
  17950. RecordNumber = "495";
  17951. User = "N/A";
  17952. Type = 0;
  17953. Classification = 4;
  17954. LogType = 2;
  17955. OriginalEvent = instance of __InstanceDeletionEvent
  17956. { TargetInstance = instance of Win32_Modem
  17957. {
  17958. DeviceId = 504903416;
  17959. Manufacturer = "Acme Corporation";
  17960. OffTheHook = true;
  17961. };
  17962. };
  17963. };
  17964. instance of Microsoft_EELTOCEntryInFile
  17965. {
  17966. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  17967. Entry ="Microsoft_EELEntry='495'";
  17968. };
  17969. instance of Microsoft_EELEntry
  17970. {
  17971. EventId = "496";
  17972. SourceSubsystemType="SMS Log";
  17973. SourceSubsystemName ="Unknown";
  17974. SystemAbout = "Kurshed_2";
  17975. SystemFrom = "Kurshed_2";
  17976. DeliveredBy = "Gafoor_1";
  17977. Category="modems";
  17978. Subcategory="general";
  17979. Priority = 2;
  17980. Severity = 4;
  17981. TimeGenerated = "19910222204503.108543+480";
  17982. LoggingTime = "19950614063901.194416+480";
  17983. RollupTime = "19950622051508.100162+480";
  17984. Message = "Message with key to search = 1627747035";
  17985. RecordNumber = "496";
  17986. User = "amit";
  17987. Type = 3;
  17988. Classification = 4;
  17989. LogType = 3;
  17990. OriginalEvent = instance of __InstanceCreationEvent
  17991. { TargetInstance = instance of Win32_Modem
  17992. {
  17993. DeviceId = 495054631;
  17994. Manufacturer = "Acme Corporation";
  17995. OffTheHook = true;
  17996. };
  17997. };
  17998. };
  17999. instance of Microsoft_EELTOCEntryInFile
  18000. {
  18001. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  18002. Entry ="Microsoft_EELEntry='496'";
  18003. };
  18004. instance of Microsoft_EELEntry
  18005. {
  18006. EventId = "497";
  18007. SourceSubsystemType="SMS Log";
  18008. SourceSubsystemName ="Unknown";
  18009. SystemAbout = "Kurshed_2";
  18010. SystemFrom = "Kurshed_2";
  18011. DeliveredBy = "Alam_i2";
  18012. Category="modems";
  18013. Subcategory="general";
  18014. Priority = 2;
  18015. Severity = 1;
  18016. TimeGenerated = "19900117115902.180593+480";
  18017. LoggingTime = "19940517080003.113985+480";
  18018. RollupTime = "19980905230817.159828+480";
  18019. Message = "Message with key to search = 1475634068";
  18020. RecordNumber = "497";
  18021. User = "N/A";
  18022. Type = 4;
  18023. Classification = 8;
  18024. LogType = 3;
  18025. OriginalEvent = instance of __InstanceModificationEvent
  18026. { TargetInstance = instance of Win32_Modem
  18027. {
  18028. DeviceId = 856029956;
  18029. Manufacturer = "Acme Corporation";
  18030. OffTheHook = true;
  18031. };
  18032. PreviousInstance = instance of Win32_Modem
  18033. {
  18034. DeviceId = 754237497;
  18035. Manufacturer = "Acme Corporation";
  18036. OffTheHook = false;
  18037. };
  18038. };
  18039. };
  18040. instance of Microsoft_EELTOCEntryInFile
  18041. {
  18042. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  18043. Entry ="Microsoft_EELEntry='497'";
  18044. };
  18045. instance of Microsoft_EELEntry
  18046. {
  18047. EventId = "498";
  18048. SourceSubsystemType="NT Event Log";
  18049. SourceSubsystemName ="Unknown";
  18050. SystemAbout = "Kurshed_2";
  18051. SystemFrom = "Alam_i2";
  18052. DeliveredBy = "Alam_i2";
  18053. Category="modems";
  18054. Subcategory="general";
  18055. Priority = 3;
  18056. Severity = 2;
  18057. TimeGenerated = "19900109090713.139819+480";
  18058. LoggingTime = "19950618224103.124756+480";
  18059. RollupTime = "20011204224516.161644+480";
  18060. Message = "Message with key to search = 540650699";
  18061. RecordNumber = "498";
  18062. User = "N/A";
  18063. Type = 1;
  18064. Classification = 7;
  18065. LogType = 2;
  18066. OriginalEvent = instance of __InstanceDeletionEvent
  18067. { TargetInstance = instance of Win32_Modem
  18068. {
  18069. DeviceId = 1826086880;
  18070. Manufacturer = "Acme Corporation";
  18071. OffTheHook = true;
  18072. };
  18073. };
  18074. };
  18075. instance of Microsoft_EELTOCEntryInFile
  18076. {
  18077. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  18078. Entry ="Microsoft_EELEntry='498'";
  18079. };
  18080. instance of Microsoft_EELEntry
  18081. {
  18082. EventId = "499";
  18083. SourceSubsystemType="SMS Log";
  18084. SourceSubsystemName ="driver";
  18085. SystemAbout = "Kurshed_2";
  18086. SystemFrom = "Basheer_1";
  18087. DeliveredBy = "Basheer_1";
  18088. Category="modems";
  18089. Subcategory="general";
  18090. Priority = 2;
  18091. Severity = 3;
  18092. TimeGenerated = "19960715134714.163994+480";
  18093. LoggingTime = "19960707152120.139789+480";
  18094. RollupTime = "19950606080626.185004+480";
  18095. Message = "Message with key to search = 1132662698";
  18096. RecordNumber = "499";
  18097. User = "sriravi";
  18098. Type = 0;
  18099. Classification = 7;
  18100. LogType = 3;
  18101. OriginalEvent = instance of __InstanceCreationEvent
  18102. { TargetInstance = instance of Win32_Modem
  18103. {
  18104. DeviceId = 1847058959;
  18105. Manufacturer = "Acme Corporation";
  18106. OffTheHook = true;
  18107. };
  18108. };
  18109. };
  18110. instance of Microsoft_EELTOCEntryInFile
  18111. {
  18112. TOC = "Microsoft_EELTOC='__InstanceCreationEvent'";
  18113. Entry ="Microsoft_EELEntry='499'";
  18114. };
  18115. instance of Microsoft_EELEntry
  18116. {
  18117. EventId = "500";
  18118. SourceSubsystemType="SMS Log";
  18119. SourceSubsystemName ="application";
  18120. SystemAbout = "Gafoor_1";
  18121. SystemFrom = "Alam_i2";
  18122. DeliveredBy = "Basheer_1";
  18123. Category="modems";
  18124. Subcategory="general";
  18125. Priority = 2;
  18126. Severity = 4;
  18127. TimeGenerated = "19960703232912.139104+480";
  18128. LoggingTime = "20011228085507.199027+480";
  18129. RollupTime = "19900101041008.188128+480";
  18130. Message = "Message with key to search = 124335289";
  18131. RecordNumber = "500";
  18132. User = "sriravi";
  18133. Type = 6;
  18134. Classification = 7;
  18135. LogType = 2;
  18136. OriginalEvent = instance of __InstanceModificationEvent
  18137. { TargetInstance = instance of Win32_Modem
  18138. {
  18139. DeviceId = 446471761;
  18140. Manufacturer = "Acme Corporation";
  18141. OffTheHook = false;
  18142. };
  18143. PreviousInstance = instance of Win32_Modem
  18144. {
  18145. DeviceId = 1834240728;
  18146. Manufacturer = "Acme Corporation";
  18147. OffTheHook = false;
  18148. };
  18149. };
  18150. };
  18151. instance of Microsoft_EELTOCEntryInFile
  18152. {
  18153. TOC = "Microsoft_EELTOC='__InstanceModificationEvent'";
  18154. Entry ="Microsoft_EELEntry='500'";
  18155. };
  18156. instance of Microsoft_EELEntry
  18157. {
  18158. EventId = "501";
  18159. SourceSubsystemType="NT Event Log";
  18160. SourceSubsystemName ="Unknown";
  18161. SystemAbout = "Basheer_1";
  18162. SystemFrom = "Kurshed_2";
  18163. DeliveredBy = "Gafoor_1";
  18164. Category="modems";
  18165. Subcategory="general";
  18166. Priority = 2;
  18167. Severity = 1;
  18168. TimeGenerated = "19900101114106.126520+480";
  18169. LoggingTime = "19980905060511.131158+480";
  18170. RollupTime = "19991010142927.176494+480";
  18171. Message = "Message with key to search = 780644753";
  18172. RecordNumber = "501";
  18173. User = "sriravi";
  18174. Type = 1;
  18175. Classification = 1;
  18176. LogType = 2;
  18177. OriginalEvent = instance of __InstanceDeletionEvent
  18178. { TargetInstance = instance of Win32_Modem
  18179. {
  18180. DeviceId = 1108447093;
  18181. Manufacturer = "Acme Corporation";
  18182. OffTheHook = true;
  18183. };
  18184. };
  18185. };
  18186. instance of Microsoft_EELTOCEntryInFile
  18187. {
  18188. TOC = "Microsoft_EELTOC='__InstanceDeletionEvent'";
  18189. Entry ="Microsoft_EELEntry='501'";
  18190. };
  18191. instance of Microsoft_EELTOC
  18192. {
  18193. Category="__InstanceCreationEvent";
  18194. Description ="Instance Creation Event ";
  18195. };
  18196. instance of Microsoft_EELTOC
  18197. {
  18198. Category="__InstanceModificationEvent";
  18199. Description ="Instance Modification Event ";
  18200. };
  18201. instance of Microsoft_EELTOC
  18202. {
  18203. Category="__InstanceDeletionEvent";
  18204. Description ="Instance Deletion Event ";
  18205. };