1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
420.
421.
422.
423.
424.
425.
426.
427.
428.
429.
430.
431.
432.
433.
434.
435.
436.
437.
438.
439.
440.
441.
442.
443.
444.
445.
446.
447.
448.
449.
450.
451.
452.
453.
454.
455.
456.
457.
458.
459.
460.
461.
462.
463.
464.
465.
466.
467.
468.
469.
470.
471.
472.
473.
474.
475.
476.
477.
478.
479.
480.
481.
482.
483.
484.
485.
486.
487.
488.
489.
490.
491.
492.
493.
494.
495.
496.
497.
498.
499.
500.
501.
502.
503.
504.
505.
506.
507.
508.
509.
510.
511.
512.
513.
514.
515.
516.
517.
518.
519.
520.
521.
522.
523.
524.
525.
526.
527.
528.
529.
530.
531.
532.
533.
534.
535.
536.
537.
538.
539.
540.
541.
542.
543.
544.
545.
546.
547.
548.
549.
550.
551.
552.
553.
554.
555.
556.
557.
558.
559.
560.
561.
562.
563.
564.
565.
566.
567.
568.
569.
570.
571.
572.
573.
574.
575.
576.
577.
578.
579.
580.
581.
582.
583.
584.
585.
586.
587.
588.
589.
590.
591.
592.
593.
594.
595.
596.
597.
598.
599.
600.
601.
602.
603.
604.
605.
606.
607.
608.
609.
610.
611.
612.
613.
614.
615.
616.
617.
618.
619.
620.
621.
622.
623.
624.
625.
626.
627.
628.
629.
630.
631.
632.
633.
634.
635.
636.
637.
638.
639.
640.
641.
642.
643.
644.
645.
646.
647.
648.
649.
650.
651.
652.
653.
654.
655.
656.
657.
658.
659.
660.
661.
662.
663.
664.
665.
666.
667.
668.
669.
670.
671.
672.
673.
674.
675.
676.
677.
678.
679.
680.
681.
682.
683.
684.
685.
686.
687.
688.
689.
690.
691.
692.
693.
694.
695.
696.
697.
698.
699.
700.
701.
702.
703.
704.
705.
706.
707.
708.
709.
710.
711.
712.
713.
714.
715.
716.
717.
718.
719.
720.
721.
722.
723.
724.
725.
726.
727.
728.
729.
730.
731.
732.
733.
734.
735.
736.
737.
738.
739.
740.
741.
742.
743.
744.
745.
746.
747.
748.
749.
750.
751.
752.
753.
754.
755.
756.
757.
758.
759.
760.
761.
762.
763.
764.
765.
766.
767.
768.
769.
770.
771.
772.
773.
774.
775.
776.
777.
778.
779.
780.
781.
782.
783.
784.
785.
786.
787.
788.
789.
790.
791.
792.
793.
794.
795.
796.
797.
798.
799.
800.
801.
802.
803.
804.
805.
806.
807.
808.
809.
810.
811.
812.
813.
814.
815.
816.
817.
818.
819.
820.
821.
822.
823.
824.
825.
826.
827.
828.
829.
830.
831.
832.
833.
834.
835.
836.
837.
838.
839.
840.
841.
842.
843.
844.
845.
846.
847.
848.
849.
850.
851.
852.
853.
854.
855.
856.
857.
858.
859.
860.
861.
862.
863.
864.
865.
866.
867.
868.
869.
870.
871.
872.
873.
874.
875.
876.
877.
878.
879.
880.
881.
882.
883.
884.
885.
886.
887.
888.
889.
890.
891.
892.
893.
894.
895.
896.
897.
898.
899.
900.
901.
902.
903.
904.
905.
906.
907.
908.
909.
910.
911.
912.
913.
914.
915.
916.
917.
918.
919.
920.
921. | OTL logfile created on: 2011-02-05 16:29:51 - Run 1
OTL by OldTimer - Version 3.2.20.6 Folder = H:\Documents and Settings\David\Moje dokumenty\Downloads
Windows XP Home Edition Dodatek Service Pack 3 (Version = 5.1.2600) - Type = NTWorkstation
Internet Explorer (Version = 8.0.6001.18702)
Locale: 00000415 | Country: Polska | Language: PLK | Date Format: yyyy-MM-dd
2,00 Gb Total Physical Memory | 1,00 Gb Available Physical Memory | 52,00% Memory free
4,00 Gb Paging File | 3,00 Gb Available in Paging File | 77,00% Paging File free
Paging file location(s): H:\pagefile.sys 2046 4092 [binary data]
%SystemDrive% = H: | %SystemRoot% = H:\WINDOWS | %ProgramFiles% = H:\Program Files
Drive G: | 0,38 Mb Total Space | 0,00 Mb Free Space | 0,00% Space Free | Partition Type: CDFS
Drive H: | 48,83 Gb Total Space | 19,72 Gb Free Space | 40,39% Space Free | Partition Type: NTFS
Drive I: | 119,87 Gb Total Space | 104,55 Gb Free Space | 87,22% Space Free | Partition Type: NTFS
Drive J: | 129,38 Gb Total Space | 123,75 Gb Free Space | 95,65% Space Free | Partition Type: NTFS
Computer Name: ADMIN-AD17573EC | User Name: David | Logged in as Administrator.
Boot Mode: Normal | Scan Mode: Current user | Quick Scan
Company Name Whitelist: On | Skip Microsoft Files: On | No Company Name Whitelist: On | File Age = 30 Days
[color=#E56717]========== Processes (SafeList) ==========[/color]
PRC - H:\Documents and Settings\David\Moje dokumenty\Downloads\OTL.exe (OldTimer Tools)
PRC - H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\Google\Chrome\Application\chrome.exe (Google Inc.)
PRC - H:\Program Files\Alwil Software\Avast5\AvastUI.exe (AVAST Software)
PRC - H:\Program Files\Alwil Software\Avast5\AvastSvc.exe (AVAST Software)
PRC - H:\Program Files\Gadu-Gadu 10\gg.exe (GG Network S.A.)
PRC - H:\Program Files\Winamp\winamp.exe (Nullsoft, Inc.)
PRC - H:\Program Files\Winamp\winampa.exe (Nullsoft, Inc.)
PRC - I:\Priv\hamachi-2-ui.exe (LogMeIn Inc.)
PRC - I:\Priv\hamachi-2.exe (LogMeIn Inc.)
PRC - I:\GM panel\Metin2\metin2.bin ()
PRC - I:\Server\xampp\xampp\mysql\bin\mysqld.exe (MySQL AB)
PRC - I:\Server\xampp\xampp\xampp-control.exe (Apache Friends)
PRC - I:\Server\xampp\xampp\apache\bin\httpd.exe (Apache Software Foundation)
PRC - H:\Program Files\PremiumSoft\Navicat 8.1 MySQL\navicat.exe (PremiumSoft CyberTech Ltd.)
PRC - I:\Server\Virtual PC.exe (Microsoft Corporation)
PRC - H:\WINDOWS\explorer.exe (Microsoft Corporation)
[color=#E56717]========== Modules (SafeList) ==========[/color]
MOD - H:\Documents and Settings\David\Moje dokumenty\Downloads\OTL.exe (OldTimer Tools)
MOD - H:\Program Files\Alwil Software\Avast5\snxhk.dll (AVAST Software)
MOD - H:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\comctl32.dll (Microsoft Corporation)
[color=#E56717]========== Win32 Services (SafeList) ==========[/color]
SRV - (HidServ) -- File not found
SRV - (AppMgmt) -- File not found
SRV - (avast! Antivirus) -- H:\Program Files\Alwil Software\Avast5\AvastSvc.exe (AVAST Software)
SRV - (Hamachi2Svc) -- I:\Priv\hamachi-2.exe (LogMeIn Inc.)
SRV - (Apache2.2) -- I:\Server\xampp\xampp\apache\bin\httpd.exe (Apache Software Foundation)
[color=#E56717]========== Driver Services (SafeList) ==========[/color]
DRV - (aswSP) -- H:\WINDOWS\System32\drivers\aswSP.sys (AVAST Software)
DRV - (aswTdi) -- H:\WINDOWS\System32\drivers\aswTdi.sys (AVAST Software)
DRV - (aswMon2) -- H:\WINDOWS\System32\drivers\aswmon2.sys (AVAST Software)
DRV - (aswRdr) -- H:\WINDOWS\System32\drivers\aswRdr.sys (AVAST Software)
DRV - (Aavmker4) -- H:\WINDOWS\System32\drivers\aavmker4.sys (AVAST Software)
DRV - (aswFsBlk) -- H:\WINDOWS\System32\drivers\aswFsBlk.sys (AVAST Software)
DRV - (sptd) -- H:\WINDOWS\System32\Drivers\sptd.sys ()
DRV - (hamachi) -- H:\WINDOWS\system32\drivers\hamachi.sys (LogMeIn, Inc.)
DRV - (gdrv) -- H:\WINDOWS\gdrv.sys (Windows (R) 2000 DDK provider)
DRV - (IntcAzAudAddService) Service for Realtek HD Audio (WDM) -- H:\WINDOWS\system32\drivers\RtkHDAud.sys (Realtek Semiconductor Corp.)
DRV - (ialm) -- H:\WINDOWS\system32\drivers\igxpmp32.sys (Intel Corporation)
DRV - (RTLE8023xp) -- H:\WINDOWS\system32\drivers\Rtenicxp.sys (Realtek Semiconductor Corporation )
DRV - (HDAudBus) -- H:\WINDOWS\system32\drivers\hdaudbus.sys (Windows (R) Server 2003 DDK provider)
DRV - (vmm) -- H:\WINDOWS\system32\drivers\VMM.sys (Microsoft Corporation)
DRV - (VPCNetS2) -- H:\WINDOWS\system32\drivers\VMNetSrv.sys (Microsoft Corporation)
[color=#E56717]========== Standard Registry (SafeList) ==========[/color]
[color=#E56717]========== Internet Explorer ==========[/color]
IE - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings: "ProxyEnable" = 0
O1 HOSTS File: ([2008-04-15 13:00:00 | 000,000,742 | ---- | M]) - H:\WINDOWS\system32\drivers\etc\hosts
O1 - Hosts: 127.0.0.1 localhost
O2 - BHO: (IEPluginBHO Class) - {F5CC7F02-6F4E-4462-B5B1-394A57FD3E0D} - H:\Documents and Settings\Użytkownik\Dane aplikacji\Nowe Gadu-Gadu\_userdata\ggbho.1.dll (GG Network S.A.)
O3 - HKLM\..\Toolbar: (DAEMON Tools Toolbar) - {32099AAC-C132-4136-9E9A-4E364A424E17} - H:\Program Files\DAEMON Tools Toolbar\DTToolbar.dll ()
O3 - HKCU\..\Toolbar\WebBrowser: (DAEMON Tools Toolbar) - {32099AAC-C132-4136-9E9A-4E364A424E17} - H:\Program Files\DAEMON Tools Toolbar\DTToolbar.dll ()
O4 - HKLM..\Run: [avast5] H:\Program Files\Alwil Software\Avast5\avastUI.exe (AVAST Software)
O4 - HKLM..\Run: [BluetoothAuthenticationAgent] H:\WINDOWS\System32\bthprops.cpl (Microsoft Corporation)
O4 - HKLM..\Run: [LogMeIn Hamachi Ui] I:\Priv\hamachi-2-ui.exe (LogMeIn Inc.)
O4 - HKLM..\Run: [MS32DLL] File not found
O4 - HKLM..\Run: [WebServ] File not found
O4 - HKLM..\Run: [WinampAgent] H:\Program Files\Winamp\winampa.exe (Nullsoft, Inc.)
O4 - HKCU..\Run: [Fraps] File not found
O4 - HKCU..\Run: [Gadu-Gadu 10] H:\Program Files\Gadu-Gadu 10\gg.exe (GG Network S.A.)
O4 - HKCU..\Run: [MSMSGS] File not found
O4 - HKCU..\Run: [NVIDIA driver monitor] File not found
O4 - HKCU..\Run: [WhatPulse] File not found
O6 - HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer: HonorAutoRunSetting = 1
O7 - HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer: NoDriveTypeAutoRun = 145
O9 - Extra 'Tools' menuitem : @xpsp3res.dll,-20001 - {e2e2dd38-d088-4134-82b7-f2ba38496583} - File not found
O16 - DPF: {6414512B-B978-451D-A0D8-FCFDF33E833C} http://update.microsoft.com/windowsupdate/v6/V5Controls/en/x86/client/wuweb_site.cab?1250873535343 (WUWebControl Class)
O16 - DPF: {8AD9C840-044E-11D1-B3E9-00805F499D93} http://java.sun.com/update/1.6.0/jinstall-1_6_0_23-windows-i586.cab (Java Plug-in 1.6.0_23)
O16 - DPF: {CAFEEFAC-0016-0000-0007-ABCDEFFEDCBA} http://java.sun.com/update/1.6.0/jinstall-1_6_0_07-windows-i586.cab (Reg Error: Key error.)
O16 - DPF: {CAFEEFAC-0016-0000-0023-ABCDEFFEDCBA} http://java.sun.com/update/1.6.0/jinstall-1_6_0_23-windows-i586.cab (Java Plug-in 1.6.0_23)
O16 - DPF: {CAFEEFAC-FFFF-FFFF-FFFF-ABCDEFFEDCBA} http://java.sun.com/update/1.6.0/jinstall-1_6_0_23-windows-i586.cab (Java Plug-in 1.6.0_23)
O16 - DPF: {D27CDB6E-AE6D-11CF-96B8-444553540000} http://fpdownload2.macromedia.com/get/shockwave/cabs/flash/swflash.cab (Shockwave Flash Object)
O17 - HKLM\System\CCS\Services\Tcpip\Parameters: DhcpNameServer = 194.204.159.1 194.204.152.34 8.8.8.8 8.8.4.4
O18 - Protocol\Handler\skype4com {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - H:\Program Files\Common Files\Skype\Skype4COM.dll (Skype Technologies)
O20 - HKLM Winlogon: Shell - (Explorer.exe) - H:\WINDOWS\explorer.exe (Microsoft Corporation)
O20 - Winlogon\Notify\igfxcui: DllName - igfxdev.dll - H:\WINDOWS\System32\igfxdev.dll (Intel Corporation)
O24 - Desktop Components:0 (Moja bieżąca strona główna) - About:Home
O24 - Desktop WallPaper: H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\Microsoft\Wallpaper1.bmp
O24 - Desktop BackupWallPaper: H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\Microsoft\Wallpaper1.bmp
O32 - HKLM CDRom: AutoRun - 1
O32 - AutoRun File - [2009-04-29 10:02:01 | 000,000,055 | R--- | M] () - G:\autorun.inf -- [ CDFS ]
O33 - MountPoints2\{047df2de-dc83-11df-bc1e-00241d3f7c6f}\Shell\AutoRun\command - "" = K:\jofk1wf.exe
O33 - MountPoints2\{047df2de-dc83-11df-bc1e-00241d3f7c6f}\Shell\open\Command - "" = K:\jofk1wf.exe
O33 - MountPoints2\{af8cd923-7635-11de-a882-806d6172696f}\Shell - "" = AutoRun
O33 - MountPoints2\{af8cd923-7635-11de-a882-806d6172696f}\Shell\AutoRun\command - "" = G:\BlueBirds.exe -- [2009-04-29 10:02:01 | 000,270,336 | R--- | M] (LG Electronics)
O34 - HKLM BootExecute: (autocheck autochk *) - File not found
O35 - HKLM\..comfile [open] -- "%1" %*
O35 - HKLM\..exefile [open] -- "%1" %*
O37 - HKLM\...com [@ = comfile] -- "%1" %*
O37 - HKLM\...exe [@ = exefile] -- "%1" %*
[color=#E56717]========== Files/Folders - Created Within 30 Days ==========[/color]
[2011-02-05 16:05:10 | 000,000,000 | ---D | C] -- H:\Program Files\Trend Micro
[2011-02-05 16:05:10 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Menu Start\Programy\HiJackThis
[2011-02-04 17:51:33 | 000,000,000 | ---D | C] -- H:\Documents and Settings\All Users\Menu Start\Programy\PremiumSoft
[2011-02-04 17:51:29 | 000,000,000 | ---D | C] -- H:\Program Files\PremiumSoft
[2011-02-04 17:51:04 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Menu Start\Programy\WinRAR
[2011-02-04 17:51:04 | 000,000,000 | ---D | C] -- H:\Documents and Settings\All Users\Menu Start\Programy\WinRAR
[2011-01-29 00:29:26 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Menu Start\Programy\Fraps
[2011-01-28 12:53:49 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Dane aplikacji\WhatPulse
[2011-01-28 12:53:46 | 000,000,000 | ---D | C] -- H:\Program Files\WhatPulse
[2011-01-23 22:32:25 | 000,000,000 | ---D | C] -- H:\Program Files\Metin2
[2011-01-19 20:32:52 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Dane aplikacji\Help
[2011-01-14 17:52:56 | 000,000,000 | ---D | C] -- H:\Documents and Settings\All Users\Menu Start\Programy\Metin2
[3 H:\WINDOWS\*.tmp files -> H:\WINDOWS\*.tmp -> ]
[color=#E56717]========== Files - Modified Within 30 Days ==========[/color]
[2011-02-05 16:27:00 | 000,001,132 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskUserS-1-5-21-1454471165-1409082233-1801674531-1005UA.job
[2011-02-05 16:05:10 | 000,001,980 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\HiJackThis.lnk
[2011-02-05 15:37:00 | 000,001,044 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskMachineUA.job
[2011-02-05 12:55:40 | 000,939,138 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\frajer.bmp
[2011-02-05 12:30:21 | 000,002,302 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Google Chrome.lnk
[2011-02-05 10:52:23 | 000,000,472 | -H-- | M] () -- H:\WINDOWS\tasks\User_Feed_Synchronization-{756BAA9C-C9BE-4123-BF88-D768FCA4CE30}.job
[2011-02-05 10:50:39 | 000,001,040 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskMachineCore.job
[2011-02-05 10:50:21 | 000,002,048 | --S- | M] () -- H:\WINDOWS\bootstat.dat
[2011-02-04 22:27:00 | 000,001,080 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskUserS-1-5-21-1454471165-1409082233-1801674531-1005Core.job
[2011-02-04 20:26:45 | 000,000,531 | ---- | M] () -- H:\Documents and Settings\All Users\Pulpit\Metin2.lnk
[2011-02-04 17:51:33 | 000,000,872 | ---- | M] () -- H:\Documents and Settings\All Users\Pulpit\Navicat for MySQL.lnk
[2011-02-03 14:38:19 | 000,013,646 | ---- | M] () -- H:\WINDOWS\System32\wpa.dbl
[2011-02-01 19:55:10 | 000,015,493 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.odt
[2011-02-01 19:51:55 | 000,016,384 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.doc
[2011-01-30 22:29:47 | 000,035,840 | ---- | M] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\DCBC2A71-70D8-4DAN-EHR8-E0D61DEA3FDF.ini
[3 H:\WINDOWS\*.tmp files -> H:\WINDOWS\*.tmp -> ]
[color=#E56717]========== Files Created - No Company Name ==========[/color]
[2011-02-05 16:05:10 | 000,001,980 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\HiJackThis.lnk
[2011-02-05 12:55:40 | 000,939,138 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\frajer.bmp
[2011-02-04 17:51:33 | 000,000,872 | ---- | C] () -- H:\Documents and Settings\All Users\Pulpit\Navicat for MySQL.lnk
[2011-02-01 19:55:10 | 000,015,493 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.odt
[2011-02-01 19:51:46 | 000,016,384 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.doc
[2011-01-27 19:35:19 | 000,000,000 | ---- | C] () -- H:\Documents and Settings\David\Masz ty fajfusie.doc
[2011-01-23 13:23:16 | 000,000,000 | ---- | C] () -- H:\Documents and Settings\David\Muza do metka.rar
[2011-01-22 22:44:03 | 000,000,000 | ---- | C] () -- H:\Documents and Settings\David\bez tytułu.PNG
[2011-01-16 19:39:32 | 000,000,000 | ---- | C] () -- H:\Documents and Settings\David\dooffy-design-net-other-windowx-vista-003-1024.jpg
[2010-12-24 08:34:16 | 000,021,840 | ---- | C] () -- H:\WINDOWS\System32\SIntfNT.dll
[2010-12-24 08:34:16 | 000,017,212 | ---- | C] () -- H:\WINDOWS\System32\SIntf32.dll
[2010-12-24 08:34:16 | 000,012,067 | ---- | C] () -- H:\WINDOWS\System32\SIntf16.dll
[2010-12-11 19:18:12 | 000,354,816 | ---- | C] () -- H:\WINDOWS\System32\psisdecd.dll
[2010-12-11 19:10:04 | 000,717,296 | ---- | C] () -- H:\WINDOWS\System32\drivers\sptd.sys
[2010-11-07 10:16:44 | 000,000,600 | ---- | C] () -- H:\Documents and Settings\David\Dane aplikacji\PUTTY.RND
[2010-10-28 11:43:28 | 000,000,712 | ---- | C] () -- H:\WINDOWS\Solitaire.ini
[2010-10-21 16:02:56 | 000,000,600 | ---- | C] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\PUTTY.RND
[2010-10-10 11:17:07 | 001,712,128 | ---- | C] () -- H:\WINDOWS\System32\libmysql_d.dll
[2010-10-01 22:08:33 | 000,000,064 | ---- | C] () -- H:\Documents and Settings\David\Dane aplikacji\AVSMediaPlayer.m3u
[2010-10-01 22:06:53 | 000,524,288 | ---- | C] () -- H:\WINDOWS\System32\xvidcore.dll
[2010-10-01 22:06:53 | 000,139,264 | ---- | C] () -- H:\WINDOWS\System32\xvidvfw.dll
[2010-10-01 17:05:47 | 000,035,840 | ---- | C] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\DCBC2A71-70D8-4DAN-EHR8-E0D61DEA3FDF.ini
[2009-10-15 09:29:21 | 000,000,228 | ---- | C] () -- H:\WINDOWS\AvDetected.ini
[2009-09-03 12:51:46 | 000,000,116 | ---- | C] () -- H:\WINDOWS\NeroDigital.ini
[2009-07-21 21:47:27 | 000,004,293 | ---- | C] () -- H:\WINDOWS\ODBCINST.INI
[2009-07-21 21:27:27 | 000,165,376 | ---- | C] () -- H:\WINDOWS\System32\unrar.dll
[2009-07-21 20:42:29 | 000,167,936 | ---- | C] () -- H:\WINDOWS\System32\hpsfs.dll
[color=#E56717]========== LOP Check ==========[/color]
[2010-12-28 10:45:19 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Alwil Software
[2009-10-15 09:33:42 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Backup
[2010-10-01 14:28:36 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Gadu-Gadu 10
[2010-10-01 16:15:14 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\ipla
[2010-11-28 02:01:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\OpenFM
[2010-10-02 13:36:37 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\PMB Files
[2010-04-26 13:23:34 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\TEMP
[2010-02-11 13:34:07 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\TERMINAL Studio
[2010-12-11 19:09:52 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\DAEMON Tools
[2010-10-16 22:25:07 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\DeepBurner Pro
[2011-01-29 12:10:40 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\FileZilla
[2011-01-04 19:25:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\flightgear.org
[2011-01-12 22:55:15 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Gadu-Gadu 10
[2010-12-04 00:12:37 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\gtk-2.0
[2010-10-23 08:48:41 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\ipla
[2010-10-30 14:03:14 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Notepad++
[2010-10-01 14:28:40 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Nowe Gadu-Gadu
[2010-11-14 11:13:17 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\OpenFM
[2010-10-04 19:27:11 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\OpenOfficePLHome
[2011-01-04 19:16:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Subversion
[2011-01-30 01:14:30 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\WhatPulse
[2011-02-05 10:52:23 | 000,000,472 | -H-- | M] () -- H:\WINDOWS\Tasks\User_Feed_Synchronization-{756BAA9C-C9BE-4123-BF88-D768FCA4CE30}.job
[color=#E56717]========== Purity Check ==========[/color]
[color=#E56717]========== Alternate Data Streams ==========[/color]
@Alternate Data Stream - 99 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:C22674B6
@Alternate Data Stream - 109 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:A745DB5D
@Alternate Data Stream - 102 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:48081133
< End of report >
[2011-02-05 16:27:00 | 000,001,132 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskUserS-1-5-21-1454471165-1409082233-1801674531-1005UA.job
[2011-02-05 16:05:10 | 000,001,980 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\HiJackThis.lnk
[2011-02-05 15:37:00 | 000,001,044 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskMachineUA.job
[2011-02-05 12:55:40 | 000,939,138 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\frajer.bmp
[2011-02-05 12:30:21 | 000,002,302 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Google Chrome.lnk
[2011-02-05 10:52:23 | 000,000,472 | -H-- | M] () -- H:\WINDOWS\tasks\User_Feed_Synchronization-{756BAA9C-C9BE-4123-BF88-D768FCA4CE30}.job
[2011-02-05 10:50:39 | 000,001,040 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskMachineCore.job
[2011-02-05 10:50:21 | 000,002,048 | --S- | M] () -- H:\WINDOWS\bootstat.dat
[2011-02-04 22:27:00 | 000,001,080 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskUserS-1-5-21-1454471165-1409082233-1801674531-1005Core.job
[2011-02-04 20:26:45 | 000,000,531 | ---- | M] () -- H:\Documents and Settings\All Users\Pulpit\Metin2.lnk
[2011-02-04 17:51:33 | 000,000,872 | ---- | M] () -- H:\Documents and Settings\All Users\Pulpit\Navicat for MySQL.lnk
[2011-02-03 14:38:19 | 000,013,646 | ---- | M] () -- H:\WINDOWS\System32\wpa.dbl
[2011-02-01 19:55:10 | 000,015,493 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.odt
[2011-02-01 19:51:55 | 000,016,384 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.doc
[2011-01-30 22:29:47 | 000,035,840 | ---- | M] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\DCBC2A71-70D8-4DAN-EHR8-E0D61DEA3FDF.ini
[2011-01-27 19:35:19 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\Masz ty fajfusie.doc
[2011-01-26 12:09:31 | 000,000,116 | ---- | M] () -- H:\WINDOWS\NeroDigital.ini
[2011-01-24 19:57:42 | 703,901,407 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\PolandiaMt2 Client.exe
[2011-01-24 17:05:53 | 000,004,192 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Nyczkua2.JPG
[2011-01-24 17:02:28 | 000,006,823 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Nyczkua.JPG
[2011-01-24 11:47:58 | 000,492,304 | ---- | M] () -- H:\WINDOWS\System32\perfh015.dat
[2011-01-24 11:47:58 | 000,433,166 | ---- | M] () -- H:\WINDOWS\System32\perfh009.dat
[2011-01-24 11:47:58 | 000,084,596 | ---- | M] () -- H:\WINDOWS\System32\perfc015.dat
[2011-01-24 11:47:58 | 000,068,122 | ---- | M] () -- H:\WINDOWS\System32\perfc009.dat
[2011-01-23 13:23:51 | 000,387,072 | ---- | M] () -- H:\Documents and Settings\David\Moje dokumenty\Muza do metka.rar
[2011-01-23 13:23:16 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\Muza do metka.rar
[2011-01-22 22:44:25 | 000,540,647 | ---- | M] () -- H:\Documents and Settings\David\Moje dokumenty\bez tytułu.PNG
[2011-01-22 22:44:03 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\bez tytułu.PNG
[2011-01-22 13:57:42 | 070,990,645 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\[GamePlay]PolandiaMt2.wmv
[2011-01-22 01:55:36 | 000,019,898 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\xstCMR0e9wg26llCQuP-.0.jpg
[2011-01-18 19:06:04 | 000,014,699 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\logo.JPG
[2011-01-16 19:39:32 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\dooffy-design-net-other-windowx-vista-003-1024.jpg
[2011-01-15 14:18:05 | 183,001,585 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Nowy folder.rar
[2011-01-15 11:59:12 | 000,000,600 | ---- | M] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\PUTTY.RND
[2011-01-08 16:40:27 | 000,057,078 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\moge.bmp
[3 H:\WINDOWS\*.tmp files -> H:\WINDOWS\*.tmp -> ]
[color=#E56717]========== LOP Check ==========[/color]
[2010-12-28 10:45:19 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Alwil Software
[2009-10-15 09:33:42 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Backup
[2010-10-01 14:28:36 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Gadu-Gadu 10
[2010-10-01 16:15:14 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\ipla
[2010-11-28 02:01:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\OpenFM
[2010-10-02 13:36:37 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\PMB Files
[2010-04-26 13:23:34 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\TEMP
[2010-02-11 13:34:07 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\TERMINAL Studio
[2010-12-11 19:09:52 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\DAEMON Tools
[2010-10-16 22:25:07 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\DeepBurner Pro
[2011-01-29 12:10:40 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\FileZilla
[2011-01-04 19:25:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\flightgear.org
[2011-01-12 22:55:15 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Gadu-Gadu 10
[2010-12-04 00:12:37 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\gtk-2.0
[2010-10-23 08:48:41 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\ipla
[2010-10-30 14:03:14 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Notepad++
[2010-10-01 14:28:40 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Nowe Gadu-Gadu
[2010-11-14 11:13:17 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\OpenFM
[2010-10-04 19:27:11 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\OpenOfficePLHome
[2011-01-04 19:16:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Subversion
[2011-01-30 01:14:30 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\WhatPulse
[2011-02-05 10:52:23 | 000,000,472 | -H-- | M] () -- H:\WINDOWS\Tasks\User_Feed_Synchronization-{756BAA9C-C9BE-4123-BF88-D768FCA4CE30}.job
[color=#E56717]========== Purity Check ==========[/color]
[color=#E56717]========== Alternate Data Streams ==========[/color]
@Alternate Data Stream - 99 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:C22674B6
@Alternate Data Stream - 109 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:A745DB5D
@Alternate Data Stream - 102 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:48081133
< End of report >
PRC - H:\Documents and Settings\David\Moje dokumenty\Downloads\OTL.exe (OldTimer Tools)
PRC - H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\Google\Chrome\Application\chrome.exe (Google Inc.)
PRC - H:\Program Files\Alwil Software\Avast5\AvastUI.exe (AVAST Software)
PRC - H:\Program Files\Alwil Software\Avast5\AvastSvc.exe (AVAST Software)
PRC - H:\Program Files\Gadu-Gadu 10\gg.exe (GG Network S.A.)
PRC - H:\Program Files\Winamp\winampa.exe (Nullsoft, Inc.)
PRC - I:\Priv\hamachi-2-ui.exe (LogMeIn Inc.)
PRC - I:\Priv\hamachi-2.exe (LogMeIn Inc.)
PRC - I:\GM panel\Metin2\metin2.bin ()
PRC - I:\Server\xampp\xampp\mysql\bin\mysqld.exe (MySQL AB)
PRC - I:\Server\xampp\xampp\xampp-control.exe (Apache Friends)
PRC - I:\Server\xampp\xampp\apache\bin\httpd.exe (Apache Software Foundation)
PRC - H:\Program Files\PremiumSoft\Navicat 8.1 MySQL\navicat.exe (PremiumSoft CyberTech Ltd.)
PRC - I:\Server\Virtual PC.exe (Microsoft Corporation)
PRC - H:\WINDOWS\explorer.exe (Microsoft Corporation)
[color=#E56717]========== Modules (SafeList) ==========[/color]
MOD - H:\Documents and Settings\David\Moje dokumenty\Downloads\OTL.exe (OldTimer Tools)
MOD - H:\Program Files\Alwil Software\Avast5\snxhk.dll (AVAST Software)
MOD - H:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\comctl32.dll (Microsoft Corporation)
[color=#E56717]========== Win32 Services (SafeList) ==========[/color]
SRV - (HidServ) -- File not found
SRV - (AppMgmt) -- File not found
SRV - (avast! Antivirus) -- H:\Program Files\Alwil Software\Avast5\AvastSvc.exe (AVAST Software)
SRV - (Hamachi2Svc) -- I:\Priv\hamachi-2.exe (LogMeIn Inc.)
SRV - (Apache2.2) -- I:\Server\xampp\xampp\apache\bin\httpd.exe (Apache Software Foundation)
[color=#E56717]========== Driver Services (SafeList) ==========[/color]
DRV - (aswSP) -- H:\WINDOWS\System32\drivers\aswSP.sys (AVAST Software)
DRV - (aswTdi) -- H:\WINDOWS\System32\drivers\aswTdi.sys (AVAST Software)
DRV - (aswMon2) -- H:\WINDOWS\System32\drivers\aswmon2.sys (AVAST Software)
DRV - (aswRdr) -- H:\WINDOWS\System32\drivers\aswRdr.sys (AVAST Software)
DRV - (Aavmker4) -- H:\WINDOWS\System32\drivers\aavmker4.sys (AVAST Software)
DRV - (aswFsBlk) -- H:\WINDOWS\System32\drivers\aswFsBlk.sys (AVAST Software)
DRV - (sptd) -- H:\WINDOWS\System32\Drivers\sptd.sys ()
DRV - (hamachi) -- H:\WINDOWS\system32\drivers\hamachi.sys (LogMeIn, Inc.)
DRV - (gdrv) -- H:\WINDOWS\gdrv.sys (Windows (R) 2000 DDK provider)
DRV - (IntcAzAudAddService) Service for Realtek HD Audio (WDM) -- H:\WINDOWS\system32\drivers\RtkHDAud.sys (Realtek Semiconductor Corp.)
DRV - (ialm) -- H:\WINDOWS\system32\drivers\igxpmp32.sys (Intel Corporation)
DRV - (RTLE8023xp) -- H:\WINDOWS\system32\drivers\Rtenicxp.sys (Realtek Semiconductor Corporation )
DRV - (HDAudBus) -- H:\WINDOWS\system32\drivers\hdaudbus.sys (Windows (R) Server 2003 DDK provider)
DRV - (vmm) -- H:\WINDOWS\system32\drivers\VMM.sys (Microsoft Corporation)
DRV - (VPCNetS2) -- H:\WINDOWS\system32\drivers\VMNetSrv.sys (Microsoft Corporation)
[color=#E56717]========== Standard Registry (SafeList) ==========[/color]
[color=#E56717]========== Internet Explorer ==========[/color]
IE - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings: "ProxyEnable" = 0
O1 HOSTS File: ([2008-04-15 13:00:00 | 000,000,742 | ---- | M]) - H:\WINDOWS\system32\drivers\etc\hosts
O1 - Hosts: 127.0.0.1 localhost
O2 - BHO: (IEPluginBHO Class) - {F5CC7F02-6F4E-4462-B5B1-394A57FD3E0D} - H:\Documents and Settings\Użytkownik\Dane aplikacji\Nowe Gadu-Gadu\_userdata\ggbho.1.dll (GG Network S.A.)
O3 - HKLM\..\Toolbar: (DAEMON Tools Toolbar) - {32099AAC-C132-4136-9E9A-4E364A424E17} - H:\Program Files\DAEMON Tools Toolbar\DTToolbar.dll ()
O3 - HKCU\..\Toolbar\WebBrowser: (DAEMON Tools Toolbar) - {32099AAC-C132-4136-9E9A-4E364A424E17} - H:\Program Files\DAEMON Tools Toolbar\DTToolbar.dll ()
O4 - HKLM..\Run: [avast5] H:\Program Files\Alwil Software\Avast5\avastUI.exe (AVAST Software)
O4 - HKLM..\Run: [BluetoothAuthenticationAgent] H:\WINDOWS\System32\bthprops.cpl (Microsoft Corporation)
O4 - HKLM..\Run: [LogMeIn Hamachi Ui] I:\Priv\hamachi-2-ui.exe (LogMeIn Inc.)
O4 - HKLM..\Run: [MS32DLL] File not found
O4 - HKLM..\Run: [WebServ] File not found
O4 - HKLM..\Run: [WinampAgent] H:\Program Files\Winamp\winampa.exe (Nullsoft, Inc.)
O4 - HKCU..\Run: [Fraps] File not found
O4 - HKCU..\Run: [Gadu-Gadu 10] H:\Program Files\Gadu-Gadu 10\gg.exe (GG Network S.A.)
O4 - HKCU..\Run: [MSMSGS] File not found
O4 - HKCU..\Run: [NVIDIA driver monitor] File not found
O4 - HKCU..\Run: [WhatPulse] File not found
O6 - HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer: HonorAutoRunSetting = 1
O7 - HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer: NoDriveTypeAutoRun = 145
O9 - Extra 'Tools' menuitem : @xpsp3res.dll,-20001 - {e2e2dd38-d088-4134-82b7-f2ba38496583} - File not found
O16 - DPF: {6414512B-B978-451D-A0D8-FCFDF33E833C} http://update.microsoft.com/windowsupdate/v6/V5Controls/en/x86/client/wuweb_site.cab?1250873535343 (WUWebControl Class)
O16 - DPF: {8AD9C840-044E-11D1-B3E9-00805F499D93} http://java.sun.com/update/1.6.0/jinstall-1_6_0_23-windows-i586.cab (Java Plug-in 1.6.0_23)
O16 - DPF: {CAFEEFAC-0016-0000-0007-ABCDEFFEDCBA} http://java.sun.com/update/1.6.0/jinstall-1_6_0_07-windows-i586.cab (Reg Error: Key error.)
O16 - DPF: {CAFEEFAC-0016-0000-0023-ABCDEFFEDCBA} http://java.sun.com/update/1.6.0/jinstall-1_6_0_23-windows-i586.cab (Java Plug-in 1.6.0_23)
O16 - DPF: {CAFEEFAC-FFFF-FFFF-FFFF-ABCDEFFEDCBA} http://java.sun.com/update/1.6.0/jinstall-1_6_0_23-windows-i586.cab (Java Plug-in 1.6.0_23)
O16 - DPF: {D27CDB6E-AE6D-11CF-96B8-444553540000} http://fpdownload2.macromedia.com/get/shockwave/cabs/flash/swflash.cab (Shockwave Flash Object)
O17 - HKLM\System\CCS\Services\Tcpip\Parameters: DhcpNameServer = 194.204.159.1 194.204.152.34 8.8.8.8 8.8.4.4
O18 - Protocol\Handler\skype4com {FFC8B962-9B40-4DFF-9458-1830C7DD7F5D} - H:\Program Files\Common Files\Skype\Skype4COM.dll (Skype Technologies)
O20 - HKLM Winlogon: Shell - (Explorer.exe) - H:\WINDOWS\explorer.exe (Microsoft Corporation)
O20 - Winlogon\Notify\igfxcui: DllName - igfxdev.dll - H:\WINDOWS\System32\igfxdev.dll (Intel Corporation)
O24 - Desktop Components:0 (Moja bieżąca strona główna) - About:Home
O24 - Desktop WallPaper: H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\Microsoft\Wallpaper1.bmp
O24 - Desktop BackupWallPaper: H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\Microsoft\Wallpaper1.bmp
O32 - HKLM CDRom: AutoRun - 1
O32 - AutoRun File - [2009-04-29 10:02:01 | 000,000,055 | R--- | M] () - G:\autorun.inf -- [ CDFS ]
O33 - MountPoints2\{047df2de-dc83-11df-bc1e-00241d3f7c6f}\Shell\AutoRun\command - "" = K:\jofk1wf.exe
O33 - MountPoints2\{047df2de-dc83-11df-bc1e-00241d3f7c6f}\Shell\open\Command - "" = K:\jofk1wf.exe
O33 - MountPoints2\{af8cd923-7635-11de-a882-806d6172696f}\Shell - "" = AutoRun
O33 - MountPoints2\{af8cd923-7635-11de-a882-806d6172696f}\Shell\AutoRun\command - "" = G:\BlueBirds.exe -- [2009-04-29 10:02:01 | 000,270,336 | R--- | M] (LG Electronics)
O34 - HKLM BootExecute: (autocheck autochk *) - File not found
O35 - HKLM\..comfile [open] -- "%1" %*
O35 - HKLM\..exefile [open] -- "%1" %*
O37 - HKLM\...com [@ = comfile] -- "%1" %*
O37 - HKLM\...exe [@ = exefile] -- "%1" %*
[color=#E56717]========== Files/Folders - Created Within 30 Days ==========[/color]
[2011-02-05 16:05:10 | 000,000,000 | ---D | C] -- H:\Program Files\Trend Micro
[2011-02-05 16:05:10 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Menu Start\Programy\HiJackThis
[2011-02-04 17:51:33 | 000,000,000 | ---D | C] -- H:\Documents and Settings\All Users\Menu Start\Programy\PremiumSoft
[2011-02-04 17:51:29 | 000,000,000 | ---D | C] -- H:\Program Files\PremiumSoft
[2011-02-04 17:51:04 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Menu Start\Programy\WinRAR
[2011-02-04 17:51:04 | 000,000,000 | ---D | C] -- H:\Documents and Settings\All Users\Menu Start\Programy\WinRAR
[2011-01-28 13:07:55 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Pulpit\Nowy folder
[2011-01-24 21:32:12 | 000,000,000 | ---D | C] -- H:\Documents and Settings\David\Moje dokumenty\Nowy folder
[3 H:\WINDOWS\*.tmp files -> H:\WINDOWS\*.tmp -> ]
[color=#E56717]========== Files - Modified Within 30 Days ==========[/color]
[2011-02-05 16:27:00 | 000,001,132 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskUserS-1-5-21-1454471165-1409082233-1801674531-1005UA.job
[2011-02-05 16:05:10 | 000,001,980 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\HiJackThis.lnk
[2011-02-05 15:37:00 | 000,001,044 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskMachineUA.job
[2011-02-05 12:55:40 | 000,939,138 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\frajer.bmp
[2011-02-05 12:30:21 | 000,002,302 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Google Chrome.lnk
[2011-02-05 10:52:23 | 000,000,472 | -H-- | M] () -- H:\WINDOWS\tasks\User_Feed_Synchronization-{756BAA9C-C9BE-4123-BF88-D768FCA4CE30}.job
[2011-02-05 10:50:39 | 000,001,040 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskMachineCore.job
[2011-02-05 10:50:21 | 000,002,048 | --S- | M] () -- H:\WINDOWS\bootstat.dat
[2011-02-04 22:27:00 | 000,001,080 | ---- | M] () -- H:\WINDOWS\tasks\GoogleUpdateTaskUserS-1-5-21-1454471165-1409082233-1801674531-1005Core.job
[2011-02-04 20:26:45 | 000,000,531 | ---- | M] () -- H:\Documents and Settings\All Users\Pulpit\Metin2.lnk
[2011-02-04 17:51:33 | 000,000,872 | ---- | M] () -- H:\Documents and Settings\All Users\Pulpit\Navicat for MySQL.lnk
[2011-02-03 14:38:19 | 000,013,646 | ---- | M] () -- H:\WINDOWS\System32\wpa.dbl
[2011-02-01 19:55:10 | 000,015,493 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.odt
[2011-02-01 19:51:55 | 000,016,384 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.doc
[2011-01-30 22:29:47 | 000,035,840 | ---- | M] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\DCBC2A71-70D8-4DAN-EHR8-E0D61DEA3FDF.ini
[2011-01-27 19:35:19 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\Masz ty fajfusie.doc
[2011-01-26 12:09:31 | 000,000,116 | ---- | M] () -- H:\WINDOWS\NeroDigital.ini
[2011-01-24 19:57:42 | 703,901,407 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\PolandiaMt2 Client.exe
[2011-01-24 17:05:53 | 000,004,192 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Nyczkua2.JPG
[2011-01-24 17:02:28 | 000,006,823 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Nyczkua.JPG
[2011-01-24 11:47:58 | 000,492,304 | ---- | M] () -- H:\WINDOWS\System32\perfh015.dat
[2011-01-24 11:47:58 | 000,433,166 | ---- | M] () -- H:\WINDOWS\System32\perfh009.dat
[2011-01-24 11:47:58 | 000,084,596 | ---- | M] () -- H:\WINDOWS\System32\perfc015.dat
[2011-01-24 11:47:58 | 000,068,122 | ---- | M] () -- H:\WINDOWS\System32\perfc009.dat
[2011-01-23 13:23:51 | 000,387,072 | ---- | M] () -- H:\Documents and Settings\David\Moje dokumenty\Muza do metka.rar
[2011-01-23 13:23:16 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\Muza do metka.rar
[2011-01-22 22:44:25 | 000,540,647 | ---- | M] () -- H:\Documents and Settings\David\Moje dokumenty\bez tytułu.PNG
[2011-01-22 22:44:03 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\bez tytułu.PNG
[2011-01-22 13:57:42 | 070,990,645 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\[GamePlay]PolandiaMt2.wmv
[2011-01-22 01:55:36 | 000,019,898 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\xstCMR0e9wg26llCQuP-.0.jpg
[2011-01-18 19:06:04 | 000,014,699 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\logo.JPG
[2011-01-16 19:39:32 | 000,000,000 | ---- | M] () -- H:\Documents and Settings\David\dooffy-design-net-other-windowx-vista-003-1024.jpg
[2011-01-15 14:18:05 | 183,001,585 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\Nowy folder.rar
[2011-01-15 11:59:12 | 000,000,600 | ---- | M] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\PUTTY.RND
[2011-01-08 16:40:27 | 000,057,078 | ---- | M] () -- H:\Documents and Settings\David\Pulpit\moge.bmp
[3 H:\WINDOWS\*.tmp files -> H:\WINDOWS\*.tmp -> ]
[color=#E56717]========== Files Created - No Company Name ==========[/color]
[2011-02-05 16:05:10 | 000,001,980 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\HiJackThis.lnk
[2011-02-05 12:55:40 | 000,939,138 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\frajer.bmp
[2011-02-04 17:51:33 | 000,000,872 | ---- | C] () -- H:\Documents and Settings\All Users\Pulpit\Navicat for MySQL.lnk
[2011-02-01 19:55:10 | 000,015,493 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.odt
[2011-02-01 19:51:46 | 000,016,384 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\CV Łukasz Dawidowski.doc
[2011-01-24 21:27:53 | 703,901,407 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\PolandiaMt2 Client.exe
[2011-01-24 17:05:53 | 000,004,192 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\Nyczkua2.JPG
[2011-01-24 17:02:28 | 000,006,823 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\Nyczkua.JPG
[2011-01-23 13:23:34 | 000,387,072 | ---- | C] () -- H:\Documents and Settings\David\Moje dokumenty\Muza do metka.rar
[2011-01-22 22:44:06 | 000,540,647 | ---- | C] () -- H:\Documents and Settings\David\Moje dokumenty\bez tytułu.PNG
[2011-01-22 13:44:27 | 070,990,645 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\[GamePlay]PolandiaMt2.wmv
[2011-01-22 01:54:51 | 000,019,898 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\xstCMR0e9wg26llCQuP-.0.jpg
[2011-01-18 19:06:04 | 000,014,699 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\logo.JPG
[2011-01-15 14:09:08 | 183,001,585 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\Nowy folder.rar
[2011-01-14 17:52:57 | 000,000,531 | ---- | C] () -- H:\Documents and Settings\All Users\Pulpit\Metin2.lnk
[2011-01-08 16:40:27 | 000,057,078 | ---- | C] () -- H:\Documents and Settings\David\Pulpit\moge.bmp
[2010-12-24 08:34:16 | 000,021,840 | ---- | C] () -- H:\WINDOWS\System32\SIntfNT.dll
[2010-12-24 08:34:16 | 000,017,212 | ---- | C] () -- H:\WINDOWS\System32\SIntf32.dll
[2010-12-24 08:34:16 | 000,012,067 | ---- | C] () -- H:\WINDOWS\System32\SIntf16.dll
[2010-12-11 19:18:12 | 000,354,816 | ---- | C] () -- H:\WINDOWS\System32\psisdecd.dll
[2010-12-11 19:10:04 | 000,717,296 | ---- | C] () -- H:\WINDOWS\System32\drivers\sptd.sys
[2010-11-07 10:16:44 | 000,000,600 | ---- | C] () -- H:\Documents and Settings\David\Dane aplikacji\PUTTY.RND
[2010-10-28 11:43:28 | 000,000,712 | ---- | C] () -- H:\WINDOWS\Solitaire.ini
[2010-10-21 16:02:56 | 000,000,600 | ---- | C] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\PUTTY.RND
[2010-10-10 11:17:07 | 001,712,128 | ---- | C] () -- H:\WINDOWS\System32\libmysql_d.dll
[2010-10-01 22:08:33 | 000,000,064 | ---- | C] () -- H:\Documents and Settings\David\Dane aplikacji\AVSMediaPlayer.m3u
[2010-10-01 22:06:53 | 000,524,288 | ---- | C] () -- H:\WINDOWS\System32\xvidcore.dll
[2010-10-01 22:06:53 | 000,139,264 | ---- | C] () -- H:\WINDOWS\System32\xvidvfw.dll
[2010-10-01 17:05:47 | 000,035,840 | ---- | C] () -- H:\Documents and Settings\David\Ustawienia lokalne\Dane aplikacji\DCBC2A71-70D8-4DAN-EHR8-E0D61DEA3FDF.ini
[2009-10-15 09:29:21 | 000,000,228 | ---- | C] () -- H:\WINDOWS\AvDetected.ini
[2009-09-03 12:51:46 | 000,000,116 | ---- | C] () -- H:\WINDOWS\NeroDigital.ini
[2009-07-21 21:47:27 | 000,004,293 | ---- | C] () -- H:\WINDOWS\ODBCINST.INI
[2009-07-21 21:27:27 | 000,165,376 | ---- | C] () -- H:\WINDOWS\System32\unrar.dll
[2009-07-21 20:42:29 | 000,167,936 | ---- | C] () -- H:\WINDOWS\System32\hpsfs.dll
[color=#E56717]========== LOP Check ==========[/color]
[2010-12-28 10:45:19 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Alwil Software
[2009-10-15 09:33:42 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Backup
[2010-10-01 14:28:36 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\Gadu-Gadu 10
[2010-10-01 16:15:14 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\ipla
[2010-11-28 02:01:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\OpenFM
[2010-10-02 13:36:37 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\PMB Files
[2010-04-26 13:23:34 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\TEMP
[2010-02-11 13:34:07 | 000,000,000 | ---D | M] -- H:\Documents and Settings\All Users\Dane aplikacji\TERMINAL Studio
[2010-12-11 19:09:52 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\DAEMON Tools
[2010-10-16 22:25:07 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\DeepBurner Pro
[2011-01-29 12:10:40 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\FileZilla
[2011-01-04 19:25:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\flightgear.org
[2011-01-12 22:55:15 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Gadu-Gadu 10
[2010-12-04 00:12:37 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\gtk-2.0
[2010-10-23 08:48:41 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\ipla
[2010-10-30 14:03:14 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Notepad++
[2010-10-01 14:28:40 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Nowe Gadu-Gadu
[2010-11-14 11:13:17 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\OpenFM
[2010-10-04 19:27:11 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\OpenOfficePLHome
[2011-01-04 19:16:48 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\Subversion
[2011-01-30 01:14:30 | 000,000,000 | ---D | M] -- H:\Documents and Settings\David\Dane aplikacji\WhatPulse
[2011-02-05 10:52:23 | 000,000,472 | -H-- | M] () -- H:\WINDOWS\Tasks\User_Feed_Synchronization-{756BAA9C-C9BE-4123-BF88-D768FCA4CE30}.job
[color=#E56717]========== Purity Check ==========[/color]
[color=#E56717]========== Alternate Data Streams ==========[/color]
@Alternate Data Stream - 99 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:C22674B6
@Alternate Data Stream - 109 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:A745DB5D
@Alternate Data Stream - 102 bytes -> H:\Documents and Settings\All Users\Dane aplikacji\TEMP:48081133
< End of report >
OTL Extras logfile created on: 2011-02-05 16:29:51 - Run 1
OTL by OldTimer - Version 3.2.20.6 Folder = H:\Documents and Settings\David\Moje dokumenty\Downloads
Windows XP Home Edition Dodatek Service Pack 3 (Version = 5.1.2600) - Type = NTWorkstation
Internet Explorer (Version = 8.0.6001.18702)
Locale: 00000415 | Country: Polska | Language: PLK | Date Format: yyyy-MM-dd
2,00 Gb Total Physical Memory | 1,00 Gb Available Physical Memory | 52,00% Memory free
4,00 Gb Paging File | 3,00 Gb Available in Paging File | 77,00% Paging File free
Paging file location(s): H:\pagefile.sys 2046 4092 [binary data]
%SystemDrive% = H: | %SystemRoot% = H:\WINDOWS | %ProgramFiles% = H:\Program Files
Drive G: | 0,38 Mb Total Space | 0,00 Mb Free Space | 0,00% Space Free | Partition Type: CDFS
Drive H: | 48,83 Gb Total Space | 19,72 Gb Free Space | 40,39% Space Free | Partition Type: NTFS
Drive I: | 119,87 Gb Total Space | 104,55 Gb Free Space | 87,22% Space Free | Partition Type: NTFS
Drive J: | 129,38 Gb Total Space | 123,75 Gb Free Space | 95,65% Space Free | Partition Type: NTFS
Computer Name: ADMIN-AD17573EC | User Name: David | Logged in as Administrator.
Boot Mode: Normal | Scan Mode: Current user | Quick Scan
Company Name Whitelist: On | Skip Microsoft Files: On | No Company Name Whitelist: On | File Age = 30 Days
[color=#E56717]========== Extra Registry (SafeList) ==========[/color]
[color=#E56717]========== File Associations ==========[/color]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\<extension>]
.cpl [@ = cplfile] -- rundll32.exe shell32.dll,Control_RunDLL "%1",%*
[HKEY_CURRENT_USER\SOFTWARE\Classes\<extension>]
.html [@ = ChromeHTML] -- Reg Error: Key error. File not found
[color=#E56717]========== Shell Spawning ==========[/color]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\<key>\shell\[command]\command]
batfile [open] -- "%1" %*
cmdfile [open] -- "%1" %*
comfile [open] -- "%1" %*
cplfile [cplopen] -- rundll32.exe shell32.dll,Control_RunDLL "%1",%*
exefile [open] -- "%1" %*
htmlfile [edit] -- Reg Error: Key error.
piffile [open] -- "%1" %*
regfile [merge] -- Reg Error: Key error.
scrfile [config] -- "%1"
scrfile [install] -- rundll32.exe desk.cpl,InstallScreenSaver %l
scrfile [open] -- "%1" /S
txtfile [edit] -- Reg Error: Key error.
Unknown [openas] -- %SystemRoot%\system32\rundll32.exe %SystemRoot%\system32\shell32.dll,OpenAs_RunDLL %1
Directory [find] -- %SystemRoot%\Explorer.exe (Microsoft Corporation)
Directory [Winamp.Bookmark] -- "H:\Program Files\Winamp\winamp.exe" /BOOKMARK "%1" (Nullsoft, Inc.)
Directory [Winamp.Enqueue] -- "H:\Program Files\Winamp\winamp.exe" /ADD "%1" (Nullsoft, Inc.)
Directory [Winamp.Play] -- "H:\Program Files\Winamp\winamp.exe" "%1" (Nullsoft, Inc.)
Folder [open] -- %SystemRoot%\Explorer.exe /idlist,%I,%L (Microsoft Corporation)
Folder [explore] -- %SystemRoot%\Explorer.exe /e,/idlist,%I,%L (Microsoft Corporation)
Drive [find] -- %SystemRoot%\Explorer.exe (Microsoft Corporation)
[color=#E56717]========== Security Center Settings ==========[/color]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center]
"FirstRunDisabled" = 1
"AntiVirusDisableNotify" = 0
"FirewallDisableNotify" = 0
"UpdatesDisableNotify" = 0
"AntiVirusOverride" = 1
"FirewallOverride" = 0
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\AhnlabAntiVirus]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\ComputerAssociatesAntiVirus]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\KasperskyAntiVirus]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\McAfeeAntiVirus]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\McAfeeFirewall]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\PandaAntiVirus]
"DisableMonitoring" = 0
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\PandaFirewall]
"DisableMonitoring" = 0
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\SophosAntiVirus]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\SymantecAntiVirus]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\SymantecFirewall]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\TinyFirewall]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\TrendAntiVirus]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\TrendFirewall]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center\Monitoring\ZoneLabsFirewall]
[color=#E56717]========== System Restore Settings ==========[/color]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore]
"DisableSR" = 0
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sr]
"Start" = 0
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SrService]
"Start" = 2
[color=#E56717]========== Firewall Settings ==========[/color]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile\GloballyOpenPorts\List]
"58485:TCP" = 58485:TCP:*:Enabled:Pando Media Booster
"58485:UDP" = 58485:UDP:*:Enabled:Pando Media Booster
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile]
"EnableFirewall" = 1
"DoNotAllowExceptions" = 0
"DisableNotifications" = 0
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\GloballyOpenPorts\List]
"1900:UDP" = 1900:UDP:LocalSubNet:Enabled:@xpsp2res.dll,-22007
"2869:TCP" = 2869:TCP:LocalSubNet:Enabled:@xpsp2res.dll,-22008
"139:TCP" = 139:TCP:LocalSubNet:Disabled:@xpsp2res.dll,-22004
"445:TCP" = 445:TCP:LocalSubNet:Disabled:@xpsp2res.dll,-22005
"137:UDP" = 137:UDP:LocalSubNet:Disabled:@xpsp2res.dll,-22001
"138:UDP" = 138:UDP:LocalSubNet:Disabled:@xpsp2res.dll,-22002
"58485:TCP" = 58485:TCP:*:Enabled:Pando Media Booster
"58485:UDP" = 58485:UDP:*:Enabled:Pando Media Booster
"8378:TCP" = 8378:TCP:*:Enabled:League of Legends Launcher
"8378:UDP" = 8378:UDP:*:Enabled:League of Legends Launcher
"8379:TCP" = 8379:TCP:*:Enabled:League of Legends Launcher
"8379:UDP" = 8379:UDP:*:Enabled:League of Legends Launcher
"8380:TCP" = 8380:TCP:*:Enabled:League of Legends Launcher
"8380:UDP" = 8380:UDP:*:Enabled:League of Legends Launcher
[color=#E56717]========== Authorized Applications List ==========[/color]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile\AuthorizedApplications\List]
"%windir%\Network Diagnostic\xpnetdiag.exe" = %windir%\Network Diagnostic\xpnetdiag.exe:*:Enabled:@xpsp3res.dll,-20000
"H:\Program Files\Pando Networks\Media Booster\PMB.exe" = H:\Program Files\Pando Networks\Media Booster\PMB.exe:*:Enabled:Pando Media Booster -- ()
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List]
"%windir%\Network Diagnostic\xpnetdiag.exe" = %windir%\Network Diagnostic\xpnetdiag.exe:*:Enabled:@xpsp3res.dll,-20000
"H:\Program Files\Nowe Gadu-Gadu\gg.exe" = H:\Program Files\Nowe Gadu-Gadu\gg.exe:*:Enabled:Nowe Gadu-Gadu
"I:\Metin2\metin2.bin" = I:\Metin2\metin2.bin:*:Enabled:metin2 -- ()
"I:\Metin2\metin2client.bin" = I:\Metin2\metin2client.bin:*:Enabled:metin2client -- ()
"H:\Program Files\Gadu-Gadu 10\gg.exe" = H:\Program Files\Gadu-Gadu 10\gg.exe:*:Enabled:Gadu-Gadu 10 -- (GG Network S.A.)
"J:\Metin2\ParanoiaMt2 - poland.exe" = J:\Metin2\ParanoiaMt2 - poland.exe:*:Enabled:ParanoiaMt2 - poland
"J:\Paranoia niemiec\Para_Client_30.08.2010 ~New\ParanoiaMt2 - niemiec.exe" = J:\Paranoia niemiec\Para_Client_30.08.2010 ~New\ParanoiaMt2 - niemiec.exe:*:Enabled:ParanoiaMt2 - niemiec
"H:\Program Files\Pando Networks\Media Booster\PMB.exe" = H:\Program Files\Pando Networks\Media Booster\PMB.exe:*:Enabled:Pando Media Booster -- ()
"H:\Riot Games\League of Legends\air\LolClient.exe" = H:\Riot Games\League of Legends\air\LolClient.exe:*:Enabled:League of Legends Lobby
"H:\Riot Games\League of Legends\game\League of Legends.exe" = H:\Riot Games\League of Legends\game\League of Legends.exe:*:Enabled:League of Legends Game Client
"H:\Documents and Settings\David\Pulpit\DragonMt2\DragonMT2.exe" = H:\Documents and Settings\David\Pulpit\DragonMt2\DragonMT2.exe:*:Enabled:DragonMT2
"J:\Metin2\Metin2Mod.bin" = J:\Metin2\Metin2Mod.bin:*:Enabled:Metin2Mod -- ()
"I:\chińcu\mc.exe" = I:\chińcu\mc.exe:*:Enabled:mc
"J:\Metin2\UnityMt2 by 7mateol.exe" = J:\Metin2\UnityMt2 by 7mateol.exe:*:Enabled:UnityMt2 by 7mateol
"I:\Server\PM\PortMap.exe" = I:\Server\PM\PortMap.exe:*:Enabled:PortMap
"J:\Metin2\PolandiaMt2.exe" = J:\Metin2\PolandiaMt2.exe:*:Enabled:PolandiaMt2
"I:\Server\xampp\xampp\mysql\bin\mysqld.exe" = I:\Server\xampp\xampp\mysql\bin\mysqld.exe:*:Enabled:The MySQL Server -- (MySQL AB)
"I:\Server\xampp\xampp\apache\bin\httpd.exe" = I:\Server\xampp\xampp\apache\bin\httpd.exe:*:Enabled:Apache HTTP Server -- (Apache Software Foundation)
"J:\metek\PolandiaMt2.exe" = J:\metek\PolandiaMt2.exe:*:Enabled:PolandiaMt2
"H:\Program Files\WebServ\apache2\bin\WebServ(apache).exe" = H:\Program Files\WebServ\apache2\bin\WebServ(apache).exe:*:Enabled:Apache HTTP Server
"H:\Program Files\WebServ\mysql\bin\WebServ(mysqld).exe" = H:\Program Files\WebServ\mysql\bin\WebServ(mysqld).exe:*:Enabled:WebServ(mysqld)
"I:\Server\xampp\xampp\FileZillaFTP\FileZilla Server.exe" = I:\Server\xampp\xampp\FileZillaFTP\FileZilla Server.exe:*:Enabled:FileZilla Server -- (FileZilla Project)
"H:\Documents and Settings\David\Pulpit\DragonMt2\metin2client.bin" = H:\Documents and Settings\David\Pulpit\DragonMt2\metin2client.bin:*:Enabled:metin2client
"J:\metek1\1.exe" = J:\metek1\1.exe:*:Enabled:1
"J:\Paranoia niemiec\Para_Client_30.08.2010 ~New\PolandiaMt2.exe" = J:\Paranoia niemiec\Para_Client_30.08.2010 ~New\PolandiaMt2.exe:*:Enabled:PolandiaMt2
"J:\metek1\PolandiaMt2.exe" = J:\metek1\PolandiaMt2.exe:*:Enabled:PolandiaMt2
"I:\Server\AppServ\Apache2.2\bin\httpd.exe" = I:\Server\AppServ\Apache2.2\bin\httpd.exe:*:Enabled:Apache HTTP Server
"J:\Metin2\DT_bezhamaka_wy.exe" = J:\Metin2\DT_bezhamaka_wy.exe:*:Enabled:DT_bezhamaka_wy
"J:\metek1\DT_bezhamaka_wy.exe" = J:\metek1\DT_bezhamaka_wy.exe:*:Enabled:DT_bezhamaka_wy
"J:\metek1\HeavenWorld.exe" = J:\metek1\HeavenWorld.exe:*:Enabled:HeavenWorld
"J:\Metin2\heaven.exe" = J:\Metin2\heaven.exe:*:Enabled:heaven
"J:\metek1\LopMT2.exe" = J:\metek1\LopMT2.exe:*:Enabled:LopMT2
"J:\Metin2\metin2client.bin" = J:\Metin2\metin2client.bin:*:Enabled:metin2client -- ()
"I:\CS\hl.exe" = I:\CS\hl.exe:*:Enabled:Half-Life Launcher
"I:\CS\hlds.exe" = I:\CS\hlds.exe:*:Enabled:HLDS Launcher
"H:\Program Files\Counter-Strike 1.6\hl.exe" = H:\Program Files\Counter-Strike 1.6\hl.exe:*:Enabled:Half-Life Launcher
"H:\Program Files\Counter-Strike 1.6\hlds.exe" = H:\Program Files\Counter-Strike 1.6\hlds.exe:*:Enabled:HLDS Launcher
"J:\metek1\Metin2Mod.bin" = J:\metek1\Metin2Mod.bin:*:Enabled:Metin2Mod -- ()
"J:\Guabana Client\guabina.bin" = J:\Guabana Client\guabina.bin:*:Enabled:guabina
"J:\metek1\ParanoiaMt2 - poland.exe" = J:\metek1\ParanoiaMt2 - poland.exe:*:Enabled:ParanoiaMt2 - poland
"H:\Documents and Settings\David\Moje dokumenty\Downloads\image96523489.exe" = h:\windows\nvsvc32.exe:*:Enabled:NVIDIA driver monitor
"J:\NFSMWBE\speed.exe" = J:\NFSMWBE\speed.exe:*:Enabled:speed
"J:\metek1\YT2.exe" = J:\metek1\YT2.exe:*:Enabled:YT2
"H:\Program Files\Java\jre6\bin\java.exe" = H:\Program Files\Java\jre6\bin\java.exe:*:Enabled:Java(TM) Platform SE binary -- (Sun Microsystems, Inc.)
"J:\metek1\Mjyt2 by x070x mpcforum.exe" = J:\metek1\Mjyt2 by x070x mpcforum.exe:*:Enabled:Mjyt2 by x070x mpcforum
"H:\Program Files\FlightGear\bin\Win32\terrasync.exe" = H:\Program Files\FlightGear\bin\Win32\terrasync.exe:*:Enabled:terrasync
"J:\metek1\MaXiM2.exe" = J:\metek1\MaXiM2.exe:*:Enabled:MaXiM2
"I:\GM panel\Metin2\metin2.exe" = I:\GM panel\Metin2\metin2.exe:*:Enabled:metin2 -- (Ymir Entertainment)
"I:\GM panel\Metin2\metin2client.bin" = I:\GM panel\Metin2\metin2client.bin:*:Enabled:metin2client -- ()
"J:\PolandiaKlient\PolandiaMt2.exe" = J:\PolandiaKlient\PolandiaMt2.exe:*:Enabled:PolandiaMt2
"J:\PolandiaMt2Klient\PolandiaMt2.exe" = J:\PolandiaMt2Klient\PolandiaMt2.exe:*:Enabled:PolandiaMt2
"J:\metek1\zeemt2_www.przeklej.pl.exe" = J:\metek1\zeemt2_www.przeklej.pl.exe:*:Enabled:zeemt2_www.przeklej.pl
"I:\GM panel\Metin2\metin2.bin" = I:\GM panel\Metin2\metin2.bin:*:Enabled:metin2 -- ()
[color=#E56717]========== HKEY_LOCAL_MACHINE Uninstall List ==========[/color]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall]
"{1BD1CC4B-0AA9-4DD1-99EE-F08D1D7CDB3C}" = OpenOfficePL Home 2009
"{1F1C2DFC-2D24-3E06-BCB8-725134ADF989}" = Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148
"{26A24AE4-039D-4CA4-87B4-2F83216017FF}" = Java(TM) 6 Update 23
"{3248F0A8-6813-11D6-A77B-00B0D0160070}" = Java(TM) 6 Update 7
"{350C9415-3D7C-4EE8-BAA9-00BCB3D54227}" = WebFldrs XP
"{45A66726-69BC-466B-A7A4-12FCBA4883D7}" = HiJackThis
"{4A03706F-666A-4037-7777-5F2748764D10}" = Java Auto Updater
"{7299052b-02a4-4627-81f2-1818da5d550d}" = Microsoft Visual C++ 2005 Redistributable
"{837b34e3-7c30-493c-8f6a-2b0f04e2912c}" = Microsoft Visual C++ 2005 Redistributable
"{980A182F-E0A2-4A40-94C1-AE0C1235902E}" = Pando Media Booster
"{A3051CD0-2F64-3813-A88D-B8DCCDE8F8C7}" = Microsoft .NET Framework 3.0 Service Pack 2
"{A92DAB39-4E2C-4304-9AB6-BC44E68B55E2}" = Google Update Helper
"{AC76BA86-7AD7-1045-7B44-A94000000001}" = Adobe Reader 9.4.1 - Polish
"{AD483998-2E9A-4405-83FF-6E503AF49CBB}" = Microsoft Virtual PC 2007 SP1
"{B9CA59A0-3B70-48F8-9054-67595DE6E72B}" = League of Legends
"{C09FB3CD-3D0C-3F2D-899A-6A1D67F2073F}" = Microsoft .NET Framework 2.0 Service Pack 2
"{C9BED750-1211-4480-B1A5-718A3BE15525}" = REALTEK GbE & FE Ethernet PCI-E NIC Driver
"{CE2CDD62-0124-36CA-84D3-9F4DCF5C5BD9}" = Microsoft .NET Framework 3.5 SP1
"{CE4A3D0F-D1B0-47D1-BF99-3E957C548D12}" = LogMeIn Hamachi
"{D26D1A53-D8A2-4004-BC98-0642B4EEAAB2}" = Colin McRae Rally 3
"{E633D396-5188-4E9D-8F6B-BFB8BF3467E8}" = Skype™ 5.0
"{F132AF7F-7BCA-4EDE-8A7C-958108FE7DBC}" = Realtek High Definition Audio Driver
"Adobe Flash Player ActiveX" = Adobe Flash Player 10 ActiveX
"Adobe Flash Player Plugin" = Adobe Flash Player 10 Plugin
"Audacity_is1" = Audacity 1.2.6
"avast5" = avast! Free Antivirus
"AVS Media Player_is1" = AVS Media Player 3.1
"AVS Update Manager_is1" = AVS Update Manager 1.0
"AVS4YOU Software Navigator_is1" = AVS4YOU Software Navigator 1.3
"Counter-Strike 1.6" = Counter-Strike 1.6
"DAEMON Tools Toolbar" = DAEMON Tools Toolbar
"Fraps" = Fraps (remove only)
"Free Solitaire_is1" = Free Solitaire
"Gadu-Gadu 10" = Gadu-Gadu 10
"HDMI" = Intel(R) Graphics Media Accelerator Driver
"ie8" = Windows Internet Explorer 8
"ipla" = ipla 2.2
"KLiteCodecPack_is1" = K-Lite Codec Pack 6.3.0 (Basic)
"LogMeIn Hamachi" = LogMeIn Hamachi
"Metin2_is1" = Metin2
"Microsoft .NET Framework 3.5 SP1" = Microsoft .NET Framework 3.5 SP1
"Nero - Burning Rom!UninstallKey" = Nero OEM
"Notepad++" = Notepad++
"OpenAL" = OpenAL
"PremiumSoft Navicat 8.1 for MySQL_is1" = PremiumSoft Navicat 8.1 for MySQL
"WhatPulse" = WhatPulse 1.7
"Winamp" = Winamp
"Windows Media Format Runtime" = Windows Media Format Runtime
"WinRAR archiver" = WinRAR archiver
[color=#E56717]========== HKEY_CURRENT_USER Uninstall List ==========[/color]
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall]
"FileZilla Client" = FileZilla Client 3.3.4.1
"Google Chrome" = Google Chrome
"Winamp Detect" = Detektor Winampa
[color=#E56717]========== Last 10 Event Log Errors ==========[/color]
[ Application Events ]
Error - 2010-12-01 12:32:04 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca chrome.exe, wersja 0.0.0.0, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2010-12-16 18:25:06 | Computer Name = ADMIN-AD17573EC | Source = Application Error | ID = 1000
Description = Aplikacja powodująca błąd portmap.exe, wersja 0.0.0.0, moduł powodujący
błąd portmap.exe, wersja 0.0.0.0, adres błędu 0x00072d5a.
Error - 2010-12-17 14:58:57 | Computer Name = ADMIN-AD17573EC | Source = Application Error | ID = 1000
Description = Aplikacja powodująca błąd speed.exe, wersja 0.0.0.0, moduł powodujący
błąd speed.exe, wersja 0.0.0.0, adres błędu 0x00066045.
Error - 2010-12-31 06:27:13 | Computer Name = ADMIN-AD17573EC | Source = PerfNet | ID = 2004
Description = Nie można otworzyć usługi Server. Dane wydajności usługi Server nie
zostaną zwrócone. Zwrócony kod stanu to dane DWORD 0.
Error - 2011-01-03 10:18:46 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca AVSMediaPlayer.exe, wersja 3.1.1.172, moduł
zawieszenia hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-08 07:28:12 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca chrome.exe, wersja 0.0.0.0, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-24 16:05:37 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca iexplore.exe, wersja 8.0.6001.18702, moduł
zawieszenia hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-28 09:11:48 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca notepad.exe, wersja 5.1.2600.5512, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-29 11:11:08 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca navicat.exe, wersja 8.1.20.0, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-30 19:02:59 | Computer Name = ADMIN-AD17573EC | Source = Microsoft Virtual PC 2007 | ID = 1000
Description =
[ Application Events ]
Error - 2010-12-01 12:32:04 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca chrome.exe, wersja 0.0.0.0, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2010-12-16 18:25:06 | Computer Name = ADMIN-AD17573EC | Source = Application Error | ID = 1000
Description = Aplikacja powodująca błąd portmap.exe, wersja 0.0.0.0, moduł powodujący
błąd portmap.exe, wersja 0.0.0.0, adres błędu 0x00072d5a.
Error - 2010-12-17 14:58:57 | Computer Name = ADMIN-AD17573EC | Source = Application Error | ID = 1000
Description = Aplikacja powodująca błąd speed.exe, wersja 0.0.0.0, moduł powodujący
błąd speed.exe, wersja 0.0.0.0, adres błędu 0x00066045.
Error - 2010-12-31 06:27:13 | Computer Name = ADMIN-AD17573EC | Source = PerfNet | ID = 2004
Description = Nie można otworzyć usługi Server. Dane wydajności usługi Server nie
zostaną zwrócone. Zwrócony kod stanu to dane DWORD 0.
Error - 2011-01-03 10:18:46 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca AVSMediaPlayer.exe, wersja 3.1.1.172, moduł
zawieszenia hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-08 07:28:12 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca chrome.exe, wersja 0.0.0.0, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-24 16:05:37 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca iexplore.exe, wersja 8.0.6001.18702, moduł
zawieszenia hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-28 09:11:48 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca notepad.exe, wersja 5.1.2600.5512, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-29 11:11:08 | Computer Name = ADMIN-AD17573EC | Source = Application Hang | ID = 1002
Description = Aplikacja zawieszająca navicat.exe, wersja 8.1.20.0, moduł zawieszenia
hungapp, wersja 0.0.0.0, adres zawieszenia 0x00000000.
Error - 2011-01-30 19:02:59 | Computer Name = ADMIN-AD17573EC | Source = Microsoft Virtual PC 2007 | ID = 1000
Description =
[ System Events ]
Error - 2011-01-26 18:44:40 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-01-27 20:01:57 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-01-28 19:43:06 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-01-29 22:21:54 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-01-30 19:07:48 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-01-31 19:07:42 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-02-01 18:12:47 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-02-02 17:05:18 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-02-03 18:38:58 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
Error - 2011-02-04 17:02:00 | Computer Name = ADMIN-AD17573EC | Source = Service Control Manager | ID = 7024
Description = Usługa Apache2.2 zakończyła działanie; wystąpił specyficzny dla niej
błąd 1 (0x1).
< End of report >
|