Aller au contenu

samichac

Membres
  • Compteur de contenus

    24
  • Inscription

  • Dernière visite

Tout ce qui a été posté par samichac

  1. samichac

    Graphe vb ou vba

    je ne c pas si ce soir j'ai un coup de genie ou .... mais je vien de resoudre le second probleme il suffit d'introduire ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimXValues, chConstants.chDataBound, "A1:A5" ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimYValues, chConstants.chDataBound, "B1:B5" et puis faire varier le numero de la serie pour les autres courbes
  2. samichac

    Graphe vb ou vba

    1er pb resolu: on defini le type de graphe en ecrivant chartSpace1.Charts(0).Type .... avant d'ajouter des graphes mais si quelqu'un aurai une idee sur comment tracer plusieurs courbes sur un meme graphique ... encore merci
  3. bonsoir je travaille sur un projet de programmation sur vb et vba de excel. J'ai rencontre des difficultes concernant le trace d'un graphe sur vb et sur vba. J'ai une form sur laquelle j'ai inseres les composants suivants: 1- une spreadsheet d'excel -->name: spreadsheet1 2- un graphe excel (pas le composant chart control mais le composant microsoft office charts)-->name: chartspace1 3- un bouton pour mettre en marche la sub tracant les courbes j'ai d'autre part trouve sur l'aide d'excel l'algorithme suivant qui permet de tracer de courbes: Sub Window_OnLoad() Dim chConstants Spreadsheet1.ActiveSheet.Cells.Clear Spreadsheet1.ActiveSheet.Cells(2, 1).Value = "Car" Spreadsheet1.ActiveSheet.Cells(3, 1).Value = "Sport-Utility" Spreadsheet1.ActiveSheet.Cells(4, 1).Value = "Truck" Spreadsheet1.ActiveSheet.Cells(5, 1).Value = "Minivan" Spreadsheet1.ActiveSheet.Cells(1, 2).Value = "1998" Spreadsheet1.ActiveSheet.Cells(2, 2).Value = 0.2 Spreadsheet1.ActiveSheet.Cells(3, 2).Value = 0.06 Spreadsheet1.ActiveSheet.Cells(4, 2).Value = 0.17 Spreadsheet1.ActiveSheet.Cells(5, 2).Value = 0.13 Spreadsheet1.ActiveSheet.Cells(1, 3).Value = "1999" Spreadsheet1.ActiveSheet.Cells(2, 3).Value = 0.38 Spreadsheet1.ActiveSheet.Cells(3, 3).Value = 0.82 Spreadsheet1.ActiveSheet.Cells(4, 3).Value = 0.28 Spreadsheet1.ActiveSheet.Cells(5, 3).Value = 0.62 Spreadsheet1.ActiveSheet.Cells(1, 4).Value = "2000" Spreadsheet1.ActiveSheet.Cells(2, 4).Value = 0.42 Spreadsheet1.ActiveSheet.Cells(3, 4).Value = 0.12 Spreadsheet1.ActiveSheet.Cells(4, 4).Value = 0.55 Spreadsheet1.ActiveSheet.Cells(5, 4).Value = 0.25 ' Clear the contents of the chart workspace. This removes ' any old charts that may already exist and leaves the chart workspace ' completely empty. One chart object is then added. ChartSpace1.Clear ChartSpace1.Charts.Add Set chConstants = ChartSpace1.Constants ' Set the chart DataSource property to the spreadsheet. ' It is possible to specify multiple data sources, but this example uses only one. ChartSpace1.DataSource = Spreadsheet1 ' Add three series to the chart. ChartSpace1.Charts(0).SeriesCollection.Add ChartSpace1.Charts(0).SeriesCollection.Add ChartSpace1.Charts(0).SeriesCollection.Add ' Connect the chart to data by specifying spreadsheet cell references ' for the different data dimensions. ' Notice that the series name is also bound to a spreadsheet cell. Changing ' the contents of the cell "B1" will also change the name that appears in the legend. ' If you don't want this behavior, set SeriesCollection(0).Caption instead of ' using the SetData method to bind the series name to the spreadsheet. ' Series one contains sales growth data for 1998. ' Bind the series name, the category names, and the values. ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimSeriesNames, chConstants.chDataBound, "B1" ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimCategories, chConstants.chDataBound, "A2:A5" ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimValues, chConstants.chDataBound, "B2:B5" ' Series two contains sales growth data for 1999. ChartSpace1.Charts(0).SeriesCollection(1).SetData chConstants.chDimSeriesNames, chConstants.chDataBound, "C1" ChartSpace1.Charts(0).SeriesCollection(1).SetData chConstants.chDimCategories, chConstants.chDataBound, "A2:A5" ChartSpace1.Charts(0).SeriesCollection(1).SetData chConstants.chDimValues, chConstants.chDataBound, "C2:C5" ' Series two contains sales growth data for 2000. ChartSpace1.Charts(0).SeriesCollection(2).SetData chConstants.chDimSeriesNames, chConstants.chDataBound, "D1" ChartSpace1.Charts(0).SeriesCollection(2).SetData chConstants.chDimCategories, chConstants.chDataBound, "A2:A5" ChartSpace1.Charts(0).SeriesCollection(2).SetData chConstants.chDimValues, chConstants.chDataBound, "D2:D5" ' Make the chart legend visible, format the left value axis as percentage, ' and specify that value gridlines are at 10% intervals. ChartSpace1.Charts(0).HasLegend = True ChartSpace1.Charts(0).Axes(chConstants.chAxisPositionLeft).NumberFormat = "0%" ChartSpace1.Charts(0).Axes(chConstants.chAxisPositionLeft).MajorUnit = 0.1 End Sub Private Sub CommandButton1_Click() Call Window_OnLoad End Sub cet algorithme vba donne des diagrammes en batons (ce qui est normal d'apres une source qui m'a avance que si l'on ne specifiait pas un charttype, le composant prend automatiquement comme type de trace les diagrammes en batons). Ce que je desire faire est de : 1 - tracer un graphe mais avec un chartype different(courbe normale xlXYscattersmooth) les donnees seront aquises des colonnes de la spreadsheet1. 2 - apres avoir resolu le premier probleme je voudrais inserer 3 courbes sur un meme graphe; les courbes prenant leurs valeurs de la spreadsheet(colonne 1 --> axe des abscisses, colonne 2 --> axe des ordonnees de la courbe1, colonne 3 --> axe des ordonnees de la courbe2 , colonne 4 --> axe des ordonnees de la courbe3). je vous remercie bcp de me repondre cela fait quelques semaines que je reflechit a ce probleme( je ne suis pas pro en info..) merci
  4. Desole je ne voulais pas vous derranger. je presente la solution: au lieu de mettre coord.txt ce qui envoie automatiquement le fichiers dans mydocuments mettre c:\\coord.txt
  5. PROBLEME RESOLU
  6. j'ai oublie de specifier que les 4 colonnes dans la spreadsheet sont pour trois graphes differents. la 1ere colonne est l'axe des abscisses des trois et les 3 qui suivent les axes des ordonnees de chacun des graphes. merci encore'
  7. sdc1 est une spreadsheet inseree sur la form grace au composant excel spreadsheet. generalement pour designer le contenu d'une case du tableau on note sdc1(cad nom du tableau).cells(ligne, colonne) la phrase donnant une surbrillance est If sdc1.Cells(2, 2) = 0 Then nbl = 0 Mais c'est bon j'ai pu faire ce que je voulais sur visual basic 6. je voulais ouvrir la form ecrite en vba et la sauver sous forme de fichier .exe. et visual basic 6 a reconnu le codage sans probleme, ce qui est etonant puisqu'en general ce sont les nouvelles versions qui lisent tout!!! Par contre je ne dirai pas non si quelqu'un m'expliquerai qu'est ce qui se passe. Et j'aurais par la meme occasion une autre question(que je vous pose tout de suite au lieu de reecrire un nouveau sujet). je tente de faire un graphe sur une form en vba. pour cela j'ai cree un espace graphe en utilisant le composant microsoft office chart 11.0 avec un spreadsheet de excel sur la form a l'aide du composant microsoft office spreadsheets. Le graphe doit prendre ses valeurs du spreadsheet.Dans l'aide , j'ai trouve un exemple de code que je vous presente: Sub Window_OnLoad() Dim chConstants Spreadsheet1.ActiveSheet.Cells.Clear Spreadsheet1.ActiveSheet.Cells(2, 1).Value = "Car" Spreadsheet1.ActiveSheet.Cells(3, 1).Value = "Sport-Utility" Spreadsheet1.ActiveSheet.Cells(4, 1).Value = "Truck" Spreadsheet1.ActiveSheet.Cells(5, 1).Value = "Minivan" Spreadsheet1.ActiveSheet.Cells(1, 2).Value = "1998" Spreadsheet1.ActiveSheet.Cells(2, 2).Value = 0.2 Spreadsheet1.ActiveSheet.Cells(3, 2).Value = 0.06 Spreadsheet1.ActiveSheet.Cells(4, 2).Value = 0.17 Spreadsheet1.ActiveSheet.Cells(5, 2).Value = 0.13 Spreadsheet1.ActiveSheet.Cells(1, 3).Value = "1999" Spreadsheet1.ActiveSheet.Cells(2, 3).Value = 0.38 Spreadsheet1.ActiveSheet.Cells(3, 3).Value = 0.82 Spreadsheet1.ActiveSheet.Cells(4, 3).Value = 0.28 Spreadsheet1.ActiveSheet.Cells(5, 3).Value = 0.62 Spreadsheet1.ActiveSheet.Cells(1, 4).Value = "2000" Spreadsheet1.ActiveSheet.Cells(2, 4).Value = 0.42 Spreadsheet1.ActiveSheet.Cells(3, 4).Value = 0.12 Spreadsheet1.ActiveSheet.Cells(4, 4).Value = 0.55 Spreadsheet1.ActiveSheet.Cells(5, 4).Value = 0.25 ' Clear the contents of the chart workspace. This removes ' any old charts that may already exist and leaves the chart workspace ' completely empty. One chart object is then added. ChartSpace1.Clear ChartSpace1.Charts.Add Set chConstants = ChartSpace1.Constants ' Set the chart DataSource property to the spreadsheet. ' It is possible to specify multiple data sources, but this example uses only one. ChartSpace1.DataSource = Spreadsheet1 ' Add three series to the chart. ChartSpace1.Charts(0).SeriesCollection.Add ChartSpace1.Charts(0).SeriesCollection.Add ChartSpace1.Charts(0).SeriesCollection.Add ' Connect the chart to data by specifying spreadsheet cell references ' for the different data dimensions. ' Notice that the series name is also bound to a spreadsheet cell. Changing ' the contents of the cell "B1" will also change the name that appears in the legend. ' If you don't want this behavior, set SeriesCollection(0).Caption instead of ' using the SetData method to bind the series name to the spreadsheet. ' Series one contains sales growth data for 1998. ' Bind the series name, the category names, and the values. ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimSeriesNames, chConstants.chDataBound, "B1" ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimCategories, chConstants.chDataBound, "A2:A5" ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimValues, chConstants.chDataBound, "B2:B5" ' Series two contains sales growth data for 1999. ChartSpace1.Charts(0).SeriesCollection(1).SetData chConstants.chDimSeriesNames, chConstants.chDataBound, "C1" ChartSpace1.Charts(0).SeriesCollection(1).SetData chConstants.chDimCategories, chConstants.chDataBound, "A2:A5" ChartSpace1.Charts(0).SeriesCollection(1).SetData chConstants.chDimValues, chConstants.chDataBound, "C2:C5" ' Series two contains sales growth data for 2000. ChartSpace1.Charts(0).SeriesCollection(2).SetData chConstants.chDimSeriesNames, chConstants.chDataBound, "D1" ChartSpace1.Charts(0).SeriesCollection(2).SetData chConstants.chDimCategories, chConstants.chDataBound, "A2:A5" ChartSpace1.Charts(0).SeriesCollection(2).SetData chConstants.chDimValues, chConstants.chDataBound, "D2:D5" ' Make the chart legend visible, format the left value axis as percentage, ' and specify that value gridlines are at 10% intervals. ChartSpace1.Charts(0).HasLegend = True ChartSpace1.Charts(0).Axes(chConstants.chAxisPositionLeft).NumberFormat = "0%" ChartSpace1.Charts(0).Axes(chConstants.chAxisPositionLeft).MajorUnit = 0.1 End Sub voulant adapter ce code a mon programme j'ai insere: Sub Window_OnLoad() Dim chConstants Dim i As Integer Spreadsheet1.ActiveSheet.Cells.Clear For i = 1 To 302 Spreadsheet1.Cells(i, 1) = S1.Cells(i + 2, 4) Spreadsheet1.Cells(i, 2) = S1.Cells(i + 2, 5) Spreadsheet1.Cells(i, 3) = S1.Cells(i + 2, 7) Spreadsheet1.Cells(i, 4) = S1.Cells(i + 2, 9) Next ' Clear the contents of the chart workspace. This removes ' any old charts that may already exist and leaves the chart workspace ' completely empty. One chart object is then added. ChartSpace1.Clear ChartSpace1.Charts.Add Set chConstants = ChartSpace1.Constants ' Set the chart DataSource property to the spreadsheet. ' It is possible to specify multiple data sources, but this example uses only one. ChartSpace1.DataSource = Spreadsheet1 ' Add three series to the chart. ChartSpace1.Charts(0).SeriesCollection.Add 'ChartSpace1.Charts(1).SeriesCollection.Add 'ChartSpace1.Charts(2).SeriesCollection.Add ' Connect the chart to data by specifying spreadsheet cell references ' for the different data dimensions. ' Notice that the series name is also bound to a spreadsheet cell. Changing ' the contents of the cell "B1" will also change the name that appears in the legend. ' If you don't want this behavior, set SeriesCollection(0).Caption instead of ' using the SetData method to bind the series name to the spreadsheet. ' Series one contains sales growth data for 1998. ' Bind the series name, the category names, and the values. ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimXValues, chConstants.chDataBound, "A1:A300" ChartSpace1.Charts(0).SeriesCollection(0).SetData chConstants.chDimYValues, chConstants.chDataBound, "B1:B300" ' Make the chart legend visible, format the left value axis as percentage, ' and specify that value gridlines are at 10% intervals. ChartSpace1.Charts(0).HasLegend = True ChartSpace1.Charts(0).Axes(chConstants.chAxisPositionLeft).NumberFormat = "0%" ChartSpace1.Charts(0).Axes(chConstants.chAxisPositionLeft).MajorUnit = 0.1 End Sub Private Sub CommandButton7_Click() Call Window_OnLoad End Sub mais ca ne marche pas j'ai lu quelque part que si on entrait pas le type de graphe desire on obtient par defaut un diagramme. j'ai par suite tente de changer le type de graphe chose que je ne suis pas parvenu a faire.] si vous savez quoi faire.... Merci beaucoup
  8. Merci guy j'ai corrige le code comme tu me l'as presente. Mais l'erreur est toujours la lorsque je demarre le programme. Est ce qu'il s'agit d'un probleme lie aux variables?
  9. j'ai oublie de vous demander si quelqu'un saurait s'il y'aurait possibilite d'une conversion automatique des codes. Merci encore
  10. Bonjour j'ai un programme ecrit en vba sur excel. je suis en train de le reecrire en vb en reprenant les memes fonctions et subs mais en adaptant le langage du programme au visual basic. lors du test de l'unes des fonction, j'ai fait face a une erreur: la fonction: Function nbl() As Integer 'cette fonction compte le nombre de points inseres dans le tableau' Dim i As Integer Dim j As Integer i = 1 j = 0 If sdc1.Cells(2, 2) = 0 Then nbl = 0 ' sdc est un tableau excel place sur la form If sdc1.Cells(2, 2) <> 0 Then While (sdc1.Cells(i, 1) <> 0) j = j + 1 i = i + 1 End While nbl = j End If End Function l'erreur rencontree est: Operator '=' is not defined for type 'Range' and type 'Integer'. je ne comprend pas ce qui se passe. si quelqu'un saurait se serait sympa de m'expliquer. Il faut noter que je ne suis pas pro en programmation. J'utilise visual basic 2005. Merci...
  11. Bonjour j'utilise visual lisp pour exporter des coordonnees d'autocad vers un fichier text. le probleme est que je n'arrive pas imposer le repertoire ou mon fichier sera sauveguarde, or c'est essentiel pour le programme qui devra l'utiliser de localiser le fichier .txt j'utilise la commande setq fname("coord.txt") ....merci
  12. j'ai oublie de vous specifier que cela c'est produit apres un plantage de l'ordi. il a plante et quand j'ai voulu le redemarrer j'ai eu ce probleme
  13. bonjour j'ai un probleme avec mon ordi: windows ne demarre pas. quand j'allume l'ordi, il me dit que la derniere fois j'ai eu un probleme et qu'il faut choisir une option: 1- safe mode (sans echec) 2- safe mode with networking 3- safe mode with command prompt 4- last know good configuration 5- start windows normally j'ai essaye les 5 et a chaque fois il me ramenait a cet etat ou je dois choisir une de ces options. je ne sais pas quoi faire il est important que je puisse ouvrir windows pour que je retire mon travail avant d'envoyer l'ordi s'il y'a lieu de l'arranger. merci d'avance
  14. j'ai effectue un scan kaspersky en ligne voici le rapport ------------------------------------------------------------------------------- KASPERSKY ONLINE SCANNER REPORT Saturday, February 02, 2008 1:02:23 PM Operating System: Microsoft Windows XP Home Edition, Service Pack 2 (Build 2600) Kaspersky Online Scanner version: 5.0.98.0 Kaspersky Anti-Virus database last update: 2/02/2008 Kaspersky Anti-Virus database records: 545848 ------------------------------------------------------------------------------- Scan Settings: Scan using the following antivirus database: extended Scan Archives: true Scan Mail Bases: true Scan Target - My Computer: C:\ D:\ E:\ Scan Statistics: Total number of scanned objects: 129091 Number of viruses found: 2 Number of infected objects: 10 Number of suspicious objects: 0 Duration of the scan process: 01:11:39 Infected Object Name / Virus Name / Last Action C:\autorun.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\Documents and Settings\All Users\Application Data\Symantec\Common Client\settings.dat Object is locked skipped C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5\Quarantine2580000\465BB3CE.VBN Infected: Trojan.Win32.Tiny.e skipped C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5\Quarantine9B00000\4FFF01BF.VBN Infected: Trojan.Win32.Tiny.e skipped C:\Documents and Settings\LocalService\Cookies\index.dat Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat.LOG Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\History\History.IE5\index.dat Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\Temporary Internet Files\Content.IE5\index.dat Object is locked skipped C:\Documents and Settings\LocalService\NTUSER.DAT Object is locked skipped C:\Documents and Settings\LocalService\ntuser.dat.LOG Object is locked skipped C:\Documents and Settings\NetworkService\Cookies\index.dat Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat.LOG Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\History\History.IE5\index.dat Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\Temporary Internet Files\Content.IE5\index.dat Object is locked skipped C:\Documents and Settings\NetworkService\NTUSER.DAT Object is locked skipped C:\Documents and Settings\NetworkService\ntuser.dat.LOG Object is locked skipped C:\Documents and Settings\user\Application Data\Teleca\Telecalib\Logging\Application logs\SpecificUSB_log.txt Object is locked skipped C:\Documents and Settings\user\Cookies\index.dat Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Messenger\inaamchacar@hotmail.com\SharingMetadata\Logs\Dfsr00005.log Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Messenger\inaamchacar@hotmail.com\SharingMetadata\pending.dat Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Messenger\inaamchacar@hotmail.com\SharingMetadata\Working\database_E0B0_65CA_B065_A82C\dfsr.db Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Messenger\inaamchacar@hotmail.com\SharingMetadata\Working\database_E0B0_65CA_B065_A82C\fsr.log Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Messenger\inaamchacar@hotmail.com\SharingMetadata\Working\database_E0B0_65CA_B065_A82C\fsrtmp.log Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Messenger\inaamchacar@hotmail.com\SharingMetadata\Working\database_E0B0_65CA_B065_A82C\tmp.edb Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat.LOG Object is locked skipped C:\Documents and Settings\user\Local Settings\Application Data\Microsoft\Windows Live Contacts\inaamchacar@hotmail.com\real\members.stg Object is locked skipped C:\Documents and Settings\user\Local Settings\History\History.IE5\index.dat Object is locked skipped C:\Documents and Settings\user\Local Settings\Temp\~DFA989.tmp Object is locked skipped C:\Documents and Settings\user\Local Settings\Temp\~DFA994.tmp Object is locked skipped C:\Documents and Settings\user\Local Settings\Temporary Internet Files\Content.IE5\index.dat Object is locked skipped C:\Documents and Settings\user\NTUSER.DAT Object is locked skipped C:\Documents and Settings\user\ntuser.dat.LOG Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBConfig.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBDebug.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBDetect.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBNotify.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBRefr.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBSetCfg.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBSetDev.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBSetLoc.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBSetUsr.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBStHash.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBStMSI.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\BBValid.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\SPPolicy.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\SPStart.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPBBC\LOGS\SPStop.log Object is locked skipped C:\Program Files\Symantec AntiVirus\SAVRT250NAV~.TMP Object is locked skipped C:\System Volume Information\MountPointManagerRemoteDatabase Object is locked skipped C:\System Volume Information\_restore{BA1CB203-12D2-41FC-9E12-4ED509807510}\RP159\A0039546.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{BA1CB203-12D2-41FC-9E12-4ED509807510}\RP160\A0039550.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{BA1CB203-12D2-41FC-9E12-4ED509807510}\RP160\A0039589.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{BA1CB203-12D2-41FC-9E12-4ED509807510}\RP161\change.log Object is locked skipped C:\WINDOWS\Debug\PASSWD.LOG Object is locked skipped C:\WINDOWS\SchedLgU.Txt Object is locked skipped C:\WINDOWS\SoftwareDistribution\ReportingEvents.log Object is locked skipped C:\WINDOWS\system32\CatRoot2\edb.log Object is locked skipped C:\WINDOWS\system32\CatRoot2\tmp.edb Object is locked skipped C:\WINDOWS\system32\config\AppEvent.Evt Object is locked skipped C:\WINDOWS\system32\config\default Object is locked skipped C:\WINDOWS\system32\config\default.LOG Object is locked skipped C:\WINDOWS\system32\config\SAM Object is locked skipped C:\WINDOWS\system32\config\SAM.LOG Object is locked skipped C:\WINDOWS\system32\config\SecEvent.Evt Object is locked skipped C:\WINDOWS\system32\config\SECURITY Object is locked skipped C:\WINDOWS\system32\config\SECURITY.LOG Object is locked skipped C:\WINDOWS\system32\config\software Object is locked skipped C:\WINDOWS\system32\config\software.LOG Object is locked skipped C:\WINDOWS\system32\config\SysEvent.Evt Object is locked skipped C:\WINDOWS\system32\config\system Object is locked skipped C:\WINDOWS\system32\config\system.LOG Object is locked skipped C:\WINDOWS\system32\h323log.txt Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\INDEX.BTR Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\INDEX.MAP Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\MAPPING.VER Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\MAPPING1.MAP Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\MAPPING2.MAP Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\OBJECTS.DATA Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\OBJECTS.MAP Object is locked skipped C:\WINDOWS\Temp\hsperfdata_SYSTEM\1620 Object is locked skipped C:\WINDOWS\WindowsUpdate.log Object is locked skipped D:\autorun.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped D:\System Volume Information\_restore{BA1CB203-12D2-41FC-9E12-4ED509807510}\RP159\A0039548.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped D:\System Volume Information\_restore{BA1CB203-12D2-41FC-9E12-4ED509807510}\RP160\A0039552.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped D:\System Volume Information\_restore{BA1CB203-12D2-41FC-9E12-4ED509807510}\RP160\A0039591.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped Scan process completed. SVP dites moi quoi faire Merci
  15. Merci gof j'ai mis tools cleaner en marche il a efface tout les programmes : hijackthis combofix diaghelp... j'ai perdu le rapport parceque je l'ai remis en marche(j'avais oublie de cliquer sur le nettoyer les fichiers temporaires..) donc le rapport que j'ai maintenant est inutile je pense pour kaspersky je suis en train d'effectuer le scan maintenant je poste le rapport des qu'il est pret merci
  16. bonjour j'ai poste il y'a deux jours un message a propos de mes 3 pcs infectes par le virus TR/Crypt.NSPM.Gen le premier est "gueri" grace a GOF que je remercie beaucoup pour son aide. La c'est a propos du second. J'ai opere un scan avec symantec en mode sans echec il a localise des fichiers suspects qu'il a place en quarantaine et j'ai effectue un autre scan en mode normal il a localise un fichier amvo.exe. Mais le probleme persiste je ne peux pas voir par exemple les fichiers caches... je joins ci dessous le rapport hijackthis: Logfile of Trend Micro HijackThis v2.0.2 Scan saved at 12:24:18, on 01/02/2008 Platform: Windows XP SP2 (WinNT 5.01.2600) MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180) Boot mode: Normal Running processes: C:\WINDOWS\System32\smss.exe C:\WINDOWS\system32\winlogon.exe C:\WINDOWS\system32\services.exe C:\WINDOWS\system32\lsass.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe C:\WINDOWS\system32\spoolsv.exe C:\Acer\eManager\anbmServ.exe C:\Program Files\WIDCOMM\Bluetooth Software\bin\btwdins.exe C:\Program Files\Symantec AntiVirus\DefWatch.exe C:\MATLAB7\webserver\bin\win32\matlabserver.exe C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE C:\Program Files\Symantec AntiVirus\Rtvscan.exe C:\WINDOWS\Explorer.EXE C:\acer\epm\epm-dm.exe C:\WINDOWS\system32\rundll32.exe C:\Program Files\Synaptics\SynTP\SynTPLpr.exe C:\WINDOWS\System32\svchost.exe C:\Program Files\Synaptics\SynTP\SynTPEnh.exe C:\WINDOWS\system32\igfxtray.exe C:\WINDOWS\system32\hkcmd.exe C:\Program Files\Common Files\Symantec Shared\ccApp.exe C:\PROGRA~1\SYMANT~1\VPTray.exe C:\Program Files\Sony Ericsson\Mobile2\Application Launcher\Application Launcher.exe C:\WINDOWS\system32\ctfmon.exe C:\Program Files\MSN Messenger\MsnMsgr.Exe C:\Program Files\Common Files\Teleca Shared\CapabilityManager.exe C:\Program Files\WIDCOMM\Bluetooth Software\BTTray.exe C:\Program Files\Common Files\Teleca Shared\Generic.exe C:\Program Files\Sony Ericsson\Mobile2\Mobile Phone Monitor\epmworker.exe C:\Program Files\Internet Explorer\iexplore.exe C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLLoginProxy.exe C:\PROGRA~1\WIDCOMM\BLUETO~1\BTSTAC~1.EXE C:\Program Files\Trend Micro\HijackThis\HijackThis.exe R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = about:blank O2 - BHO: AcroIEHlprObj Class - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - C:\Program Files\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll O2 - BHO: (no name) - {7E853D72-626A-48EC-A868-BA8D5E23E045} - (no file) O2 - BHO: Windows Live Sign-in Helper - {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll O4 - HKLM\..\Run: [iMJPMIG8.1] "C:\WINDOWS\IME\imjp8_1\IMJPMIG.EXE" /Spoil /RemAdvDef /Migration32 O4 - HKLM\..\Run: [PHIME2002ASync] C:\WINDOWS\system32\IME\TINTLGNT\TINTSETP.EXE /SYNC O4 - HKLM\..\Run: [PHIME2002A] C:\WINDOWS\system32\IME\TINTLGNT\TINTSETP.EXE /IMEName O4 - HKLM\..\Run: [EPM-DM] c:\acer\epm\epm-dm.exe O4 - HKLM\..\Run: [ePowerManagement] C:\Acer\ePM\ePM.exe boot O4 - HKLM\..\Run: [bluetoothAuthenticationAgent] rundll32.exe bthprops.cpl,,BluetoothAuthenticationAgent O4 - HKLM\..\Run: [synTPLpr] C:\Program Files\Synaptics\SynTP\SynTPLpr.exe O4 - HKLM\..\Run: [synTPEnh] C:\Program Files\Synaptics\SynTP\SynTPEnh.exe O4 - HKLM\..\Run: [igfxTray] C:\WINDOWS\system32\igfxtray.exe O4 - HKLM\..\Run: [HotKeysCmds] C:\WINDOWS\system32\hkcmd.exe O4 - HKLM\..\Run: [NeroFilterCheck] C:\WINDOWS\system32\NeroCheck.exe O4 - HKLM\..\Run: [ccApp] "C:\Program Files\Common Files\Symantec Shared\ccApp.exe" O4 - HKLM\..\Run: [vptray] C:\PROGRA~1\SYMANT~1\VPTray.exe O4 - HKLM\..\Run: [sony Ericsson PC Suite] "C:\Program Files\Sony Ericsson\Mobile2\Application Launcher\Application Launcher.exe" /startoptions O4 - HKCU\..\Run: [CTFMON.EXE] C:\WINDOWS\system32\ctfmon.exe O4 - HKCU\..\Run: [MsnMsgr] "C:\Program Files\MSN Messenger\MsnMsgr.Exe" /background O4 - HKUS\S-1-5-19\..\Run: [CTFMON.EXE] C:\WINDOWS\system32\CTFMON.EXE (User 'LOCAL SERVICE') O4 - HKUS\S-1-5-20\..\Run: [CTFMON.EXE] C:\WINDOWS\system32\CTFMON.EXE (User 'NETWORK SERVICE') O4 - HKUS\S-1-5-18\..\Run: [CTFMON.EXE] C:\WINDOWS\system32\CTFMON.EXE (User 'SYSTEM') O4 - HKUS\.DEFAULT\..\Run: [CTFMON.EXE] C:\WINDOWS\system32\CTFMON.EXE (User 'Default user') O4 - Startup: Adobe Gamma.lnk = C:\Program Files\Common Files\Adobe\Calibration\Adobe Gamma Loader.exe O4 - Global Startup: Adobe Reader Speed Launch.lnk = C:\Program Files\Adobe\Acrobat 7.0\Reader\reader_sl.exe O4 - Global Startup: AutoCAD Startup Accelerator.lnk = C:\Program Files\Common Files\Autodesk Shared\acstart16.exe O4 - Global Startup: BTTray.lnk = ? O8 - Extra context menu item: E&xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\OFFICE11\EXCEL.EXE/3000 O8 - Extra context menu item: Send To &Bluetooth - C:\Program Files\WIDCOMM\Bluetooth Software\btsendto_ie_ctx.htm O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\OFFICE11\REFIEBAR.DLL O9 - Extra button: @btrez.dll,-4015 - {CCA281CA-C863-46ef-9331-5C8D4460577F} - C:\Program Files\WIDCOMM\Bluetooth Software\btsendto_ie.htm O9 - Extra 'Tools' menuitem: @btrez.dll,-4017 - {CCA281CA-C863-46ef-9331-5C8D4460577F} - C:\Program Files\WIDCOMM\Bluetooth Software\btsendto_ie.htm O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe O23 - Service: Adobe LM Service - Adobe Systems - C:\Program Files\Common Files\Adobe Systems Shared\Service\Adobelmsvc.exe O23 - Service: Notebook Manager Service (anbmService) - OSA Technologies Inc. - C:\Acer\eManager\anbmServ.exe O23 - Service: Autodesk Licensing Service - Autodesk - C:\Program Files\Common Files\Autodesk Shared\Service\AdskScSrv.exe O23 - Service: Bluetooth Service (btwdins) - WIDCOMM, Inc. - C:\Program Files\WIDCOMM\Bluetooth Software\bin\btwdins.exe O23 - Service: Symantec Event Manager (ccEvtMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe O23 - Service: Symantec Password Validation (ccPwdSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccPwdSvc.exe O23 - Service: Symantec Settings Manager (ccSetMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe O23 - Service: Symantec AntiVirus Definition Watcher (DefWatch) - Symantec Corporation - C:\Program Files\Symantec AntiVirus\DefWatch.exe O23 - Service: MATLAB Server (matlabserver) - Unknown owner - C:\MATLAB7\webserver\bin\win32\matlabserver.exe O23 - Service: SAVRoam (SavRoam) - symantec - C:\Program Files\Symantec AntiVirus\SavRoam.exe O23 - Service: Symantec Network Drivers Service (SNDSrvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe O23 - Service: Symantec SPBBCSvc (SPBBCSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCSvc.exe O23 - Service: Symantec AntiVirus - Symantec Corporation - C:\Program Files\Symantec AntiVirus\Rtvscan.exe -- End of file - 6880 bytes si vous pouvez me guider SVP Merci d'avance
  17. merci gof j'ai fais ce que tu m'as demaned de faire (le fichier bloc note et le scan) voici le rapport kaspersky: ------------------------------------------------------------------------------- KASPERSKY ONLINE SCANNER REPORT Thursday, January 31, 2008 12:43:47 PM Operating System: Microsoft Windows XP Professional, Service Pack 2 (Build 2600) Kaspersky Online Scanner version: 5.0.98.0 Kaspersky Anti-Virus database last update: 31/01/2008 Kaspersky Anti-Virus database records: 539809 ------------------------------------------------------------------------------- Scan Settings: Scan using the following antivirus database: extended Scan Archives: true Scan Mail Bases: true Scan Target - My Computer: C:\ D:\ E:\ Scan Statistics: Total number of scanned objects: 110339 Number of viruses found: 8 Number of infected objects: 5230 Number of suspicious objects: 0 Duration of the scan process: 01:38:53 Infected Object Name / Virus Name / Last Action C:\autorun.inf\lpt3.This folder was created by Flash_Disinfector Object is locked skipped C:\Documents and Settings\All Users\Application Data\Symantec\Common Client\settings.dat Object is locked skipped C:\Documents and Settings\All Users\Application Data\Symantec\LiveUpdate\2008-01-31_Log.ALUSchedulerSvc.LiveUpdate Object is locked skipped C:\Documents and Settings\LocalService\Cookies\index.dat Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat.LOG Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\History\History.IE5\index.dat Object is locked skipped C:\Documents and Settings\LocalService\Local Settings\Temporary Internet Files\Content.IE5\index.dat Object is locked skipped C:\Documents and Settings\LocalService\NTUSER.DAT Object is locked skipped C:\Documents and Settings\LocalService\ntuser.dat.LOG Object is locked skipped C:\Documents and Settings\NetworkService\Cookies\index.dat Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat.LOG Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\History\History.IE5\index.dat Object is locked skipped C:\Documents and Settings\NetworkService\Local Settings\Temporary Internet Files\Content.IE5\index.dat Object is locked skipped C:\Documents and Settings\NetworkService\NTUSER.DAT Object is locked skipped C:\Documents and Settings\NetworkService\ntuser.dat.LOG Object is locked skipped C:\Documents and Settings\Sami Chacar\Cookies\index.dat Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\Application Data\Microsoft\Windows\UsrClass.dat.LOG Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\History\History.IE5\index.dat Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\History\History.IE5\MSHist012008013120080201\index.dat Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\Temp\~DF6D08.tmp Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\Temp\~DF6D1D.tmp Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\Temporary Internet Files\AntiPhishing\B3BB5BBA-E7D5-40AB-A041-A5B1C0B26C8F.dat Object is locked skipped C:\Documents and Settings\Sami Chacar\Local Settings\Temporary Internet Files\Content.IE5\index.dat Object is locked skipped C:\Documents and Settings\Sami Chacar\NTUSER.DAT Object is locked skipped C:\Documents and Settings\Sami Chacar\ntuser.dat.LOG Object is locked skipped C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\logs\starwind.2008-01-31.03-08-44.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\CCPD-LC\symlcrst.dll Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SNDALRT.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SNDCON.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SNDDBG.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SNDFW.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SNDIDS.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SNDSYS.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPPolicy.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPStart.log Object is locked skipped C:\Program Files\Common Files\Symantec Shared\SPStop.log Object is locked skipped C:\Program Files\Norton SystemWorks\Norton AntiVirus\AVApp.log Object is locked skipped C:\Program Files\Norton SystemWorks\Norton AntiVirus\AVError.log Object is locked skipped C:\Program Files\Norton SystemWorks\Norton AntiVirus\AVVirus.log Object is locked skipped C:\QooBox\Quarantine\C\autorun.inf.vir Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\QooBox\Quarantine\catchme2008-01-30_145522.49.zip/Autorun.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\QooBox\Quarantine\catchme2008-01-30_145522.49.zip/Autorun.inf.1 Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\QooBox\Quarantine\catchme2008-01-30_145522.49.zip/Autorun.inf.2 Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\QooBox\Quarantine\catchme2008-01-30_145522.49.zip ZIP: infected - 3 skipped C:\RECYCLER\NPROTECT\NPROTECT.LOG Object is locked skipped C:\System Volume Information\MountPointManagerRemoteDatabase Object is locked skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0528313.exe Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529339.sys Infected: Rootkit.Win32.Vanti.hq skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529340.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529341.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529342.sys Infected: Rootkit.Win32.Vanti.hq skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529343.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529344.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529345.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529346.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529347.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529348.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529349.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529350.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529351.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529352.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529353.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529354.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529355.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529356.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529357.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529358.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529359.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529360.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529361.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529362.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529363.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529364.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529365.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529366.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529367.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529368.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529369.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529370.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529371.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529372.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529373.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529374.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529375.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529376.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529377.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529378.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529379.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529380.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529381.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529382.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529383.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529384.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529385.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529386.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529387.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529388.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529389.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529390.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529391.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529392.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529393.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529394.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529395.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529396.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529397.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529398.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529399.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529400.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529401.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529402.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529403.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529404.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529405.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529406.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529407.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529408.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529409.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529410.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529411.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529412.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529413.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529414.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529415.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529416.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529417.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529418.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529419.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529420.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529421.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529422.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529423.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529424.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529425.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529426.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529427.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529428.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529429.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529430.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529431.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529432.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529433.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529434.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529435.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529436.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529437.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529438.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529439.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529440.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529441.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529442.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529443.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529444.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529445.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529446.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529447.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529448.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529449.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529450.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529451.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529452.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529453.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529454.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529455.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529456.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529457.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529458.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529459.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529460.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529461.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529462.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529463.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529464.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529465.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529466.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529467.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529468.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529469.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529470.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529471.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529472.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529473.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529474.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529475.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529476.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529477.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529478.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529479.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529480.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529481.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529482.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529483.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529484.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529485.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529486.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529487.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529488.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529489.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529490.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529491.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529492.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529493.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529494.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529495.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529496.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529497.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529498.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529499.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529500.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529501.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529502.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529503.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529504.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529505.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529506.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529507.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529508.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529509.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529510.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529511.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529512.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529513.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529514.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529515.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529516.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529517.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529518.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529519.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529520.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529521.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529522.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529523.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529524.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529525.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529526.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529527.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529528.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529529.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529530.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529531.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529532.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529533.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529534.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529535.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529536.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529537.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529538.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529539.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529540.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529541.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529542.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529543.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529544.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529545.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529546.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529547.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529548.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529549.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529550.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529551.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529552.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529553.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529554.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529555.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529556.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529557.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529558.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529559.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529560.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529561.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529562.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529563.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529564.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529565.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529566.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529567.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529568.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529569.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529570.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529571.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529572.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529573.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529574.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529575.dll Infected: Trojan-PSW.Win32.OnLineGames.pcf skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529577.sys Infected: Rootkit.Win32.Vanti.hq skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529578.sys Infected: Rootkit.Win32.Vanti.hq skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529579.dll Infected: Trojan-PSW.Win32.OnLineGames.pcf skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529580.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529581.inf Infected: Trojan-PSW.Win32.OnLineGames.pgs skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529582.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529583.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529584.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529585.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529586.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529587.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529588.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529589.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529590.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529591.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529592.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529593.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529594.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529595.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529596.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529597.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529598.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529599.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529600.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529601.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529602.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529603.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529604.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529605.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529606.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529607.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529608.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529609.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529610.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529611.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529612.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529613.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529614.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529615.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529616.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529617.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529618.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529619.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529620.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529621.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529622.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529623.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529624.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529625.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529626.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529627.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529628.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529629.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529630.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529631.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529632.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529633.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529634.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529635.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529636.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529637.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529638.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529639.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529640.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529641.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529642.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529643.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529644.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529645.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529646.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529647.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529648.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529649.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529650.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529651.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529652.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529653.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529654.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529655.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529656.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529657.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529658.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529659.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529660.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529661.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529662.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529663.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529664.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529665.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529666.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529667.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529668.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529669.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529670.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529671.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529672.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529673.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529674.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529675.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529676.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529677.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529678.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529679.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529680.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529681.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529682.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529683.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529684.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529685.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529686.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529687.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529688.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529689.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529690.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529691.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529692.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529693.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529694.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529695.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529696.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529697.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529698.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529699.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529700.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529701.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529702.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529703.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529704.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529705.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529706.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529707.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529708.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529709.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529710.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529711.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529712.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529713.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529714.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529715.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529716.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529717.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529718.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529719.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529720.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529721.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529722.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529723.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529724.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529725.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529726.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529727.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529728.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529729.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529730.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529731.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529732.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529733.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529734.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529735.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529736.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529737.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529738.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529739.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529740.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529741.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529742.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529743.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529746.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529747.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529748.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529749.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529750.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529751.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529752.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529753.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529754.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529755.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529756.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529757.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529758.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529759.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529760.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529761.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529762.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529763.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529764.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529765.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529766.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529767.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529768.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529769.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529770.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529771.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529772.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529773.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529774.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529775.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529776.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529777.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529778.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529779.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529780.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529781.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529782.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529783.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529784.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529785.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529786.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529787.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529788.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529789.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529790.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529791.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529792.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529793.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529794.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529795.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529796.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529797.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529798.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529799.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529800.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529801.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529802.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529803.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529804.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529805.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529806.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529807.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529808.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529809.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529810.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529811.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529812.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529813.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529814.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529815.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529816.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529817.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529818.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529819.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529820.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529821.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529822.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529823.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529824.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529825.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529826.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529827.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529828.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529829.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529830.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529831.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529832.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529833.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529834.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529835.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529836.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529837.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529838.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529839.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529840.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529841.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529842.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529843.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529844.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529845.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529846.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529847.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529848.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529849.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529850.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529851.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529852.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529853.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529854.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529855.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529856.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529857.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529858.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529859.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529860.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529861.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529862.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529863.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529864.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529865.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529866.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529867.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529868.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529869.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529870.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529871.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529872.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529873.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529874.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529875.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529876.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529877.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529878.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529879.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529880.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529881.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529882.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529883.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529884.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529885.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529886.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529887.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529888.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529889.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529890.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529891.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529892.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529893.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529894.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529895.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529896.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529897.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529898.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529899.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529900.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529901.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529902.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529903.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529904.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529905.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529906.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529907.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529908.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529909.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529910.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529911.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529912.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529913.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529914.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529915.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529916.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529917.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529918.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529919.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529920.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529921.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529922.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529923.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529924.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529925.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529926.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529927.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529928.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529929.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529930.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529931.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529932.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529933.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529934.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529935.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529936.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529937.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529938.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529939.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529940.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529941.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529942.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529943.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529944.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529945.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529946.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529947.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529948.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529949.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529950.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529951.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529952.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529953.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529954.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529955.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529956.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529957.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529958.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529959.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529960.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529961.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529962.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529963.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529964.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529965.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529966.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529967.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529968.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529969.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529970.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529971.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529972.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529973.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529974.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529975.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529976.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529977.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529978.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529979.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529980.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529981.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529982.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529983.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529984.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529985.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529986.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529987.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529988.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529989.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529990.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529991.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529992.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529993.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529994.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529995.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529996.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529997.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529998.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0529999.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530000.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530001.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530002.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530003.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530004.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530005.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530006.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530007.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530008.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530009.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530010.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530011.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530012.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530013.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530014.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530015.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530016.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530017.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530018.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530019.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530020.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530021.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530022.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530023.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530024.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530025.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530026.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530027.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530028.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530029.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530030.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530031.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530032.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530033.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530034.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530035.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530036.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530037.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530038.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530039.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530040.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530041.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530042.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530043.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530044.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530045.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530046.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530047.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530048.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530049.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530050.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530051.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530052.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530053.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530054.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530055.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530056.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530057.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530058.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530059.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530060.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530061.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530062.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530063.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530064.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530065.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530066.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530067.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530068.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530069.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530070.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530071.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530072.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530073.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530074.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530075.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530076.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530077.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530078.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530079.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530080.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530081.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530082.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530083.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530084.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530085.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530086.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530087.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530088.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530089.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530090.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530091.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530092.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530093.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530094.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530095.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530096.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530097.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530098.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530099.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530100.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530101.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530102.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530103.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530104.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530105.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530106.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530107.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530108.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530109.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530110.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530111.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530112.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530113.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530114.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530115.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530116.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530117.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530118.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530119.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530120.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530121.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530122.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530123.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530124.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530125.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530126.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530127.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530128.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530129.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530130.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530131.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530132.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530133.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530134.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530135.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530136.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530137.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530138.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530139.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530140.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530141.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530142.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530143.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530144.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530145.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530146.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530147.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530148.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530149.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530150.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530151.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530152.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530153.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530154.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530155.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530156.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530157.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530158.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530159.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530160.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530161.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530162.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530163.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530164.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530165.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530166.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530167.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530168.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530169.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530170.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530171.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530172.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530173.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530174.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530175.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530176.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530177.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530178.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530179.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530180.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530181.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530182.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530183.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530184.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530185.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530186.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530187.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530188.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530189.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530190.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530191.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530192.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530193.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530194.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530195.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530196.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530197.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530198.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530199.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530200.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530201.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530202.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530203.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530204.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530205.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530206.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530207.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530208.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530209.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530210.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530211.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530212.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530213.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530214.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530215.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530216.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530217.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530218.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530219.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530220.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530221.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530222.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530223.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530224.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530225.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530226.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530227.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530228.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530229.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530230.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530231.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530232.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530233.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530234.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530235.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530236.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530237.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530238.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530239.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530240.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530241.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530242.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530243.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530244.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530245.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530246.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530247.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530249.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530251.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530252.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530253.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530254.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530255.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530256.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530257.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530258.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530259.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530260.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530261.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530262.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530263.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530264.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530265.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530266.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530267.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530268.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530269.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530270.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530271.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530272.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530273.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530274.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530275.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530276.dll Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530277.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530278.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530279.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530280.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530282.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530283.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530284.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530285.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530286.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530287.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530288.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530289.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530290.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530291.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530292.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530293.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530294.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530295.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530296.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530297.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530298.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530299.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530300.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530301.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530302.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530303.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530304.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530305.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530306.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530307.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530308.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530309.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530310.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530311.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530312.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530313.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530314.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530315.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530316.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530317.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530318.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530319.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530320.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530321.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530322.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530323.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530324.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530325.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530326.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530327.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530328.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530329.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530330.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530331.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530332.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530333.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530334.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530335.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530336.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530337.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530338.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530339.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530340.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530341.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530342.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530343.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530344.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530345.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530346.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530347.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530348.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530349.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530350.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530351.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530352.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530353.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530354.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530355.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530356.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530357.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530358.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530359.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530360.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530361.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530362.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530363.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530364.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530365.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530366.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530367.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530368.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530369.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530370.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530371.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530372.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530373.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530374.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530375.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530376.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530377.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530378.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530379.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530380.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530381.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530382.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530383.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530384.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530385.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530386.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530387.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530388.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530389.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530390.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530391.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530393.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530394.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530395.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530396.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530397.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530398.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530399.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530400.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530401.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530402.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530403.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530404.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530405.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530406.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530407.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530408.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530409.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530410.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530411.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530413.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530414.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530415.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530416.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530417.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530418.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530419.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530420.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530421.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530422.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530423.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530424.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530425.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530426.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530427.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530428.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530429.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530430.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530431.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530432.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530433.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530434.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530435.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530436.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530437.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530438.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530439.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530440.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530441.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530442.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530443.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530444.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530445.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530447.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530448.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530449.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530450.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530451.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530452.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530453.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530454.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530455.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530456.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530457.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530458.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530459.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530460.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530461.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530462.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530463.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530464.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530465.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530466.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530467.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530468.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530469.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530470.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530471.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530472.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530473.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530474.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530475.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530476.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530477.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530478.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530479.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530480.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530481.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530482.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530483.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530484.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530485.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530486.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530487.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530488.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530489.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530490.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530491.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530492.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530493.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530494.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530495.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530496.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530497.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530498.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530499.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530500.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530501.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530502.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530503.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530504.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530505.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530506.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530507.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530508.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530509.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530510.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530511.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530512.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530513.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530514.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530515.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530516.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530517.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530518.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530519.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530520.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530521.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530522.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530523.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530524.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530525.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530526.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530527.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530528.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530529.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530530.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530531.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530532.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530533.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530534.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530535.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530536.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530537.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530538.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530539.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530540.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530541.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530542.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530543.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530544.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530545.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530546.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530547.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530548.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530549.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530550.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530551.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530552.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530554.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530555.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530556.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530557.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530558.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530559.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530560.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530561.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530562.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530563.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530564.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530565.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530566.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530567.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530568.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530569.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530570.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530571.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530572.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530573.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530574.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530575.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530576.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530577.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530578.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530579.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530580.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530581.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530583.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530584.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530585.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530586.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530588.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530589.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530590.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530591.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530593.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530594.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530597.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530598.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530599.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530600.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530601.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530602.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530603.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530604.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530605.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530606.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530607.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530608.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530609.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530610.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530612.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530614.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530616.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530617.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530619.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530620.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530621.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530622.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530623.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530624.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530625.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530626.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530627.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530628.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530629.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530630.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530631.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530632.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530634.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530635.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530636.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530647.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530648.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530649.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530650.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530651.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530655.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530656.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530657.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530658.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530659.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530660.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530663.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530664.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530665.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530666.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530667.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530668.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530669.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530673.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530674.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530683.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530684.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530688.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530689.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530692.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530693.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530694.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530695.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530696.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530697.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530698.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530699.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530700.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530701.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530702.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530703.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530704.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530705.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530706.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530707.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530708.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530709.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530720.dll Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530723.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530724.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530725.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530727.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530728.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530729.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530730.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530731.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530732.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530733.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530734.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530735.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530736.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530737.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530738.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530739.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530740.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530741.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530742.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530743.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530744.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530745.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530746.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530748.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530749.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530750.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530751.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530752.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530753.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530754.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530755.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530756.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530757.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530758.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530759.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530760.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530761.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530762.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530763.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530764.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530765.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530766.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530767.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530768.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530770.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530771.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530772.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530773.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530774.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530775.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530776.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530777.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530778.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530779.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530780.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530781.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530782.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530783.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530784.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530785.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530786.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530787.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530788.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530789.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530790.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530791.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530792.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530793.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530794.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530795.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530796.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530797.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530798.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530799.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530800.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530801.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530802.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530803.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530804.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530805.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530806.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530807.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530808.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530809.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530810.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530811.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530812.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530813.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530814.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530815.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530816.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530817.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530818.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530819.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530820.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530821.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530822.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530823.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530824.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530825.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530826.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530827.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530828.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530829.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530830.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530831.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530832.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530833.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530834.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530835.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530836.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530837.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530838.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530839.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530840.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530841.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530842.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530843.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530844.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530845.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530846.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530847.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530848.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530849.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530850.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530851.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530852.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530853.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530854.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530855.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530856.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530857.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530858.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP598\A0530859.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530860.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530861.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530862.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530863.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530864.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530865.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530866.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530867.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530868.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530869.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530870.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530871.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530872.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530873.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530874.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530875.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530876.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530877.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530878.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530879.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530880.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530881.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530882.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530883.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530884.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530885.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530886.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530887.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530888.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530889.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530890.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530891.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530892.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530893.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530894.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530895.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530896.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530897.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530898.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530899.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530900.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530901.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530902.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530903.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530904.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530905.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530906.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530907.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530908.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530909.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530910.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530911.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530912.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530913.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530914.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530915.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530916.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530917.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530918.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530919.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530920.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530921.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530922.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530923.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530924.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530925.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530926.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530927.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530928.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530929.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530930.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530931.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530932.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530933.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530934.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530935.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530936.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530937.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530938.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530939.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530940.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530941.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530942.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530943.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530944.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530945.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530946.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530947.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530948.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530949.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530950.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530951.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530952.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530953.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530954.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530955.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530956.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530957.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530958.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530959.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530960.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530961.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530962.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530963.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530964.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530965.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530966.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530967.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530968.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530969.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530970.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530971.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530972.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530973.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530974.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530975.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530976.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530977.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530978.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530979.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530980.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530981.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530982.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530983.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530984.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530985.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530986.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530987.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530988.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530989.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530990.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530991.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530992.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530993.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530994.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530995.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530996.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530997.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530998.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0530999.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531004.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531005.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531008.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531009.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531010.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531011.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531012.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531013.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531014.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531015.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531017.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531018.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531019.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531020.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531021.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531022.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531023.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531024.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531025.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531026.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531027.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531028.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531029.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531030.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531031.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531032.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531033.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531034.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531035.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531036.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531037.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531038.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531039.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531040.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531041.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531042.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531043.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531044.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531045.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531046.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531047.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531048.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531049.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531050.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531051.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531052.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531053.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531054.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531055.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531056.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531057.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531058.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531059.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531060.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531061.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531062.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531063.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531064.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531065.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531066.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531067.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531068.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531069.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531070.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531071.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531072.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531073.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531074.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531075.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531076.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531077.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531078.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531079.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531080.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531081.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531082.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531083.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531084.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531085.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531086.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531087.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531088.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531089.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531090.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531091.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531092.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531093.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531094.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531095.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531096.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531097.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531098.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531099.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531100.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531101.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531102.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531103.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531104.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531105.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531106.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531107.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531108.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531109.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531110.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531111.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531112.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531113.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531114.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531115.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531116.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531117.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531118.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531119.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531120.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531121.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531122.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531123.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531124.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531125.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531126.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531127.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531128.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531129.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531130.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531131.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531132.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531133.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531134.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531135.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531136.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531137.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531138.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531139.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531140.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531141.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531142.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531143.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531144.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531145.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531146.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531147.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531148.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531149.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531150.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531151.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531152.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531153.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531154.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531155.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531156.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531157.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531158.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531159.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531160.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531161.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531162.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531163.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531164.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531165.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531166.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531167.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531168.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531169.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531170.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531171.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531172.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531173.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531174.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531175.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531176.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531177.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531178.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531179.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531180.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531181.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531182.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531183.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531184.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531185.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531186.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531187.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531188.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531189.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531190.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531191.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531192.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531193.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531194.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531195.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531196.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531197.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531198.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531199.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531200.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531201.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531202.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531203.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531204.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531205.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531206.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531207.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531208.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531209.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531210.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531211.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531212.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531213.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531214.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531215.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531216.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531217.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531218.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531219.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531220.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531221.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531222.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531223.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531224.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531225.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531226.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531227.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531228.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531229.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531230.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531231.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531232.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531233.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531234.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531235.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531236.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531237.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531238.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531239.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531240.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531241.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531242.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531243.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531244.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531245.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531246.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531247.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531248.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531249.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531250.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531251.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531252.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531253.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531254.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531255.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531256.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531257.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531258.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531259.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531260.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531261.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531262.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531263.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531264.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531265.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531266.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531267.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531268.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531269.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531270.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531271.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531272.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531273.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531274.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531275.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531276.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531277.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531278.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531279.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531280.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531281.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531282.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531283.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531284.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531285.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531286.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531287.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531288.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531289.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531290.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531291.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531292.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531293.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531294.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531295.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531296.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531297.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531298.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531299.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531300.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531301.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531302.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531303.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531304.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531305.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531306.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531307.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531308.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531309.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531310.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531311.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531312.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531313.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531314.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531315.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531316.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531317.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531318.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531319.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531320.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531321.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531322.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531323.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531324.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531325.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531326.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531327.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531328.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531329.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531330.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531331.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531332.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531333.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531334.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531335.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531336.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531337.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531338.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531339.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531340.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531341.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531342.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531343.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531344.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531345.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531346.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531347.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531348.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531349.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531350.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531351.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531352.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531353.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531354.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531355.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531356.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531357.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531358.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531359.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531360.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531361.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531362.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531363.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531364.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531365.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531366.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531367.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531368.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531369.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531370.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531371.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531372.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531373.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531374.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531375.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531376.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531377.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531378.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531379.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531380.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531381.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531382.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531383.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531384.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531385.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531386.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531387.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531388.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531390.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531391.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531392.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531393.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531394.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531395.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531396.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531397.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531398.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531399.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531400.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531401.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531403.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531404.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531405.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531406.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531407.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531408.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531409.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531410.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531411.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531412.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531413.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531414.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531415.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531416.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531417.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531418.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531419.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531420.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531421.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531422.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531423.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531424.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531425.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531426.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531427.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531428.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531429.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531430.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531431.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531432.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531433.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531434.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531435.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531436.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531437.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531438.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP599\A0531439.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531440.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531441.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531442.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531443.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531444.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531445.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531446.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531447.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531448.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531449.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531450.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531451.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531452.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531453.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531454.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531455.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531456.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531457.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531458.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531459.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531460.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531461.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531462.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531463.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531464.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531465.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531466.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531467.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531468.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531469.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531470.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531471.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531472.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531473.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531474.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531475.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531476.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531477.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531478.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531479.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531480.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531481.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531482.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531483.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531484.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531485.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531486.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531487.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531488.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531489.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531490.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531491.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531492.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531493.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531494.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531495.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531496.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531497.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531498.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531499.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531500.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531501.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531502.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531503.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531504.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531505.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531506.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531507.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531508.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531509.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531510.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531511.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531512.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531513.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531514.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531515.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531516.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531517.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531518.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531519.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531520.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531521.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531522.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531523.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531524.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531525.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531526.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531527.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531528.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531529.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531530.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531531.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531532.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531533.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531534.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531535.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531536.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531537.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531538.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531539.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531540.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531541.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531542.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531543.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531544.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531545.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531546.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531547.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531548.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531550.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531551.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531552.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531554.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531555.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531556.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531557.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531558.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531559.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531560.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531561.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531562.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531563.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531564.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531565.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531566.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531567.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531568.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531569.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531570.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531571.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531579.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531580.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531581.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531582.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531583.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531584.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531585.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531586.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531587.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531588.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531589.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531590.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531591.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531592.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531593.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531594.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531595.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531596.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531597.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531598.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531599.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531600.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531601.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531602.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531603.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531604.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531605.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531606.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531607.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531608.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531609.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531610.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531611.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531612.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531613.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531614.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531615.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531616.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531617.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531618.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531619.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531620.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531621.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531622.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531623.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531624.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531625.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531626.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531627.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531628.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531629.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531630.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531632.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531633.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531634.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531635.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531636.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531637.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531638.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531639.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531640.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531641.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531642.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531643.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531644.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531645.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531646.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531647.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531648.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531649.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531650.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531651.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531652.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531653.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531654.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531655.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531656.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531657.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531658.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531659.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531660.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531661.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531662.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531663.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531664.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531665.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531666.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531667.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531668.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531669.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531670.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531671.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531672.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531673.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531674.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531675.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531676.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531677.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531678.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531679.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531680.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531681.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531682.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531683.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531685.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531686.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531687.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531688.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531689.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531690.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531691.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531692.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531693.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531694.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531695.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531696.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531697.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531698.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531699.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531700.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531701.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531702.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531703.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531704.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531705.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531706.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531707.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531708.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531709.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531710.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531711.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531712.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531713.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531714.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531715.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531716.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531717.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531718.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531719.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531720.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531721.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531722.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531723.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531724.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531725.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531726.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531727.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531728.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531729.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531730.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531731.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531732.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531733.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531734.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531735.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531736.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531737.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531738.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531739.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531740.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531741.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531742.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531743.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531744.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531745.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531746.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531747.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531748.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531749.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531750.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531751.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531752.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531753.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531754.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531755.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531756.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531757.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531758.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531759.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531760.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531761.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531762.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531763.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531764.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531765.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531766.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531767.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531768.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531769.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531770.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531771.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531772.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531773.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531774.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531775.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531776.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531777.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531778.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531779.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531780.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531781.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531782.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531783.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531784.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531785.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531786.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531787.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531788.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531789.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531790.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531791.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531792.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531793.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531794.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531795.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531796.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531797.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531798.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531799.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531800.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531801.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531802.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531803.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531804.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531805.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531806.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531807.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531808.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531809.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531810.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531811.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531812.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531813.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531814.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531815.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531816.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531817.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531818.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531819.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531820.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531821.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531822.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531823.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531824.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531825.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531826.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531827.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531828.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531829.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531830.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531831.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531832.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531833.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531834.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531835.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531836.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531837.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531838.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531839.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531840.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531841.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531842.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531843.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531844.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531845.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531846.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531847.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531848.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531849.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531850.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531851.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531852.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531853.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531854.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531855.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531856.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531857.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531858.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531859.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531860.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531861.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531862.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531863.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531864.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531865.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531866.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531867.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531868.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531869.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531870.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531871.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531872.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531873.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531874.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531875.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531876.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531877.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531878.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531879.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531880.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531881.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531882.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531883.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531884.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531885.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531886.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531887.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531888.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531889.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531890.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531891.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531892.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531893.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531894.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531895.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531896.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531897.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531898.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531899.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531900.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531901.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531902.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531903.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531904.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531905.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531906.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531907.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531908.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531909.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531910.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531911.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531912.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531913.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531914.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531915.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531916.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531917.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531918.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531919.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531920.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531921.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531922.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531923.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531924.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531925.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531926.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531927.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531928.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531929.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531930.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531931.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531932.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531933.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531934.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531935.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531936.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531937.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531938.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531939.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531940.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531941.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531942.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531943.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531944.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531945.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531946.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531947.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531948.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531949.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531950.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531951.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531952.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531953.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531954.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531955.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531956.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531957.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531958.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531959.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531960.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531961.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531962.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531963.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531964.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531965.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531966.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531967.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531968.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531969.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531970.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531971.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531972.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531973.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531974.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531975.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531976.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531977.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531978.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531979.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531980.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531981.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531982.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531983.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531984.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531985.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531986.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531987.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531988.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531989.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531990.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531991.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531992.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531993.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531994.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531995.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531996.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531997.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531998.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0531999.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532000.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532001.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532002.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532003.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532004.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532005.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532006.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532007.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532008.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532009.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532010.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532011.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532012.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532013.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532014.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532015.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532016.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532017.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532018.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532019.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532020.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532021.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532022.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532023.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532024.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532025.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532026.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532027.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532028.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532029.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532030.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532031.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532032.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532033.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532034.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532035.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532036.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532037.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532038.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532039.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532040.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532041.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532042.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532043.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532044.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532045.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532046.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532047.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532048.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532049.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532050.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532051.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532052.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532053.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532054.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532055.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532056.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532057.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532058.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532059.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532060.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532061.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532062.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532063.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532064.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532065.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532066.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532067.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532068.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532069.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532070.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532071.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532072.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532073.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532074.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532075.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532076.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532077.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532078.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532079.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532080.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532081.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532082.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532083.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532084.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532085.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532086.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532087.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532088.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532089.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532090.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532091.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532092.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532093.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532094.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532095.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532096.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532097.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532098.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532099.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532100.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532101.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532102.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532103.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532104.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532105.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532106.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532107.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532108.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532109.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532110.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532111.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532112.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532113.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532114.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532115.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532116.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532117.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532118.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532119.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532120.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532121.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532122.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532123.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532124.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532125.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532126.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532127.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532128.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532129.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532130.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532131.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532132.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532133.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532134.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532135.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532136.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532137.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532138.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532139.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532140.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532141.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532142.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532143.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532144.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532145.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532146.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532147.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532148.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532149.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532150.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532151.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532152.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532153.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532154.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532155.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532156.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532157.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532158.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532159.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532160.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532161.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532162.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532165.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532166.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532167.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532168.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532169.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532170.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532171.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532172.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532173.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532174.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532175.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532176.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532177.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532178.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532179.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532180.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532181.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532182.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532183.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532186.dll Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532187.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532304.dll Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532312.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532313.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532316.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532317.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532318.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532319.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532320.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532321.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532322.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532323.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532324.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532325.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532326.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532327.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532328.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532329.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532330.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532331.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532332.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532333.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532334.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532335.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532336.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532337.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532338.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532339.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532340.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532341.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532342.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532343.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532344.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532345.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532346.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532347.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532348.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532349.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532350.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532351.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532352.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532353.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532354.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532355.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532356.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532357.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532358.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532359.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532360.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532361.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532362.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532363.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532364.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532365.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532366.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532367.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532368.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532369.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532370.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532371.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532372.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532373.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532374.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532375.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532376.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532377.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532378.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532379.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532380.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532381.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532382.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532383.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532388.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532389.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532390.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532391.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532392.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532393.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532394.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532395.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532396.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532397.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532398.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532399.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532400.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532401.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532402.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532403.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532404.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532405.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532406.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532407.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532408.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532409.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532410.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532411.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532412.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532413.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532414.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532415.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532416.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532417.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532418.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532419.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532420.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532421.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532422.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532423.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532424.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532425.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532426.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532427.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532428.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532429.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532430.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532431.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532432.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532433.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532434.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532435.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532436.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532437.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532438.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532439.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532440.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532441.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532442.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532443.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532444.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532445.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532446.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532447.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532448.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532449.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532450.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532451.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532452.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532453.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532454.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532455.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532456.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532457.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532458.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532459.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532460.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532461.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532462.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532463.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532464.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532465.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532466.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532467.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532468.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532469.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532470.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532471.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532472.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532473.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532474.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532475.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532476.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532477.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532478.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532479.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532480.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532481.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532482.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532483.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532484.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532485.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532486.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532487.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532488.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532489.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532490.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532491.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532492.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532493.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532494.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532495.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532496.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532497.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532498.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532499.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532500.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532501.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532502.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532503.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532504.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532505.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532506.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532507.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532508.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532509.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532510.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532511.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532512.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532513.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532514.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532515.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532516.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532517.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532518.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532519.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532520.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532521.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532522.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532523.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532524.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532525.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532526.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532527.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532528.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532529.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532530.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532531.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532532.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532533.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532534.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532535.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532536.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532537.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532538.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532539.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532540.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532541.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532542.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532543.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532544.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532545.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532546.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532547.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532548.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532549.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532550.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532551.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532552.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532553.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532554.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532555.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532556.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532557.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532558.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532559.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532560.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532561.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532562.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532563.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532564.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532565.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532566.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532567.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532568.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532569.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532570.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532571.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532572.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532573.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532574.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532575.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532576.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532577.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532578.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532579.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532580.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532581.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532582.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532583.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532584.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532585.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532586.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532587.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532588.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532589.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532590.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532591.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532592.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532593.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532594.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532595.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532596.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532597.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532598.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532599.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532600.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532601.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532602.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532603.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532604.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532605.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532606.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532607.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532608.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532609.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532610.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532611.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532612.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532613.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532614.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532615.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532616.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532617.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532618.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532619.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532620.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532621.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532622.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532623.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532624.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532625.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532626.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532627.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532628.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532629.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532630.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532631.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532632.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532633.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532636.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532637.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532638.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532639.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532640.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532641.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532642.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532643.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532644.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532645.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532646.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532647.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532648.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532649.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532650.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532651.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532652.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532653.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532654.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532655.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532656.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532657.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532658.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532659.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532660.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532661.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532662.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532663.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532664.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532665.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532666.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532667.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532668.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532669.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532670.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532671.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532672.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532673.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532674.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532675.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532676.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532677.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532678.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532679.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532680.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532681.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532682.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532683.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532684.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532685.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532686.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532687.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532688.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532689.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532690.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532691.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532692.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532693.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532694.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532695.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532696.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532697.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532698.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532699.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532700.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532701.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532702.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532703.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532704.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532705.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532706.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532707.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532708.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532709.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532710.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532711.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532712.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532713.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532714.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532715.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532716.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532717.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532718.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532719.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532720.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532721.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532722.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532723.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532724.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532725.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532726.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532727.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532728.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532729.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532730.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532731.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532732.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532733.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532734.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532735.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532736.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532737.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532739.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532740.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532742.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532743.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532744.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532745.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532746.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532747.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532748.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532749.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532750.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532751.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532752.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532753.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532754.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532755.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532756.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532757.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532758.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532759.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532760.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532761.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532762.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532763.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532764.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532765.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532766.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532767.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532768.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532769.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532770.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532771.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532772.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532773.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532774.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532775.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532776.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532777.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532778.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532779.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532780.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532781.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532782.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532783.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532784.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532785.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532786.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532787.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532788.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532789.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532790.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532791.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532792.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532793.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532794.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532795.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532796.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532797.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532798.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532799.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532800.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532801.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532802.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532803.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532804.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532805.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532806.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532807.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532808.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532809.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532810.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532811.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532812.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532813.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532814.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532815.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532816.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532817.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532818.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532819.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532820.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532821.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532822.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532823.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532824.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532825.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532826.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532827.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532828.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532829.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532830.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532831.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532832.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532833.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532834.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532835.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532836.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532837.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532838.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532839.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532840.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532841.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532842.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532843.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532844.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532845.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532846.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532847.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532848.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532849.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532850.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532851.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532852.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532853.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532854.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532855.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532856.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532857.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532858.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532859.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532860.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532861.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532862.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532863.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532864.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532865.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532866.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532867.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532868.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532869.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532870.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532871.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532872.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532873.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532874.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532875.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532876.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532877.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532878.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532879.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532880.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532881.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532882.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532883.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532884.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532885.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532886.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532887.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532888.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532889.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532890.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532891.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532892.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532893.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532894.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532895.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532896.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532897.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532898.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532899.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532900.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532901.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532902.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532903.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532904.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532905.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532906.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532907.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532908.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532909.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532910.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532911.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532912.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532913.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532914.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532915.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532916.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532917.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532918.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532919.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532920.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532921.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532922.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532923.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532924.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532925.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532926.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532927.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532928.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532929.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532930.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532931.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532932.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532933.sys Infected: Rootkit.Win32.Vanti.hq skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532934.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532935.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532936.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532937.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532938.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532939.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532940.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532941.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532942.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532943.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532944.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532945.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532946.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532947.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532948.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532949.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532950.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532951.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532952.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532953.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532954.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532955.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532956.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532957.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532958.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532959.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532960.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532961.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532962.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532963.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532964.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532965.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532966.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532967.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532968.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532969.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532970.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532971.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532972.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532973.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532974.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532975.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532977.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532978.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532979.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532980.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532981.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532982.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532983.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532984.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532985.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532986.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532987.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532988.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532989.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532990.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532991.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532992.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532993.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532994.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532995.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532996.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532997.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532998.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0532999.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533000.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533001.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533002.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533003.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533004.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533005.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533006.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533007.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533008.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533009.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533010.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533011.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533012.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533013.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533014.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533015.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533016.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533017.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533018.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533019.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533020.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533021.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533022.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533023.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533024.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533025.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533026.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533027.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533028.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533029.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533030.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533031.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533033.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533034.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533035.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533036.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533037.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533038.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533039.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533040.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533041.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533042.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533043.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533044.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533045.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533046.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533047.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533048.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533049.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533050.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533051.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533052.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533053.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533054.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533055.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533056.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533057.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533058.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533059.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533063.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533064.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533084.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533085.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533086.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533087.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533088.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533089.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533091.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533092.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533105.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533106.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533108.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533109.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533115.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533116.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533117.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533118.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533119.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533120.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533140.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533141.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533143.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533144.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533158.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533159.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533175.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533176.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533177.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533178.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533179.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533180.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533181.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533182.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533184.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533185.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533268.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533269.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533270.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533271.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533272.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533273.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533274.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533275.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533276.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533277.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533278.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533279.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533280.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533281.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533282.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533283.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533284.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533285.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533286.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533287.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533288.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533289.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533290.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533291.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533292.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533293.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533294.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533295.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533296.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533297.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533298.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533299.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533300.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533301.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533302.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533303.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533304.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533305.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533306.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533307.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533308.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533309.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533310.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533311.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533312.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533313.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533314.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533315.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533316.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533317.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533318.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533319.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533320.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533321.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533322.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533323.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533324.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533325.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533326.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533327.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533328.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533329.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533330.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533332.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533333.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533334.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533335.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533336.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533337.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533338.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533339.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533340.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533341.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533342.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533343.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533344.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533345.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533346.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533347.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533348.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533349.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533350.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533351.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533352.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533353.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533354.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533355.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533356.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533357.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533358.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533359.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533360.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533361.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533362.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533363.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533364.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533365.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533366.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533367.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533368.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533369.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533370.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533371.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533372.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533373.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533374.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533375.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533376.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533377.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533378.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533379.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533380.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533381.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533382.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533383.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533384.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533385.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533386.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533387.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533388.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533389.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533390.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533391.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533392.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533393.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533394.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533395.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533396.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533397.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533398.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533399.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533400.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533401.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533402.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533403.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533404.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533405.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533406.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533407.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533408.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533409.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533410.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533411.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533412.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533413.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533414.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533415.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533416.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533417.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533418.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533419.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533420.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533421.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533422.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533423.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533424.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533425.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533426.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533427.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533428.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533429.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533430.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533431.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533432.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533433.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533434.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533435.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533436.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533437.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533438.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533439.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533440.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533441.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533442.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533443.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533444.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533445.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533446.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533447.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533448.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533449.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533450.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533451.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533452.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533453.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533454.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533455.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533456.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533457.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533458.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533459.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533460.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533461.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533462.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533463.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533464.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533465.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533466.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533467.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533468.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533469.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533470.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533471.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533472.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533473.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533474.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533475.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533476.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533477.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533478.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533479.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533480.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533481.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533482.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533483.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP600\A0533484.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533485.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533486.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533487.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533488.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533489.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533490.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533491.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533492.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533493.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533494.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533495.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533496.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533497.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533499.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533500.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533501.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533502.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533515.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533516.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533517.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533521.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533522.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533533.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533535.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533537.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533540.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533541.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533542.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533543.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533544.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533545.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533546.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533547.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533548.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533549.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533550.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533551.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533552.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP601\A0533553.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533554.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533555.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533556.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533557.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533558.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533559.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533560.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533561.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533562.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533563.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533564.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533565.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533566.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533567.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533568.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533569.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533570.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533571.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533572.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533573.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533574.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533575.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533576.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533577.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533578.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533579.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533580.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533581.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533582.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533583.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533584.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533585.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533586.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533587.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533588.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533589.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533590.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533591.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533592.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533593.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533594.exe Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533595.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533596.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533597.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533598.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533599.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533600.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533601.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533602.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533603.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533604.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533605.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533606.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533607.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533608.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533609.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533610.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533611.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533612.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533613.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533614.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533615.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533616.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533617.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533618.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533619.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533620.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533621.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533622.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533623.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533624.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533625.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533626.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533627.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533628.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533629.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533630.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533631.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533632.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533633.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533634.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533635.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533636.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533637.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533638.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533639.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533640.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533641.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533642.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533643.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533644.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533645.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533646.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533647.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533648.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533649.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533650.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533651.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533652.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533653.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533654.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533655.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533656.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533657.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533658.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533659.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533660.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533661.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533662.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533663.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533664.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533665.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533666.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533667.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533668.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533669.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533670.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533671.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533672.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533673.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533674.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533675.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533676.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533677.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533678.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533679.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533680.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533681.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533682.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533683.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533684.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533685.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533686.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533687.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533688.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533689.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533690.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533691.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533692.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533693.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533694.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533695.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533696.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533697.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533698.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533699.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533700.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533701.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533702.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533703.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533704.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533705.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533706.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533707.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533708.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533709.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533710.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533711.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533712.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533713.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533714.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533716.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533717.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533718.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533720.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533722.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533724.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533725.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533726.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533728.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533730.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533732.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533733.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533734.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533735.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533736.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533737.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533738.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533739.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533740.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533741.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533742.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533743.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533744.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533745.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533746.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533747.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533748.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533749.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533750.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533751.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533752.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533753.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533754.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533755.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533756.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533757.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533758.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533759.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533760.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533761.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533762.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533763.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533764.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533765.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533766.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533767.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533768.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533769.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533770.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533771.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533772.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533773.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533774.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533775.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533776.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533777.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533778.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533779.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533780.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533781.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533782.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533783.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533784.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533785.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533786.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533787.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533788.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533789.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533790.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533791.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533792.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533793.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533794.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533795.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533796.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533797.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533798.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533799.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533800.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533801.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533802.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533803.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533805.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533806.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533807.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533808.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533809.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533810.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533811.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533812.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533813.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533814.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533815.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533816.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533817.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533818.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533819.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533820.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533821.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533822.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533823.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533824.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533825.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533826.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533827.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533828.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533829.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533830.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533831.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533832.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533833.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533834.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533835.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533836.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533837.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533838.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533839.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533840.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533841.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533842.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533843.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533844.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533845.EXE Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533846.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533854.dll Infected: Trojan-PSW.Win32.OnLineGames.pub skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533855.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533856.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533857.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533858.sys Infected: Trojan-PSW.Win32.OnLineGames.pvb skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533862.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533863.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533864.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533865.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533866.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533867.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533868.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533869.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533870.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533871.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533872.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533873.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533874.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533875.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533876.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533877.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533878.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533879.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533880.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533881.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533882.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533883.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533884.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533885.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533886.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533887.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533888.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533889.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533890.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533891.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533892.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533893.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533894.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533895.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533896.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533897.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533898.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533899.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533900.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533901.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533902.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533903.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533904.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533905.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533906.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533907.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533908.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533909.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533910.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533911.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533912.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533913.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533914.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533915.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533916.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533917.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533918.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533919.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533920.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533921.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533922.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533923.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533924.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533925.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533926.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533927.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533928.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533929.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533930.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533931.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533932.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533933.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533934.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533935.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533936.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533937.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533938.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533939.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533940.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533941.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533942.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533943.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533944.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533945.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533946.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533947.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533948.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533949.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533950.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533951.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533952.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533953.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533954.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533955.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533956.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533957.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533958.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533959.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533960.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533961.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533962.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533963.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533964.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533965.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533966.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533967.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533968.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533969.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533970.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533971.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533972.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533973.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533974.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533975.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533976.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533977.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533978.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533989.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP602\A0533990.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534006.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534007.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534008.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534009.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534011.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534014.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534015.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534017.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534019.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534020.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534021.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534022.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534023.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534024.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534025.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534026.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534027.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534028.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534029.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534030.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534031.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534032.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534033.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534034.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534035.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534036.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534037.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534038.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534039.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534040.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534041.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534042.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534043.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534044.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534045.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534046.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534052.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534053.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534054.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534055.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534056.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534057.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534058.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534059.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534060.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534061.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534062.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534063.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534064.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534065.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534066.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534067.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP604\A0534068.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534069.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534070.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534071.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534072.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534073.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534074.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534075.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534076.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534077.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534078.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534079.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534080.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534081.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534082.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534083.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534084.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534085.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534086.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534087.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534088.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534089.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534090.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534091.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534092.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534093.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534096.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534097.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534098.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534099.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534100.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534101.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534102.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534103.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534104.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534105.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534106.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534107.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534108.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534109.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534110.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534111.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534112.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534113.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534114.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534115.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534116.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534117.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534118.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534119.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534120.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534121.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534122.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534123.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534124.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534125.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534130.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534131.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534138.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534139.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534140.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534141.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534142.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534143.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534144.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534145.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534146.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534147.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534148.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534149.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534150.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534151.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534152.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534153.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534154.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534155.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534156.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534157.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534158.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534159.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534160.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534161.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534162.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534163.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534164.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534165.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534166.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534167.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534168.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534169.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534170.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534171.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534172.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534173.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534174.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534175.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534176.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534177.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534178.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534179.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534180.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534181.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534182.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534183.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534184.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534185.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534186.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534187.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534188.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534189.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534190.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534191.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534192.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534193.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534194.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534195.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534196.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534197.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534198.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534199.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534200.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534201.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534202.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534203.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534205.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534206.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534207.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534208.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534209.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534210.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534213.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534214.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534215.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534216.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534217.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534218.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534219.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534220.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534221.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534222.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534223.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534224.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534225.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534226.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534227.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534228.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534229.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534230.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534231.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534232.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534233.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534234.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534235.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534236.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534237.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534238.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534239.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534240.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534241.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534242.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534243.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534244.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534245.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534246.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534247.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534248.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534249.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534250.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534251.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534253.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534254.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534255.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534256.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534258.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534259.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534260.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP605\A0534261.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534278.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534280.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534282.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534283.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534284.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534285.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534286.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534287.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534288.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534289.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534290.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534291.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534292.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534294.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534295.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534296.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534297.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534298.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534299.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534300.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534301.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534302.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534303.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534304.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534305.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534306.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534307.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534309.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534310.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534311.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534312.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534313.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534314.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534315.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534316.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534317.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534318.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534320.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534321.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534322.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534323.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534325.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534326.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534327.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534328.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534329.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534330.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534331.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534332.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534333.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534334.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534335.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534336.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534337.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534338.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534339.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534340.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534341.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534342.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534343.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534344.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534345.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534346.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534347.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534348.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534349.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534350.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534351.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534352.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534353.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534354.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534355.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534356.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534357.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534358.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534360.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534361.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534362.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534363.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534364.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534365.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534366.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534367.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534368.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534369.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534370.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534371.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534372.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534373.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534374.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534375.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534376.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534377.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534378.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534379.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534380.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534381.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534382.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534383.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534384.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534385.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534386.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534387.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534388.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534389.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534390.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534391.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534392.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534393.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534394.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534395.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534396.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534397.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534398.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534399.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534400.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534401.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534402.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534403.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534404.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534405.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534406.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534407.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534408.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534409.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534410.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534411.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534412.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534413.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534414.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534415.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534416.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534417.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534418.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534419.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534420.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534421.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534422.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534423.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534424.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534425.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534426.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534427.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534428.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534429.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534430.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534431.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534432.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534433.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534434.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534435.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534436.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534438.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534439.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534440.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534441.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534442.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534443.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534444.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534445.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534446.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534447.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534448.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534449.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534450.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534451.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534452.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534453.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534454.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534455.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534456.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534457.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534458.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534459.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534460.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534461.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534462.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534463.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534464.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534465.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534466.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534467.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534468.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534469.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534470.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534471.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534472.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534473.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534474.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534475.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534476.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534477.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534478.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534479.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534480.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534481.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534482.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534483.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534484.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534485.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534486.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534487.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534488.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534489.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534490.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534491.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534492.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534493.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534494.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534495.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534496.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534497.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534498.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534499.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534500.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534501.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534502.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534503.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534504.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534505.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534506.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534507.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534508.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534509.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534510.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534511.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534512.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534513.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534514.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534515.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534516.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534517.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534518.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534519.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534520.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534521.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534522.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534523.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534524.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534525.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534526.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534527.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534528.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534529.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534530.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534531.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534532.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534533.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534534.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534535.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534536.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534537.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534538.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534539.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534540.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534541.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534542.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534543.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534544.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534545.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534546.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534547.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534548.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534549.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534550.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534551.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534552.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534553.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534554.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534555.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534556.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534557.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534558.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534559.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534560.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534561.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534562.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534563.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534564.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534565.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534566.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534567.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534568.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534569.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534570.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534571.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534572.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534573.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534574.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534575.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534576.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534577.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534578.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534579.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534580.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534581.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534582.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534583.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534584.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534585.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534586.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534587.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534588.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534589.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534590.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534591.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534592.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534593.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534594.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534595.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534596.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534597.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534598.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534599.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534600.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534601.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534602.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534603.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534604.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534605.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534606.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534607.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534608.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534609.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534610.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534611.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534612.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534613.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534614.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534619.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534620.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534621.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534622.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534623.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534624.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534625.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534626.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534627.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534628.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534629.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534630.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534643.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534644.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534646.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534649.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534650.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534651.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534652.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534653.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534654.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534655.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534656.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534657.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534658.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534659.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534660.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534661.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534662.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534663.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534664.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534665.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534666.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534667.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534668.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534669.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534670.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534671.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534672.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534673.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534674.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534675.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534676.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534677.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534678.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534679.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534680.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534681.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534682.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534683.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534684.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534685.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534686.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534687.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534688.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534689.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534690.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534691.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534692.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534693.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534694.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534695.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534696.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534697.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534698.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534699.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534700.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534701.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534702.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534703.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534704.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534705.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534706.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534707.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534708.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534709.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534710.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534711.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534712.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534713.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534714.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534715.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534716.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534717.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534718.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534719.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534720.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534721.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534722.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534723.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534724.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534725.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534726.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534727.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534728.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534729.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534730.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534731.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534732.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534733.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534734.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534735.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534736.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534737.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534738.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534739.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534740.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534741.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534742.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534743.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534744.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534745.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534746.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534747.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534748.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534749.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534750.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534751.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534752.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534753.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534754.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534755.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534756.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534757.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534758.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534759.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534760.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534772.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534775.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534777.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534779.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534780.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534781.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534782.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534783.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534784.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534785.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534786.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534787.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534788.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534789.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534790.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534791.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534792.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534793.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534794.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534795.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534796.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534797.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534798.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534799.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534800.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534801.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534802.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534803.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534804.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534805.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534806.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534807.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534808.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534809.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534810.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534811.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534812.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534813.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534814.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534815.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534816.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534817.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534818.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534819.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534820.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534821.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534822.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534824.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534825.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534826.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534827.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534828.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534829.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534830.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534831.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534832.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534833.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534834.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534835.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534836.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534837.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534838.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534839.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534840.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534841.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534843.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534844.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534845.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534847.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534848.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534849.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534850.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534851.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534852.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534853.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534854.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534855.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534856.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534857.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534858.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534859.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534860.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534861.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534862.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534863.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534864.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534865.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534866.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534867.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534868.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534869.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534870.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534871.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534872.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534873.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534874.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534875.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534876.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534877.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534878.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534879.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534880.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534881.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534882.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534883.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534884.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534885.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534886.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534887.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534888.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534889.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534890.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534891.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534892.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534893.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534894.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534895.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534896.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534897.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534898.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534899.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534900.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534901.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534902.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534903.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534904.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534905.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534906.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534907.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534908.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534909.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534910.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534911.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534912.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534913.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534914.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534915.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534916.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534917.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534918.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534919.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534920.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534921.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534922.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534923.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534924.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534925.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534926.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534927.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534928.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534929.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534930.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534931.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534932.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534933.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534934.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534935.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534936.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534937.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534938.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534939.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534940.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534941.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534942.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534943.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534944.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534945.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534946.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534947.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534949.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534950.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534951.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534952.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534953.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534954.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534955.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534956.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534957.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534958.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534959.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534960.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534961.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534962.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534963.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534964.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534965.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534966.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534967.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534968.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534969.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534970.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534971.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534972.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534973.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534974.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534975.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534976.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534977.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534978.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534979.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534980.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534981.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534982.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534983.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534984.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534985.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534986.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534987.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534988.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534989.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534990.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534991.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534992.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534993.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534994.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534995.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534996.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534997.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534998.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0534999.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535000.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535001.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535002.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535003.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535004.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535005.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535006.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535007.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535008.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535009.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535010.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535011.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535012.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535013.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535014.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535015.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535016.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535017.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535018.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535019.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535020.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535021.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535022.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535023.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535024.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535025.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535026.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535027.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535028.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535029.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535030.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535031.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535032.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535033.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535034.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535035.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535036.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535037.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535038.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535039.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535040.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535041.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535042.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535043.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535044.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535045.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535046.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535047.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535048.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535049.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535050.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535051.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535052.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535053.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535054.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535055.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535056.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535057.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535058.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535059.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535060.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535061.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535062.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535063.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535064.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535065.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535066.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535067.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535068.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535069.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535070.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535071.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535072.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535073.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535074.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535075.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535076.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535077.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535078.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535079.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535080.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535081.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535082.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535083.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535084.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535085.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535086.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535087.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535088.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535089.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535092.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535093.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535094.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535095.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535096.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535097.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535098.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535099.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535100.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535101.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535102.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535103.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535105.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535106.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535107.exe Infected: Trojan-PSW.Win32.OnLineGames.puc skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535108.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535109.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535110.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535111.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535112.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535113.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535114.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535115.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535116.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535124.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535143.com Infected: Worm.Win32.AutoRun.cas skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP606\A0535181.dll Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\System Volume Information\_restore{916D0DCA-2339-483A-B833-5F27C0AB6D6C}\RP611\change.log Object is locked skipped C:\upload_moi_TOSHIBA-USER.tar.gz/upload_moi.tar/qoobox/Quarantine/catchme2008-01-30_145522.49.zip/Autorun.inf Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\upload_moi_TOSHIBA-USER.tar.gz/upload_moi.tar/qoobox/Quarantine/catchme2008-01-30_145522.49.zip/Autorun.inf.1 Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\upload_moi_TOSHIBA-USER.tar.gz/upload_moi.tar/qoobox/Quarantine/catchme2008-01-30_145522.49.zip/Autorun.inf.2 Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\upload_moi_TOSHIBA-USER.tar.gz/upload_moi.tar/qoobox/Quarantine/catchme2008-01-30_145522.49.zip Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\upload_moi_TOSHIBA-USER.tar.gz/upload_moi.tar Infected: Trojan-PSW.Win32.OnLineGames.psv skipped C:\upload_moi_TOSHIBA-USER.tar.gz GZIP: infected - 5 skipped C:\WINDOWS\Debug\PASSWD.LOG Object is locked skipped C:\WINDOWS\SchedLgU.Txt Object is locked skipped C:\WINDOWS\SoftwareDistribution\EventCache\{D18069A7-ED68-44D4-A7D0-E36C4401175D}.bin Object is locked skipped C:\WINDOWS\SoftwareDistribution\ReportingEvents.log Object is locked skipped C:\WINDOWS\system32\CatRoot2\edb.log Object is locked skipped C:\WINDOWS\system32\CatRoot2\tmp.edb Object is locked skipped C:\WINDOWS\system32\config\AppEvent.Evt Object is locked skipped C:\WINDOWS\system32\config\default Object is locked skipped C:\WINDOWS\system32\config\default.LOG Object is locked skipped C:\WINDOWS\system32\config\Internet.evt Object is locked skipped C:\WINDOWS\system32\config\SAM Object is locked skipped C:\WINDOWS\system32\config\SAM.LOG Object is locked skipped C:\WINDOWS\system32\config\SecEvent.Evt Object is locked skipped C:\WINDOWS\system32\config\SECURITY Object is locked skipped C:\WINDOWS\system32\config\SECURITY.LOG Object is locked skipped C:\WINDOWS\system32\config\software Object is locked skipped C:\WINDOWS\system32\config\software.LOG Object is locked skipped C:\WINDOWS\system32\config\SysEvent.Evt Object is locked skipped C:\WINDOWS\system32\config\system Object is locked skipped C:\WINDOWS\system32\config\system.LOG Object is locked skipped C:\WINDOWS\system32\h323log.txt Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\INDEX.BTR Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\INDEX.MAP Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\MAPPING.VER Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\MAPPING1.MAP Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\MAPPING2.MAP Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\OBJECTS.DATA Object is locked skipped C:\WINDOWS\system32\wbem\Repository\FS\OBJECTS.MAP Object is locked skipped C:\WINDOWS\WindowsUpdate.log Object is locked skipped Scan process completed. il est geant je c. et dis moi si je fais les memes operations (combofix...) sur les autres pc ca marche? ou il faut un nouveau hijackthis? Encore MERCI
  18. j'ai oublie de vous demander quel antivirus me conseillez vous pour une bonne protection? norton 10 est bon? Merci
  19. Gof desole d'avoir tarde mais g eu un petit probleme de connection. Voici le rapport de la derniere manoeuvre: ComboFix 08-01-30.6 - Sami Chacar 2008-01-30 17:17:38.4 - NTFSx86 Microsoft Windows XP Professional 5.1.2600.2.1252.1.1033.18.545 [GMT 2:00] Running from: C:\Documents and Settings\Sami Chacar\Desktop\ComboFix.exe Command switches used :: C:\Documents and Settings\Sami Chacar\Desktop\CFScript.txt * Created a new restore point WARNING -THIS MACHINE DOES NOT HAVE THE RECOVERY CONSOLE INSTALLED !! FILE C:\fooool.exe C:\gendel32.exe C:\ntde1ect.com C:\WINDOWS\system32\ahr.exe F:\fooool.exe F:\gendel32.exe F:\ntde1ect.com . ((((((((((((((((((((((((((((((((((((((( Other Deletions ))))))))))))))))))))))))))))))))))))))))))))))))) . C:\gendel32.exe . ((((((((((((((((((((((((((((((((((((((( Drivers/Services ))))))))))))))))))))))))))))))))))))))))))))))))) . -------\poof ((((((((((((((((((((((((( Files Created from 2007-12-28 to 2008-01-30 ))))))))))))))))))))))))))))))) . 2008-01-30 15:31 . 2008-01-30 15:31 14,570,035 --a------ C:\upload_moi_TOSHIBA-USER.tar.gz 2008-01-30 14:47 . 2005-04-03 14:02 8,944 --a------ C:\WINDOWS\system32\drivers\UnHackMeDrv.sys 2008-01-30 12:33 . 2008-01-30 12:33 <DIR> d-------- C:\Program Files\PrevxCSI 2008-01-30 10:14 . 2008-01-30 10:14 <DIR> d-------- C:\Program Files\Avira 2008-01-30 10:14 . 2008-01-30 10:14 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\Avira 2008-01-30 09:40 . 2008-01-30 09:40 <DIR> d-------- C:\RootkitNO 2008-01-30 09:40 . 2008-01-30 09:40 123 --a------ C:\WINDOWS\rootkitno.ini 2008-01-30 09:30 . 2008-01-30 09:30 77 --a------ C:\WINDOWS\lsoon.ini 2008-01-30 09:20 . 2008-01-30 09:20 <DIR> d-------- C:\backreg 2008-01-30 09:20 . C:\WINDOWS\(2) C:\ComboFix\winstart.bat 2008-01-30 09:18 . 2008-01-30 09:19 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\Regrun 2008-01-30 09:18 . 2003-09-06 15:55 57,556 --a------ C:\WINDOWS\guard.bmp 2008-01-30 09:17 . 2008-01-30 09:17 <DIR> d-------- C:\Program Files\Greatis 2008-01-30 08:58 . 2008-01-30 12:21 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\PrevxCSI 2008-01-30 08:58 . 2008-01-30 08:58 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\Prevx 2008-01-28 21:01 . 2008-01-28 21:01 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\Zylom 2008-01-28 15:22 . 2008-01-28 15:58 <DIR> d-------- C:\A_MAN_APART 2008-01-28 15:17 . 2008-01-28 15:17 <DIR> d-------- C:\Program Files\DVD Shrink 2008-01-28 15:17 . 2008-01-28 15:20 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\DVD Shrink 2008-01-28 10:56 . 2008-01-28 11:09 <DIR> d-------- C:\Program Files\CDex_170b2 2008-01-23 14:44 . 1999-04-23 22:22 151,552 --a------ C:\WINDOWS\system32\MSOSS.DLL 2008-01-23 11:18 . 2008-01-23 11:24 <DIR> d-------- C:\UnrealTournament 2008-01-08 13:58 . 2004-08-04 14:00 16,896 --a--c--- C:\WINDOWS\system32\dllcache\tftp.exe 2007-12-02 11:09 . 2007-12-02 11:09 <DIR> d-------- C:\Program Files\Autodesk Drawing Explorer 2007-12-02 10:52 . 2007-12-02 10:52 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\Template 2007-12-01 15:42 . 2007-12-01 15:42 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\CADfx 2007-12-01 14:48 . 2007-12-01 14:48 <DIR> d-------- C:\cadfx . (((((((((((((((((((((((((((((((((((((((( Find3M Report )))))))))))))))))))))))))))))))))))))))))))))))))))) . 2008-01-29 16:30 --------- d-----w C:\Program Files\Common Files\Symantec Shared 2008-01-29 15:13 --------- d-----w C:\Program Files\Symantec 2008-01-28 10:11 --------- d-----w C:\Program Files\Norton SystemWorks 2008-01-24 12:00 --------- d--h--w C:\Program Files\InstallShield Installation Information 2008-01-24 11:38 --------- d-----w C:\Program Files\Codemasters 2008-01-21 05:01 --------- d-----w C:\Documents and Settings\Sami Chacar\Application Data\AdobeUM 2007-12-02 19:59 --------- d-----w C:\Program Files\AutoCAD 2006 2006-09-05 12:42 0 ----a-w C:\Documents and Settings\Sami Chacar\Application Data\wklnhst.dat 2003-08-27 22:19 36,963 ----a-r C:\Program Files\Common Files\SM1updtr.dll . ((((((((((((((((((((((((((((((((((((( Reg Loading Points )))))))))))))))))))))))))))))))))))))))))))))))))) . . *Note* empty entries & legit default entries are not shown REGEDIT4 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "Norton SystemWorks"="C:\Program Files\Norton SystemWorks\cfgwiz.exe" [2004-09-10 04:12 132248] "ctfmon.exe"="C:\WINDOWS\system32\ctfmon.exe" [2004-08-04 14:00 15360] "MSMSGS"="C:\Program Files\Messenger\msmsgs.exe" [2004-10-13 18:24 1694208] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "TPSMain"="TPSMain.exe" [2004-08-27 19:34 278528 C:\WINDOWS\system32\TPSMain.exe] "THotkey"="C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe" [2005-01-15 02:45 352256] "TMEPROP"="C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe" [2005-01-15 07:26 253952] "DockMsgFrom"="C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe" [2004-11-12 00:04 114688] "BluetoothAuthenticationAgent"="bthprops.cpl" [2004-08-04 14:00 110592 C:\WINDOWS\system32\bthprops.cpl] "ATIPTA"="C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe" [2004-12-08 07:10 344064] "SoundMAXPnP"="C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe" [2004-07-27 23:48 1388544] "SoundMAX"="C:\Program Files\Analog Devices\SoundMAX\Smax4.exe" [2004-08-06 18:27 860160] "SynTPLpr"="C:\Program Files\Synaptics\SynTP\SynTPLpr.exe" [2004-10-15 01:28 98394] "SynTPEnh"="C:\Program Files\Synaptics\SynTP\SynTPEnh.exe" [2004-10-15 01:26 688218] "LtMoh"="C:\Program Files\ltmoh\Ltmoh.exe" [2003-09-06 03:16 184320] "AGRSMMSG"="AGRSMMSG.exe" [2004-10-29 00:37 88363 C:\WINDOWS\agrsmmsg.exe] "NDSTray.exe"="C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe" [2004-11-13 07:54 929792] "Tvs"="C:\Program Files\Toshiba\Tvs\TvsTray.exe" [2004-11-13 03:57 73728] "TFncKy"="C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe" [2004-10-26 01:23 114688] "PadTouch"="C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe" [2004-09-08 00:03 1077301] "SmoothView"="C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe" [2004-09-16 01:03 135168] "dla"="C:\WINDOWS\system32\dla\tfswctrl.exe" [2004-08-03 11:05 122939] "SM1BG"="C:\WINDOWS\SM1BG.EXE" [2003-08-28 00:20 94208] "Pinger"="c:\toshiba\ivp\ism\pinger.exe" [2004-11-03 21:12 147456] "IntelWireless"="C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe" [2004-10-15 20:27 385024] "EOUApp"="C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe" [2004-10-15 20:31 356352] "ccApp"="C:\Program Files\Common Files\Symantec Shared\ccApp.exe" [2008-01-17 11:42 58728] "NeroFilterCheck"="C:\WINDOWS\system32\NeroCheck.exe" [2001-07-09 19:50 155648] "RemoteControl"="C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe" [2003-11-30 11:04 32768] "iTunesHelper"="C:\Program Files\iTunes\iTunesHelper.exe" [2005-06-25 00:16 278528] "QuickTime Task"="C:\Program Files\QuickTime\qttask.exe" [2005-10-22 18:41 98304] "Symantec NetDriver Monitor"="C:\PROGRA~1\SYMNET~1\SNDMon.exe" [2008-01-29 17:12 100056] "RealTray"="C:\Program Files\Real\RealPlayer\RealPlay.exe" [2005-01-05 21:51 26112] C:\Documents and Settings\All Users\Start Menu\Programs\Startup\ AutoCAD Startup Accelerator.lnk - C:\Program Files\Common Files\Autodesk Shared\acstart16.exe [2005-03-05 16:18:22 10872] Bluetooth Manager.lnk - C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtMng.exe [2004-11-10 21:00:12 471040] RAMASST.lnk - C:\WINDOWS\system32\RAMASST.exe [2004-12-31 06:58:01 155648] [HKEY_LOCAL_MACHINE\software\microsoft\windows nt\currentversion\winlogon\notify\IntelWireless] C:\Program Files\Intel\Wireless\Bin\LgNotify.dll 2004-10-15 20:27 110592 C:\Program Files\Intel\Wireless\Bin\LgNotify.dll R3 NPDriver;Norton Unerase Protection Driver;C:\WINDOWS\system32\Drivers\NPDRIVER.SYS [2004-08-31 08:38] S3 pxark;pxark;C:\WINDOWS\system32\drivers\pxark.sys [] S3 SDdriver;SDdriver;C:\WINDOWS\system32\Drivers\sddriver.sys [2004-08-31 08:23] S3 tosrfec;Bluetooth ACPI from TOSHIBA;C:\WINDOWS\system32\DRIVERS\tosrfec.sys [2004-05-18 01:18] [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{10c1a928-4391-11da-aa49-0013ce2f82ae}] \Shell\AutoRun\command - C:\WINDOWS\system32\RunDLL32.EXE Shell32.DLL,ShellExec_RunDLL antihost.exe . Contents of the 'Scheduled Tasks' folder "2008-01-25 21:07:16 C:\WINDOWS\Tasks\Norton AntiVirus - Scan my computer - Sami Chacar.job" - C:\PROGRA~1\NORTON~2\NORTON~3\Navw32.exe "2008-01-28 10:11:42 C:\WINDOWS\Tasks\Norton SystemWorks One Button Checkup.job" - C:\Program Files\Norton SystemWorks\OBC.exe "2008-01-27 22:00:00 C:\WINDOWS\Tasks\Symantec Drmc.job" - C:\Program Files\Common Files\Symantec Shared\SymDrmc.exe . ************************************************************************** catchme 0.3.1344 W2K/XP/Vista - rootkit/stealth malware detector by Gmer, http://www.gmer.net Rootkit scan 2008-01-30 17:20:44 Windows 5.1.2600 Service Pack 2 NTFS scanning hidden processes ... scanning hidden autostart entries ... scanning hidden files ... scan completed successfully hidden files: 0 ************************************************************************** . --------------------- DLLs Loaded Under Running Processes --------------------- PROCESS: C:\WINDOWS\Explorer.EXE [6.00.2900.3156] -> C:\Program Files\Toshiba\Toshiba Applet\TMEEJDLL.dll . ------------------------ Other Running Processes ------------------------ . C:\WINDOWS\system32\Ati2evxx.exe C:\Program Files\Intel\Wireless\Bin\EvtEng.exe C:\Program Files\Intel\Wireless\Bin\S24EvMon.exe C:\Program Files\Intel\Wireless\Bin\ZcfgSvc.exe C:\WINDOWS\system32\Ati2evxx.exe C:\PROGRA~1\Intel\Wireless\Bin\1XConfig.exe C:\WINDOWS\system32\TPSMain.exe C:\WINDOWS\system32\TPSBattM.exe C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe C:\WINDOWS\system32\rundll32.exe C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe C:\Program Files\Synaptics\SynTP\SynTPLpr.exe C:\Program Files\Synaptics\SynTP\SynTPEnh.exe C:\Program Files\ltmoh\Ltmoh.exe C:\WINDOWS\AGRSMMSG.exe C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe C:\Program Files\Toshiba\Tvs\TvsTray.exe C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe C:\WINDOWS\system32\dla\tfswctrl.exe C:\WINDOWS\SM1BG.EXE C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe C:\Program Files\iTunes\iTunesHelper.exe C:\Program Files\QuickTime\qttask.exe C:\Program Files\Real\RealPlayer\RealPlay.exe C:\Program Files\Messenger\msmsgs.exe C:\Program Files\TOSHIBA\ConfigFree\CFSvcs.exe C:\WINDOWS\system32\DVDRAMSV.exe C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtMng.exe C:\WINDOWS\system32\RAMASST.exe C:\Program Files\Intel\Wireless\Bin\OProtSvc.exe C:\Program Files\Intel\Wireless\Bin\RegSrvc.exe C:\Program Files\Analog Devices\SoundMAX\SMAgent.exe C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\StarWindService.exe c:\Toshiba\IVP\swupdate\swupdtmr.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\TAPPSRV.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\tme3srv.exe C:\WINDOWS\system32\wdfmgr.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosA2dp.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosAVRC.exe C:\Program Files\iPod\bin\iPodService.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtHsp.exe . ************************************************************************** . Completion time: 2008-01-30 17:25:05 - machine was rebooted ComboFix-quarantined-files.txt 2008-01-30 15:25:01 ComboFix2.txt 2008-01-30 13:03:24 . 2008-01-29 15:17:58 --- E O F --- Et dis moi si je refais les memes operations sur les autres pcs que j'ai c cense aller? Encore Merci gof
  20. Il n'ya pas de rapport combofix quarantined voici le rapport du diag help: DiagHelp version v1.4 - http://www.malekal.com excute le Wed 01/30/2008 à 15:29:08.40 Liste des derniers fichies modifies/crees dans windir\system32 et prefetch C:\WINDOWS\prefetch\WINRAR.EXE-39C6DAD9.pf -->1/30/2008 3:28:43 PM C:\WINDOWS\prefetch\IEXPLORE.EXE-27122324.pf -->1/30/2008 3:26:02 PM C:\WINDOWS\prefetch\WINWORD.EXE-37F6AE09.pf -->1/30/2008 3:19:43 PM C:\WINDOWS\prefetch\NAVW32.EXE-286920DF.pf -->1/30/2008 3:19:36 PM C:\WINDOWS\prefetch\NOTEPAD.EXE-336351A9.pf -->1/30/2008 3:19:31 PM C:\WINDOWS\prefetch\WMPLAYER.EXE-18DDEF9D.pf -->1/30/2008 3:16:50 PM C:\WINDOWS\prefetch\WMIPRVSE.EXE-28F301A9.pf -->1/30/2008 3:07:59 PM C:\WINDOWS\prefetch\EXPLORER.EXE-082F38A9.pf -->1/30/2008 3:07:56 PM C:\WINDOWS\prefetch\REGEDIT.EXE-1B606482.pf -->1/30/2008 3:07:51 PM C:\WINDOWS\prefetch\RUNDLL32.EXE-451FC2C0.pf -->1/30/2008 3:07:50 PM C:\WINDOWS\System32\drivers\avipbb.sys -->1/30/2008 10:22:23 AM C:\WINDOWS\System32\drivers\secdrv.sys -->11/13/2007 12:25:53 PM C:\WINDOWS\System32\drivers\tcpip.sys -->10/30/2007 7:20:55 PM C:\WINDOWS\System32\drivers\avgntdd.sys -->8/9/2007 1:04:11 PM C:\WINDOWS\System32\drivers\avgntmgr.sys -->7/18/2007 2:22:19 PM C:\WINDOWS\System32\drivers\mqac.sys -->7/6/2007 12:05:47 PM C:\WINDOWS\System32\drivers\update.sys -->4/23/2007 12:32:54 PM C:\WINDOWS\System32\wpa.dbl -->1/30/2008 2:56:29 PM C:\WINDOWS\System32\CONFIG.NT -->1/30/2008 2:47:13 PM C:\WINDOWS\System32\AUTOEXEC.NT -->1/30/2008 2:47:13 PM C:\WINDOWS\System32\SIntfNT.dll -->1/24/2008 2:55:20 PM C:\WINDOWS\System32\SIntf32.dll -->1/24/2008 2:55:20 PM C:\WINDOWS\System32\SIntf16.dll -->1/24/2008 2:55:19 PM C:\WINDOWS\System32\PerfStringBackup.INI -->1/17/2008 4:40:47 PM C:\WINDOWS\System32\perfh009.dat -->1/17/2008 4:40:47 PM C:\WINDOWS\System32\perfc009.dat -->1/17/2008 4:40:47 PM C:\WINDOWS\System32\ftp.exe -->1/7/2008 4:17:34 PM C:\WINDOWS\System32\MRT.exe -->1/2/2008 8:21:36 PM C:\WINDOWS\System32\MRT.INI -->12/19/2007 11:51:19 PM C:\WINDOWS\System32\TZLog.log -->12/19/2007 11:49:36 PM C:\WINDOWS\System32\tzchange.exe -->11/13/2007 1:31:11 PM C:\WINDOWS\System32\lsasrv.dll -->11/7/2007 11:26:56 AM C:\WINDOWS\System32\quartz.dll -->10/30/2007 12:43:03 AM C:\WINDOWS\System32\xpsp3res.dll -->10/29/2007 12:26:53 PM C:\WINDOWS\System32\wmasf.dll -->10/27/2007 4:40:06 PM C:\WINDOWS\System32\shell32.dll -->10/26/2007 5:36:51 AM C:\WINDOWS\System32\shlwapi.dll -->10/11/2007 8:13:45 AM C:\WINDOWS\System32\shdocvw.dll -->10/11/2007 8:13:45 AM C:\WINDOWS\System32\danim.dll -->10/11/2007 8:13:44 AM C:\WINDOWS\System32\cdfview.dll -->10/11/2007 8:13:44 AM C:\WINDOWS\System32\browseui.dll -->10/11/2007 8:13:44 AM C:\WINDOWS\System32\acad.err -->9/30/2007 2:48:34 PM C:\WINDOWS\WindowsUpdate.log -->1/30/2008 2:56:26 PM C:\WINDOWS\ModemLog_TOSHIBA Software Modem.txt -->1/30/2008 2:55:57 PM C:\WINDOWS\system.ini -->1/30/2008 2:55:33 PM C:\WINDOWS.log -->1/30/2008 2:55:07 PM C:\WINDOWS\bootstat.dat -->1/30/2008 2:55:04 PM C:\WINDOWS\SchedLgU.Txt -->1/30/2008 2:54:12 PM C:\WINDOWS\winstart.bat -->1/30/2008 2:47:13 PM C:\WINDOWS\KB942615-IE7.log -->1/30/2008 1:21:22 PM C:\WINDOWS\setupapi.log -->1/30/2008 1:15:50 PM C:\WINDOWS\KB938127-IE7.log -->1/30/2008 12:34:11 PM C:\WINDOWS\rootkitno.ini -->1/30/2008 9:40:41 AM C:\WINDOWS\Partizan.txt -->1/30/2008 9:36:02 AM C:\WINDOWS\lsoon.ini -->1/30/2008 9:30:10 AM C:\WINDOWS\setupact.log -->1/30/2008 1:25:38 AM C:\WINDOWS\spupdsvc.log -->1/29/2008 6:31:24 PM winlogon.exe Verified: Signed svchost.exe Verified: Signed ws2_32.dll Verified: Signed user32.dll Verified: Signed tcpip.sys Verified: Signed ndis.sys Verified: Signed null.sys Verified: Signed ListDLLs v2.25 - DLL lister for Win9x/NT Copyright © 1997-2004 Mark Russinovich Sysinternals - www.sysinternals.com ------------------------------------------------------------------------------ explorer.exe pid: 3968 Command line: C:\WINDOWS\explorer.exe Base Size Version Path 0x771b0000 0xce000 7.00.5730.0013 C:\WINDOWS\system32\WININET.dll 0x00400000 0x9000 6.00.5441.0000 C:\WINDOWS\system32\Normaliz.dll 0x5dca0000 0x45000 7.00.5730.0013 C:\WINDOWS\system32\iertutil.dll 0x5d090000 0x9a000 5.82.2900.2982 C:\WINDOWS\system32\comctl32.dll 0x63000000 0x13000 7.12.0004.0000 C:\WINDOWS\system32\SynTPFcs.dll 0x10000000 0x10000 C:\Program Files\Toshiba\Toshiba Applet\TMEEJDLL.dll 0x76fd0000 0x7f000 2001.12.4414.0308 C:\WINDOWS\system32\CLBCATQ.DLL 0x77050000 0xc5000 2001.12.4414.0258 C:\WINDOWS\system32\COMRes.dll 0x60c60000 0x26000 16.02.0054.0000 C:\WINDOWS\system32\AcSignIcon.dll 0x74c80000 0x2c000 4.02.5406.0000 C:\WINDOWS\system32\OLEACC.dll 0x76080000 0x65000 6.02.3104.0000 C:\WINDOWS\system32\MSVCP60.dll 0x60d00000 0x39000 16.02.0054.0000 C:\Program Files\Common Files\Autodesk Shared\AcSignCore16.dll 0x76b20000 0x11000 3.05.2284.0000 C:\WINDOWS\system32\ATL.DLL 0x7d1e0000 0x2be000 3.01.4000.4039 C:\WINDOWS\system32\msi.dll 0x017a0000 0x5c9000 7.00.5730.0013 C:\WINDOWS\system32\ieframe.dll 0x61410000 0x124000 7.00.5730.0013 C:\WINDOWS\system32\urlmon.dll 0x74b30000 0x3b000 7.00.5730.0013 C:\WINDOWS\system32\webcheck.dll 0x00f00000 0xd000 1.00.0008.0000 C:\WINDOWS\system32\TPwrCfg.DLL 0x00f10000 0x15000 1.00.0004.0000 C:\WINDOWS\system32\TPwrReg.dll 0x00fd0000 0xe000 1.00.0003.0000 C:\WINDOWS\system32\TPSTrace.DLL 0x7c3a0000 0x7b000 7.10.3077.0000 C:\WINDOWS\system32\MSVCP71.dll 0x7c340000 0x56000 7.10.3052.0004 C:\WINDOWS\system32\MSVCR71.dll 0x6af30000 0x3d000 103.00.0011.0004 C:\Program Files\Common Files\Symantec Shared\ccL30.dll 0x02c60000 0xc000 6.00.0001.1091 C:\Program Files\Adobe\Acrobat 6.0\Reader\ActiveX\AcroIEHelper.dll 0x74320000 0x3d000 3.525.1117.0000 C:\WINDOWS\system32\ODBC32.dll 0x02f70000 0x17000 3.525.1117.0000 C:\WINDOWS\system32\odbcint.dll 0x086c0000 0x244000 10.00.0000.3702 C:\WINDOWS\system32\wmvcore.dll 0x070d0000 0x3b000 10.00.0000.4060 C:\WINDOWS\system32\WMASF.DLL 0x01260000 0x2c000 C:\Program Files\WinRAR\rarext.dll 0x02c00000 0x35000 11.00.0016.0002 C:\Program Files\Norton SystemWorks\Norton AntiVirus\NavShExt.dll 0x7c120000 0x19000 7.10.3077.0000 C:\WINDOWS\system32\ATL71.DLL 0x02d30000 0x11000 7.00.0000.0010 C:\Program Files\Avira\AntiVir PersonalEdition Classic\shlext.dll 0x02ff0000 0x102000 7.10.3077.0000 C:\Program Files\Avira\AntiVir PersonalEdition Classic\MFC71U.DLL 0x7c300000 0xe000 7.10.3077.0000 C:\MATLAB7\bin\win32\MFC71ENU.DLL ListDLLs v2.25 - DLL lister for Win9x/NT Copyright © 1997-2004 Mark Russinovich Sysinternals - www.sysinternals.com ------------------------------------------------------------------------------ winlogon.exe pid: 1064 Command line: winlogon.exe Base Size Version Path 0x01000000 0x80000 \??\C:\WINDOWS\system32\winlogon.exe 0x5d090000 0x9a000 5.82.2900.2982 C:\WINDOWS\system32\COMCTL32.dll 0x74320000 0x3d000 3.525.1117.0000 C:\WINDOWS\system32\ODBC32.dll 0x20000000 0x17000 3.525.1117.0000 C:\WINDOWS\system32\odbcint.dll 0x10000000 0x19000 6.14.0010.4110 C:\WINDOWS\system32\Ati2evxx.dll 0x01340000 0x3b000 1.07.0018.0005 C:\WINDOWS\system32\WgaLogon.dll 0x76fd0000 0x7f000 2001.12.4414.0308 C:\WINDOWS\system32\CLBCATQ.DLL 0x77050000 0xc5000 2001.12.4414.0258 C:\WINDOWS\system32\COMRes.dll 0x014a0000 0x1e000 9.00.0001.0000 C:\Program Files\Intel\Wireless\Bin\LgNotify.dll Volume in drive C is SQ003558 Volume Serial Number is B4BD-A73C Directory of C:\WINDOWS\system32 08/04/2004 02:00 PM 6,144 csrss.exe 1 File(s) 6,144 bytes 0 Dir(s) 5,035,790,336 bytes free Contenu de Downloaded Program Files Volume in drive C is SQ003558 Volume Serial Number is B4BD-A73C Directory of C:\WINDOWS\Downloaded Program Files 01/28/2008 09:01 PM <DIR> . 01/28/2008 09:01 PM <DIR> .. 12/31/2004 03:52 AM 65 desktop.ini 03/05/2005 03:23 PM 302,712 IDrop.ocx 03/05/2005 03:57 PM 113,784 IDropENU.dll 06/11/2007 11:21 AM 5,021 swflash.inf 06/15/2004 09:52 AM 221,184 zylomloader.dll 05/18/2004 12:40 PM 229 zylomloader.inf 6 File(s) 642,995 bytes Total Files Listed: 6 File(s) 642,995 bytes 2 Dir(s) 5,035,786,240 bytes free Recherche de rootkit! (Merci S!Ri) Recherche d'infections connues Export des clefs sensibles.. Liste des fichiers en exception sur le pare-feu XP SP2 Export de la clef SharedTaskScheduler [sharedTaskScheduler] exports des policies REGEDIT4 [system] "dontdisplaylastusername"=dword:00000000 "legalnoticecaption"="" "legalnoticetext"="" "shutdownwithoutlogon"=dword:00000001 "undockwithoutlogon"=dword:00000001 Export des clefs sensibles.. Rechercher adresses sensibles dans le fichier HOSTS... catchme 0.3.1319 W2K/XP/Vista - rootkit/stealth malware detector by Gmer, http://www.gmer.net Rootkit scan 2008-01-30 15:30:25 Windows 5.1.2600 Service Pack 2 NTFS scanning hidden services & system hive ... [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BTHPORT\Parameters\Keys037a209280] [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\vax347s\Config\jdgg40] "ujdew"=hex:20,02,00,00,7e,8e,dc,a1,d7,54,7b,f4,9a,27,83,d7,6a,c6,0f,d4,de,.. "ljej40"=hex:ca,0d,96,95,35,7a,95,a3,45,8b,18,a0,4a,85,24,5a,6a,bb,61,0b,b9,.. "ljej41"=hex:0e,0d,96,95,4d,7a,95,a3,44,8b,19,a0,4b,85,24,5a,6a,bb,61,0b,79,.. "ljej42"=hex:0e,0d,96,95,4d,7a,95,a3,44,8b,19,a0,4b,85,24,5a,6a,bb,61,0b,79,.. "ljej43"=hex:0e,0d,96,95,4d,7a,95,a3,44,8b,19,a0,4b,85,24,5a,6a,bb,61,0b,79,.. "ljej44"=hex:0e,0d,96,95,4d,7a,95,a3,44,8b,19,a0,4b,85,24,5a,6a,bb,61,0b,79,.. [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\BTHPORT\Parameters\Keys037a209280] scanning hidden registry entries ... [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E9F81423-211E-46B6-9AE0-38568BC5CF6F}] "DisplayName"="Alcohol 120% (Trial Version)" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Prefetcher] "TracesProcessed"=dword:00000477 scanning hidden files ... scan completed successfully hidden services: 0 hidden files: 0 KProcCheck Version 0.2-beta1 Proof-of-Concept by SIG^2 (www.security.org.sg) Process list by traversal of KiWaitListHead 4 - System 164 - ltmoh.exe 208 - iPodService.exe 336 - iexplore.exe 460 - TPSMain.exe 492 - THotkey.exe 500 - rundll32.exe 520 - atiptaxx.exe 568 - 1XConfig.exe 604 - SNDSrvc.exe 1020 - SynTPLpr.exe 1040 - csrss.exe 1064 - winlogon.exe 1084 - agrsmmsg.exe 1108 - services.exe 1120 - lsass.exe 1156 - TvsTray.exe 1204 - SM1bg.exe 1216 - SynTPEnh.exe 1220 - svchost.exe 1288 - ati2evxx.exe 1300 - svchost.exe 1348 - NDSTray.exe 1416 - svchost.exe 1452 - svchost.exe 1488 - EvtEng.exe 1544 - S24EvMon.exe 1612 - PadExe.exe 1736 - EOUWiz.exe 1740 - CCAPP.EXE 1844 - svchost.exe 1904 - ZCfgSvc.exe 1912 - realplay.exe 1964 - svchost.exe 1984 - ati2evxx.exe 2160 - ctfmon.exe 2272 - CFSvcs.exe 2308 - msmsgs.exe 2392 - TosBtMng.exe 2672 - MDM.EXE 2908 - NPFMNTOR.EXE 3068 - NPROTECT.EXE 3264 - OProtSvc.exe 3544 - symlcsvc.exe 3568 - TAPPSRV.exe 3872 - alg.exe 3968 - explorer.exe 3976 - cmd.exe Total number of processes = 48 NOTE: Under WinXP, this will not show all processes. KProcCheck Version 0.2-beta1 Proof-of-Concept by SIG^2 (www.security.org.sg) Driver/Module list by traversal of PsLoadedModuleList 804D7000 - \WINDOWS\system32\ntoskrnl.exe 806EC000 - \WINDOWS\system32\hal.dll F7B2E000 - \WINDOWS\system32\KDCOM.DLL F7A3E000 - \WINDOWS\system32\BOOTVID.dll F75E6000 - vax347b.sys F75B8000 - ACPI.sys F7B30000 - \WINDOWS\system32\DRIVERS\WMILIB.SYS F75A7000 - pci.sys F762E000 - isapnp.sys F763E000 - ohci1394.sys F764E000 - \WINDOWS\system32\DRIVERS\1394BUS.SYS F7A42000 - compbatt.sys F7A46000 - \WINDOWS\system32\DRIVERS\BATTC.SYS F7BF6000 - pciide.sys F78AE000 - \WINDOWS\system32\DRIVERS\PCIIDEX.SYS F7B32000 - intelide.sys F7589000 - pcmcia.sys F765E000 - MountMgr.sys F756A000 - ftdisk.sys F7B34000 - dmload.sys F7544000 - dmio.sys F7A4A000 - ACPIEC.sys F7BF7000 - \WINDOWS\system32\DRIVERS\OPRGHDLR.SYS F78B6000 - PartMgr.sys F766E000 - VolSnap.sys F752C000 - F7B36000 - vax347s.sys F7514000 - \WINDOWS\System32\Drivers\SCSIPORT.SYS F767E000 - disk.sys F768E000 - \WINDOWS\system32\DRIVERS\CLASSPNP.SYS F74F4000 - fltMgr.sys F74E2000 - sr.sys F74CD000 - drvmcdb.sys F78BE000 - PxHelp20.sys F74B6000 - KSecDD.sys F7429000 - Ntfs.sys F73FC000 - NDIS.sys F73E1000 - Mup.sys F781E000 - \SystemRoot\system32\DRIVERS\intelppm.sys F7B26000 - \SystemRoot\system32\DRIVERS\CmBatt.sys F7290000 - \SystemRoot\system32\DRIVERS\ati2mtag.sys F727C000 - \SystemRoot\system32\DRIVERS\VIDEOPRT.SYS F7245000 - \SystemRoot\system32\DRIVERS\yk51x86.sys F797E000 - \SystemRoot\system32\DRIVERS\usbuhci.sys F7222000 - \SystemRoot\system32\DRIVERS\USBPORT.SYS F7986000 - \SystemRoot\system32\DRIVERS\usbehci.sys F6F0F000 - \SystemRoot\system32\DRIVERS\w29n51.sys F6EEB000 - \SystemRoot\system32\drivers\tifm21.sys F6EDA000 - \SystemRoot\system32\DRIVERS\sdbus.sys F6E9A000 - \SystemRoot\system32\drivers\smwdm.sys F6E76000 - \SystemRoot\system32\drivers\portcls.sys F782E000 - \SystemRoot\system32\drivers\drmk.sys F6E53000 - \SystemRoot\system32\drivers\ks.sys F6E33000 - \SystemRoot\system32\drivers\aeaudio.sys F798E000 - \SystemRoot\system32\DRIVERS\Tvs.sys F7996000 - \SystemRoot\system32\DRIVERS\wowxt_kern_i386.sys F799E000 - \SystemRoot\system32\DRIVERS\tsxt_kern_i386.sys F6CFC000 - \SystemRoot\system32\DRIVERS\AGRSM.sys F79A6000 - \SystemRoot\System32\Drivers\Modem.SYS F783E000 - \SystemRoot\system32\DRIVERS\i8042prt.sys F79AE000 - \SystemRoot\system32\DRIVERS\kbdclass.sys F6CCE000 - \SystemRoot\system32\DRIVERS\SynTP.sys F7B54000 - \SystemRoot\system32\DRIVERS\USBD.SYS F79B6000 - \SystemRoot\system32\DRIVERS\mouclass.sys F6CBA000 - \SystemRoot\system32\DRIVERS\parport.sys F784E000 - \SystemRoot\system32\DRIVERS\serial.sys F73B9000 - \SystemRoot\system32\DRIVERS\serenum.sys F785E000 - \SystemRoot\system32\DRIVERS\imapi.sys F73B5000 - \SystemRoot\system32\drivers\pfc.sys F7B56000 - \SystemRoot\system32\drivers\sscdbhk5.sys F6CA9000 - \SystemRoot\System32\Drivers\Cdr4_xp.SYS F786E000 - \SystemRoot\system32\DRIVERS\cdrom.sys F787E000 - \SystemRoot\system32\DRIVERS\redbook.sys F79BE000 - \SystemRoot\System32\Drivers\Cdralw2k.SYS F79C6000 - \SystemRoot\SYSTEM32\DRIVERS\GEARAspiWDM.sys F6C6C000 - \SystemRoot\system32\DRIVERS\iwca.sys F7D03000 - \SystemRoot\system32\DRIVERS\audstub.sys F79CE000 - \SystemRoot\system32\DRIVERS\rasirda.sys F79D6000 - \SystemRoot\system32\DRIVERS\TDI.SYS F788E000 - \SystemRoot\system32\DRIVERS\rasl2tp.sys F73A5000 - \SystemRoot\system32\DRIVERS\ndistapi.sys F6C55000 - \SystemRoot\system32\DRIVERS\ndiswan.sys F789E000 - \SystemRoot\system32\DRIVERS\raspppoe.sys F76BE000 - \SystemRoot\system32\DRIVERS\raspptp.sys F6C1C000 - \SystemRoot\system32\DRIVERS\psched.sys F76CE000 - \SystemRoot\system32\DRIVERS\msgpc.sys F79DE000 - \SystemRoot\system32\DRIVERS\ptilink.sys F79E6000 - \SystemRoot\system32\DRIVERS\raspti.sys F6B8B000 - \SystemRoot\system32\DRIVERS\rdpdr.sys F76DE000 - \SystemRoot\system32\DRIVERS\termdd.sys F7B58000 - \SystemRoot\system32\DRIVERS\swenum.sys F6A92000 - \SystemRoot\system32\DRIVERS\update.sys F7389000 - \SystemRoot\system32\DRIVERS\mssmbios.sys F7B5A000 - \SystemRoot\system32\DRIVERS\NBSMI.sys F76EE000 - \SystemRoot\System32\Drivers\NDProxy.SYS F771E000 - \SystemRoot\system32\DRIVERS\usbhub.sys F7B5E000 - \SystemRoot\System32\Drivers\Fs_Rec.SYS F7C8C000 - \SystemRoot\System32\Drivers\Null.SYS F7B60000 - \SystemRoot\System32\Drivers\Beep.SYS F7A0E000 - \SystemRoot\system32\drivers\ssrtln.sys F7A16000 - \SystemRoot\system32\DRIVERS\HIDPARSE.SYS F7A1E000 - \SystemRoot\System32\drivers\vga.sys F7B62000 - \SystemRoot\System32\Drivers\mnmdd.SYS F7B64000 - \SystemRoot\System32\DRIVERS\RDPCDD.sys F29D8000 - \SystemRoot\System32\Drivers\meiudf.sys F29C7000 - \SystemRoot\System32\Drivers\Udfs.SYS F7A26000 - \SystemRoot\System32\Drivers\Msfs.SYS F7A2E000 - \SystemRoot\System32\Drivers\Npfs.SYS F7B1E000 - \SystemRoot\system32\DRIVERS\rasacd.sys F29B4000 - \SystemRoot\system32\DRIVERS\ipsec.sys F295C000 - \SystemRoot\system32\DRIVERS\tcpip.sys F291C000 - \SystemRoot\System32\Drivers\SYMTDI.SYS F28D3000 - \SystemRoot\system32\DRIVERS\ipnat.sys F773E000 - \SystemRoot\system32\DRIVERS\wanarp.sys F28B6000 - \??\C:\Program Files\Symantec\SYMEVENT.SYS F288E000 - \SystemRoot\system32\DRIVERS\netbt.sys F286C000 - \SystemRoot\System32\drivers\afd.sys F774E000 - \SystemRoot\system32\DRIVERS\netbios.sys F281A000 - \??\C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCDrv.sys F2807000 - \??\C:\Program Files\Norton SystemWorks\Norton AntiVirus\SAVRTPEL.SYS F27DC000 - \SystemRoot\system32\DRIVERS\rdbss.sys F276D000 - \SystemRoot\system32\DRIVERS\mrxsmb.sys F775E000 - \SystemRoot\System32\Drivers\Fips.SYS F2755000 - \SystemRoot\System32\Drivers\dump_atapi.sys F7B6C000 - \SystemRoot\System32\Drivers\dump_WMILIB.SYS BF800000 - \SystemRoot\System32\win32k.sys F6A72000 - \SystemRoot\System32\drivers\Dxapi.sys F78EE000 - \SystemRoot\System32\watchdog.sys BF9C3000 - \SystemRoot\System32\drivers\dxg.sys F7C90000 - \SystemRoot\System32\drivers\dxgthk.sys BF9D5000 - \SystemRoot\System32\ati2dvag.dll BFA0F000 - \SystemRoot\System32\ati2cqag.dll BFA4C000 - \SystemRoot\System32\ati3duag.dll BFC7F000 - \SystemRoot\System32\ativvaxx.dll F777E000 - \SystemRoot\system32\drivers\drvnddm.sys F7B7C000 - \??\C:\WINDOWS\system32\drivers\TBiosDrv.sys F7CF7000 - \SystemRoot\system32\dla\tfsndres.sys B8F72000 - \SystemRoot\system32\dla\tfsnifs.sys F7AEA000 - \SystemRoot\system32\dla\tfsnopio.sys F7B7E000 - \SystemRoot\system32\dla\tfsnpool.sys F78F6000 - \SystemRoot\system32\dla\tfsnboio.sys F779E000 - \SystemRoot\system32\dla\tfsncofs.sys F7CF9000 - \SystemRoot\system32\dla\tfsndrct.sys B8F59000 - \SystemRoot\system32\dla\tfsnudf.sys B8F40000 - \SystemRoot\system32\dla\tfsnudfa.sys B8F98000 - \SystemRoot\system32\DRIVERS\AegisP.sys B8E12000 - \SystemRoot\system32\DRIVERS\irda.sys B8F94000 - \SystemRoot\system32\DRIVERS\s24trans.sys B8E5C000 - \SystemRoot\system32\DRIVERS\ndisuio.sys B8E58000 - \SystemRoot\system32\DRIVERS\netdevio.sys B8E48000 - \SystemRoot\System32\Drivers\SYMREDRV.SYS F7BBA000 - \SystemRoot\System32\Drivers\SYMDNS.SYS F26B5000 - \SystemRoot\System32\Drivers\SYMNDIS.SYS B8B19000 - \SystemRoot\System32\Drivers\SYMFW.SYS F7916000 - \SystemRoot\System32\Drivers\SYMIDS.SYS B8AEE000 - \??\C:\PROGRA~1\COMMON~1\SYMANT~1\SymcData\IDS-DI~1\20080122.002\symidsco.sys B8791000 - \SystemRoot\system32\drivers\wdmaud.sys B891E000 - \SystemRoot\system32\drivers\sysaudio.sys B857E000 - \SystemRoot\system32\DRIVERS\mrxdav.sys F7BA0000 - \SystemRoot\System32\Drivers\ASCTRM.SYS B80A4000 - \SystemRoot\system32\DRIVERS\srv.sys B82EE000 - \SystemRoot\system32\DRIVERS\secdrv.sys F7926000 - \??\C:\WINDOWS\system32\drivers\symlcbrd.sys B7BFA000 - \SystemRoot\System32\Drivers\Cdfs.SYS B78A1000 - \SystemRoot\System32\Drivers\HTTP.sys B7A5A000 - \??\C:\WINDOWS\system32\Drivers\NPDRIVER.SYS B75CE000 - \SystemRoot\system32\drivers\kmixer.sys B732B000 - \SystemRoot\System32\Drivers\Fastfat.SYS F7D74000 - \SystemRoot\System32\DRIVERS\KProcCheck.sys Total number of drivers = 169 Liste des programmes installes ¾©Áú¿Æ¼¼-Grand Theft Auto: Vice City µTorrent ACDSee 6.0 PowerPack Adobe Acrobat 5.0 Adobe Reader 6.0.1 AOL You've Got Pictures Screensaver AT&T Connection Services Manager ATI Control Panel ATI Display Driver AutoCAD 2006 - English Avira AntiVir PersonalEdition Classic BearShare Block Manager Bluetooth Stack for Windows by Toshiba ccCommon CD/DVD Drive Acoustic Silencer CDex extraction audio Civilization III Colin McRae Rally 2 Copernic Agent Basic Cypress USB Mass Storage Driver Installation Desert Storm Disc2Phone DVD-RAM Driver DVD Shrink 3.2 ECHO is off. Encyclopédie Microsoft Encarta 99 Hard Disk Recovery Utilities HijackThis 1.99.1 Hotfix for Windows XP (KB915865) Intel® PROSet/Wireless Software Internet Worm Protection InterVideo WinDVD for TOSHIBA iPod for Windows 2005-06-26 iPod for Windows 2005-06-26 iTunes iTunes J2SE Runtime Environment 5.0 Learn2 Player (Uninstall Only) LiveReg (Symantec Corporation) LiveUpdate 3.0 (Symantec Corporation) MATLAB Family of Products Release 14 mCore mDrWiFi Medal of Honor Allied Assault Medal of Honor Allied Assault Spearhead mEoU.msi mHelp Microsoft .NET Framework 1.1 Microsoft .NET Framework 1.1 Microsoft .NET Framework 1.1 Hotfix (KB928366) Microsoft Internationalized Domain Names Mitigation APIs Microsoft National Language Support Downlevel APIs Microsoft Office Professional Edition 2003 Microsoft Works mIWA mIWCA mLogView mMHouse mPfMgr mPfWiz mProSafe MSRedist MSXML 4.0 SP2 (KB927978) MSXML 4.0 SP2 (KB936181) mWlsSafe mXML mZConfig Napster Nero 6 Ultra Edition Norton AntiVirus 2005 Norton AntiVirus Parent MSI Norton SystemWorks Norton SystemWorks 2005 Norton SystemWorks 2005 (Symantec Corporation) Norton Utilities Norton WMI Update NSW_DRM_COLLECTION PCFriendly Pipe Flow Expert v1.09 PowerDVD Prevx CSI Plus QuickTime RealPlayer Basic Roxio Burn Engine SD Secure Module Security Update for Step By Step Interactive Training (KB898458) Security Update for Step By Step Interactive Training (KB923723) Security Update for Windows Media Player (KB911564) Security Update for Windows Media Player 10 (KB911565) Security Update for Windows Media Player 10 (KB917734) Security Update for Windows Media Player 10 (KB936782) Security Update for Windows Media Player 6.4 (KB925398) Security Update for Windows XP (KB890046) Security Update for Windows XP (KB893066) Security Update for Windows XP (KB893756) Security Update for Windows XP (KB896358) Security Update for Windows XP (KB896422) Security Update for Windows XP (KB896423) Security Update for Windows XP (KB896424) Security Update for Windows XP (KB896428) Security Update for Windows XP (KB896688) Security Update for Windows XP (KB899587) Security Update for Windows XP (KB899589) Security Update for Windows XP (KB899591) Security Update for Windows XP (KB900725) Security Update for Windows XP (KB901017) Security Update for Windows XP (KB901214) Security Update for Windows XP (KB902400) Security Update for Windows XP (KB904706) Security Update for Windows XP (KB905414) Security Update for Windows XP (KB905749) Security Update for Windows XP (KB905915) Security Update for Windows XP (KB908519) Security Update for Windows XP (KB908531) Security Update for Windows XP (KB911562) Security Update for Windows XP (KB911567) Security Update for Windows XP (KB911927) Security Update for Windows XP (KB912812) Security Update for Windows XP (KB912919) Security Update for Windows XP (KB913446) Security Update for Windows XP (KB913580) Security Update for Windows XP (KB914388) Security Update for Windows XP (KB914389) Security Update for Windows XP (KB916281) Security Update for Windows XP (KB917159) Security Update for Windows XP (KB917344) Security Update for Windows XP (KB917422) Security Update for Windows XP (KB917953) Security Update for Windows XP (KB918118) Security Update for Windows XP (KB918439) Security Update for Windows XP (KB918899) Security Update for Windows XP (KB919007) Security Update for Windows XP (KB920213) Security Update for Windows XP (KB920214) Security Update for Windows XP (KB920670) Security Update for Windows XP (KB920683) Security Update for Windows XP (KB920685) Security Update for Windows XP (KB921398) Security Update for Windows XP (KB921503) Security Update for Windows XP (KB921883) Security Update for Windows XP (KB922616) Security Update for Windows XP (KB922760) Security Update for Windows XP (KB922819) Security Update for Windows XP (KB923191) Security Update for Windows XP (KB923414) Security Update for Windows XP (KB923689) Security Update for Windows XP (KB923694) Security Update for Windows XP (KB923980) Security Update for Windows XP (KB924191) Security Update for Windows XP (KB924270) Security Update for Windows XP (KB924496) Security Update for Windows XP (KB924667) Security Update for Windows XP (KB925454) Security Update for Windows XP (KB925486) Security Update for Windows XP (KB925902) Security Update for Windows XP (KB926255) Security Update for Windows XP (KB926436) Security Update for Windows XP (KB927779) Security Update for Windows XP (KB927802) Security Update for Windows XP (KB928090) Security Update for Windows XP (KB928255) Security Update for Windows XP (KB928843) Security Update for Windows XP (KB929123) Security Update for Windows XP (KB929969) Security Update for Windows XP (KB930178) Security Update for Windows XP (KB931261) Security Update for Windows XP (KB931768) Security Update for Windows XP (KB931784) Security Update for Windows XP (KB932168) Security Update for Windows XP (KB933566) Security Update for Windows XP (KB933729) Security Update for Windows XP (KB935839) Security Update for Windows XP (KB935840) Security Update for Windows XP (KB936021) Security Update for Windows XP (KB937143) Security Update for Windows XP (KB937894) Security Update for Windows XP (KB938127) Security Update for Windows XP (KB938829) Security Update for Windows XP (KB939653) Security Update for Windows XP (KB941202) Security Update for Windows XP (KB941568) Security Update for Windows XP (KB941569) Security Update for Windows XP (KB941644) Security Update for Windows XP (KB942615) Security Update for Windows XP (KB943460) Security Update for Windows XP (KB943485) Security Update for Windows XP (KB944653) SMSC IrCC V5.1.3600.5 SP2 Sonic DLA Sonic RecordNow! SoundMAX SPBBC Symantec Network Drivers Update Symantec Script Blocking Installer SymNet Synaptics Pointing Device Driver Tactical Ops 2 Texas Instruments PCIxx21/x515 drivers. TIxx21/x515 TOSHIBA Assist TOSHIBA ConfigFree TOSHIBA Controls TOSHIBA Hotkey Utility TOSHIBA Mobile Extension 3 TOSHIBA PC Diagnostic Tool TOSHIBA Power Saver Toshiba Registration TOSHIBA SD Memory Card Format TOSHIBA Software Modem TOSHIBA Software Upgrades TOSHIBA Speech System Applications TOSHIBA Speech System SR Engine(U.S.) Version1.0 TOSHIBA Speech System TTS Engine(U.S.) Version1.0 Toshiba Tbiosdrv Driver TOSHIBA TouchPad ON/Off Utility TOSHIBA Utilities TOSHIBA Virtual Sound TOSHIBA Zooming Utility Touch and Launch Update for Windows XP (KB894391) Update for Windows XP (KB898461) Update for Windows XP (KB900485) Update for Windows XP (KB904942) Update for Windows XP (KB910437) Update for Windows XP (KB911280) Update for Windows XP (KB916595) Update for Windows XP (KB920872) Update for Windows XP (KB922582) Update for Windows XP (KB927891) Update for Windows XP (KB929338) Update for Windows XP (KB930916) Update for Windows XP (KB931836) Update for Windows XP (KB933360) Update for Windows XP (KB936357) Update for Windows XP (KB938828) Update for Windows XP (KB942763) Update for Windows XP (KB942840) Update for Windows XP (KB946627) USB Storage Adapter FX (SM1) Viewpoint Media Player WebFldrs XP Windows Genuine Advantage Notifications (KB905474) Windows Installer 3.1 (KB893803) Windows Internet Explorer 7 Windows Media Format Runtime Windows Media Player 10 Windows XP Hotfix - KB834707 Windows XP Hotfix - KB873339 Windows XP Hotfix - KB884018 Windows XP Hotfix - KB885250 Windows XP Hotfix - KB885835 Windows XP Hotfix - KB885836 Windows XP Hotfix - KB886185 Windows XP Hotfix - KB887472 Windows XP Hotfix - KB887742 Windows XP Hotfix - KB888113 Windows XP Hotfix - KB888302 Windows XP Hotfix - KB889673 Windows XP Hotfix - KB890859 Windows XP Hotfix - KB891781 WinRAR archiver Volume in drive C is SQ003558 Volume Serial Number is B4BD-A73C Directory of C:\Program Files 01/30/2008 02:55 PM <DIR> . 01/30/2008 02:55 PM <DIR> .. 10/22/2005 10:04 AM <DIR> ACD Systems 10/22/2005 10:13 AM <DIR> Adobe 10/22/2005 10:40 AM <DIR> Ahead 01/13/2006 01:21 PM <DIR> Alcohol Soft 12/31/2004 06:40 AM <DIR> Analog Devices 10/22/2005 10:27 AM <DIR> AnswerWorks 4.0 01/05/2005 09:55 PM <DIR> AT&T 03/09/2005 03:25 AM <DIR> ATI Technologies 12/02/2007 09:59 PM <DIR> AutoCAD 2006 07/19/2006 11:50 PM <DIR> AutoCAD R14 12/02/2007 11:09 AM <DIR> Autodesk Drawing Explorer 01/30/2008 10:14 AM <DIR> Avira 04/23/2007 05:15 PM <DIR> BearShare 01/28/2008 11:09 AM <DIR> CDex_170b2 01/24/2008 01:38 PM <DIR> Codemasters 01/30/2008 02:55 PM <DIR> Common Files 12/31/2004 03:50 AM <DIR> ComPlus Applications 11/21/2005 09:27 PM <DIR> Copernic Agent 10/22/2005 10:45 AM <DIR> CyberLink 12/31/2004 07:25 AM <DIR> DataLode 01/26/2007 10:14 AM <DIR> Disc2Phone 11/20/2005 06:41 PM <DIR> DVD Region-Free 01/28/2008 03:17 PM <DIR> DVD Shrink 03/17/2005 12:05 PM <DIR> DVDIdle Pro 12/31/2004 06:58 AM <DIR> DVD-RAM 10/29/2005 11:10 AM <DIR> EA GAMES 01/13/2006 02:07 PM <DIR> Firaxis Games 01/06/2005 06:14 AM <DIR> Google 01/30/2008 09:17 AM <DIR> Greatis 01/30/2008 01:30 PM <DIR> HijackThis 01/14/2006 03:07 PM <DIR> Infogrames Interactive 10/21/2005 05:36 PM <DIR> Intel 01/29/2008 06:30 PM <DIR> Internet Explorer 03/09/2005 03:27 AM <DIR> InterVideo 10/22/2005 06:39 PM <DIR> iPod 10/22/2005 06:40 PM <DIR> iTunes 01/22/2005 09:34 PM <DIR> Java 01/05/2005 09:52 PM <DIR> Learn2.com 12/31/2004 06:54 AM <DIR> ltmoh 10/31/2005 12:42 PM <DIR> Messenger 10/22/2005 09:38 AM <DIR> Microsoft ActiveSync 12/31/2004 03:54 AM <DIR> microsoft frontpage 10/22/2005 10:27 AM <DIR> Microsoft Office 10/26/2005 07:00 PM <DIR> Microsoft Référence 10/22/2005 09:37 AM <DIR> Microsoft Visual Studio 03/09/2005 03:28 AM <DIR> Microsoft Works 10/22/2005 09:36 AM <DIR> Microsoft.NET 12/31/2004 03:51 AM <DIR> Movie Maker 12/31/2004 03:49 AM <DIR> MSN 12/31/2004 03:50 AM <DIR> MSN Gaming Zone 12/02/2006 08:02 AM <DIR> MSXML 4.0 10/22/2005 11:34 AM <DIR> Napster 12/31/2004 03:51 AM <DIR> NetMeeting 10/22/2005 09:47 AM <DIR> Norton AntiVirus 01/28/2008 12:11 PM <DIR> Norton SystemWorks 12/31/2004 03:52 AM <DIR> Online Services 07/18/2007 07:30 AM <DIR> Outlook Express 06/01/2007 12:15 PM <DIR> PCFriendly 10/07/2007 03:01 PM <DIR> Pipe Flow Expert 01/30/2008 12:33 PM <DIR> PrevxCSI 10/22/2005 09:33 AM <DIR> Pure Networks 10/22/2005 06:41 PM <DIR> QuickTime 01/05/2005 09:51 PM <DIR> Real 02/25/2006 05:03 AM <DIR> SCi 03/14/2005 11:10 PM <DIR> SlySoft 12/31/2004 07:45 AM <DIR> Sonic 01/29/2008 05:13 PM <DIR> Symantec 11/25/2005 04:12 PM <DIR> SymNetDrv 12/31/2004 06:53 AM <DIR> Synaptics 01/22/2005 11:34 PM <DIR> TOSHIBA 11/24/2005 09:08 PM <DIR> Ubisoft 01/30/2008 02:49 PM <DIR> UnHackMe 07/13/2007 01:21 PM <DIR> uTorrent 01/05/2005 09:52 PM <DIR> Viewpoint 02/10/2006 06:59 AM <DIR> Windows Media Player 12/31/2004 03:50 AM <DIR> Windows NT 12/01/2007 01:26 PM <DIR> WinRAR 12/31/2004 03:54 AM <DIR> xerox 0 File(s) 0 bytes 80 Dir(s) 4,992,507,904 bytes free Volume in drive C is SQ003558 Volume Serial Number is B4BD-A73C Directory of C:\Program Files\common files 01/30/2008 02:55 PM <DIR> . 01/30/2008 02:55 PM <DIR> .. 09/10/2007 01:05 PM <DIR> ACD Systems 10/22/2005 11:32 AM <DIR> Adobe 10/22/2005 10:40 AM <DIR> Ahead 10/22/2005 09:23 AM <DIR> AOL 01/13/2006 02:06 PM <DIR> Autodesk Shared 10/29/2005 08:58 AM <DIR> Copernic 10/22/2005 09:37 AM <DIR> DESIGNER 12/31/2004 06:53 AM <DIR> InstallShield 01/22/2005 09:34 PM <DIR> Java 10/22/2005 09:39 AM <DIR> L&H 10/26/2005 07:00 PM <DIR> Microsoft Shared 12/31/2004 03:51 AM <DIR> MSSoap 01/05/2005 09:51 PM <DIR> Nullsoft 12/30/2004 07:44 PM <DIR> ODBC 01/05/2005 09:51 PM <DIR> Real 12/31/2004 07:43 AM <DIR> Roxio Shared 12/31/2004 03:51 AM <DIR> Services 08/28/2003 12:19 AM 36,963 SM1updtr.dll 12/30/2004 07:44 PM <DIR> SpeechEngines 01/29/2008 06:30 PM <DIR> Symantec Shared 07/18/2007 07:30 AM <DIR> System 1 File(s) 36,963 bytes 22 Dir(s) 4,992,507,904 bytes free Volume in drive C is SQ003558 Volume Serial Number is B4BD-A73C Directory of C:\ 12/21/2002 10:00 AM 53,248 gendel32.exe 1 File(s) 53,248 bytes 0 Dir(s) 4,992,507,904 bytes free Attention : C:\autorun.inf existe c:\Documents and Settings\Administrator\Application Data\Microsoft\Installer\{9860A9CF-7E71-43AC-888F-0B4D3EA212D1}\KK.exe c:\Documents and Settings\Default User\Application Data\Microsoft\Installer\{9860A9CF-7E71-43AC-888F-0B4D3EA212D1}\KK.exe c:\Documents and Settings\Sami Chacar\Application Data\Microsoft\Installer\{9860A9CF-7E71-43AC-888F-0B4D3EA212D1}\KK.exe c:\Documents and Settings\Sami Chacar\Desktop\blockman.exe c:\Documents and Settings\Sami Chacar\Desktop\TPW.EXE c:\Documents and Settings\Sami Chacar\Desktop\uTorrent-1.6.1-install.exe c:\Documents and Settings\Sami Chacar\Desktop\bearshare\BSPROINSTALL.exe c:\Documents and Settings\Sami Chacar\Desktop\bearshare\crack\BearShare.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\catchme.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\diff.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\dumphive.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\FilesInfoCmd.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\find2.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\Fport.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\grep.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\gzip.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\KProcCheck.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\LFiles.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\LISTDLLS.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\md5sums.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\pslist.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\sigcheck.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\streams.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\swreg.exe c:\Documents and Settings\Sami Chacar\Desktop\DiagHelp\DiagHelp\tar.exe c:\Documents and Settings\Sami Chacar\Desktop\DVD Region-Free\DVDRegionFree.exe c:\Documents and Settings\Sami Chacar\Desktop\DVD Region-Free\patch_dvd_region.exe c:\Documents and Settings\Sami Chacar\Desktop\DVD Region-Free\unins000.exe c:\Documents and Settings\Sami Chacar\Desktop\pipe flowv1.09 unit convert\convert units\Convert.exe c:\Documents and Settings\Sami Chacar\Desktop\pipe flowv1.09 unit convert\Pipe_Flow_Expert_v1.09\crack\keygen.exe c:\Documents and Settings\Sami Chacar\Desktop\pipe flowv1.09 unit convert\Pipe_Flow_Expert_v1.09\setup\version1.09\PipeFlowExpertSetup.exe c:\Documents and Settings\Sami Chacar\Desktop\programs\ComboFix.exe c:\Documents and Settings\Sami Chacar\Desktop\programs\Flash_Disinfector.exe c:\Documents and Settings\Sami Chacar\Desktop\Sid Meier's Civilization III\Autorun.exe c:\Documents and Settings\Sami Chacar\Desktop\Sid Meier's Civilization III\Civilization3.exe c:\Documents and Settings\Sami Chacar\Desktop\Sid Meier's Civilization III\opengl95.exe c:\Documents and Settings\Sami Chacar\Desktop\Sid Meier's Civilization III\Setup.exe c:\Documents and Settings\Sami Chacar\Desktop\Sid Meier's Civilization III\crack\Civilization3.exe c:\Documents and Settings\Sami Chacar\Desktop\Sid Meier's Civilization III\DirectX\dxsetup.exe c:\Documents and Settings\Sami Chacar\Desktop\Sid Meier's Civilization III\Manual\ar500enu.exe c:\Documents and Settings\Sami Chacar\Local Settings\Temp\nircmd.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\flash32.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\FlashPla.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\intro.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\Acrobat 4.0\Acrobat\Acrobat.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\Acrobat 4.0\Acrobat\Capture\Capserve.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\Acrobat 4.0\Acrobat\plug_ins\OpenAll\Transform\OpenAll.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\Acrobat 4.0\Catalog\acrocat.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\Acrobat 4.0\Distillr\AcroDist.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\Acrobat 4.0\Distillr\AcroTray.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\ESIB\1 AGC\ecologie\ENVIRONNEMT\finalcd\Acrobat 4.0\Registration\AdobeReg32.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\Library Autocad\New Folder\16_dwg_details.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\Library Autocad\New Folder\3DPipe.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\Library Autocad\New Folder\DE1.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\autorun.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\Crack\moh_spearhead.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\eReg\go_ez.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\eReg\Medal of Honor Allied Assault Spearhead_Code.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\eReg\Medal of Honor Allied Assault Spearhead_eReg.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\eReg\Medal of Honor Allied Assault Spearhead_EZ.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\eReg\Medal of Honor Allied Assault Spearhead_uninst.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\patch\patch111v9safedisk.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\redist\gamespy\ArcadeInstallMOHAAS11c.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\mohaas\setup\Setup.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\antivir_workstation_win7u_en_h.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\cdex_170b2_enu.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\ComboFix.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\copernicagentbasicfr.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\DVDIdlePro59.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\dvdshrink32setup.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\EasyDVDClone.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\Flash_Disinfector.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\hijackthis_sfx.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\PREVXCSIFREE.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\RivaFLVPlayerSetup.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\SetupAnyDVD5511.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\setup.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\ACTODAYMGR.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\AUTORUN.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\AUTOCAD 2000 UPDATE\PLOTUPDATE2.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\BUZZSAW\PLANS & SPEC DRIVERS\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\MIGRATE\HARVESTER.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\MIGRATE\SERHARV.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\MSI\INSTMSI.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\MSI\INSTMSIW.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\NETSETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SUPPORT\ADLM\ADSKFLEX.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SUPPORT\ADLM\LMGRD.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SUPPORT\ADLM\LMTOOLS.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SUPPORT\ADLM\LMUTIL.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SUPPORT\ADLM\SAMREPORT-LITE\JRE1_2_2_007-WIN-I.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SUPPORT\ADLM\SAMREPORT-LITE\JRE1_2_2-001-WIN.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\NETSETUP\SUPPORT\ADLM\SAMREPORT-LITE\SAMREPORT.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\AXDIST.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\DCOM95.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\HHUPD.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\MDAC_TYP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\AW\_ISDEL.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\AW\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\MSIE\DCOM95.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\MSIE\IE501DOM.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\MSIE\IE5COMP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\MSIE\IE5SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\MSIE\OAINST.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\NM\NM30.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\SUPPORT\WS2\W95WS2SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\VVE\_ISDEL.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\VVE\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\XML\MSXML3.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\AUTOCAD2002 (E)\XML\XMLINST.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\autocad2002\uninstall\uninstall.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\bearshare\wrar361.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\MSNFix\MSNFix\msnchk.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\MSNFix\MSNFix\incl\MD5File.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\MSNFix\MSNFix\incl\msnchk.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\MSNFix\MSNFix\incl\Process.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\MSNFix\MSNFix\incl\swreg.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\MSNFix\MSNFix\incl\zip.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\_ISDEL.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\AUTORUN.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\ASICFG.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\ASIDB3.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\ASIODBC.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\ASIORA7.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\MTSTACK.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\DRV\NTLOCK\SETUPX86.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\DRV\W95LOCK\SENTSTRT.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\DRV\W95LOCK\SENTW95.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\HELP\QTOUR.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\HELP\WNEW.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\SUPPORT\HPMPLOT.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\SUPPORT\L_ACLA.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\SUPPORT\MC.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\SUPPORT\SHSBSPAT.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\SUPPORT\SLIDELIB.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\SUPPORT\EBATCHP\EBATCHP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\ACAD\SUPPORT\EBATCHP\EBPH.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\DATA\WINT351.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\DATA\WINTDIST.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\NETSETUP\_ISDEL.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\NETSETUP\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\NETSETUP\DATA\WIN95\AD_ELMD.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\NETSETUP\DATA\WINNT\AD_ELMD.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\ACAD14\SYSTEM\MTSTACK.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Maple V\BIN.WIN\dosmaple.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Maple V\BIN.WIN\maple.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Maple V\BIN.WIN\MARCH.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Maple V\BIN.WIN\MINT.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Maple V\BIN.WIN\UPDTSRC.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Matlab\AUTORUN.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Matlab\SETUP.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Matlab\UNINST.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\Matlab\GHOSTSCRIPT\BIN\GS.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\T-Pascal\INSTALL.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\T-Pascal\TPREM.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\prog sup n\T-Pascal\UNPAK.EXE c:\Documents and Settings\Sami Chacar\My Documents\documents\programs & setups\regressinew\Regressi.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\topographie\New Folder\basic.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\topographie\New Folder\Osw.exe c:\Documents and Settings\Sami Chacar\My Documents\documents\topographie\New Folder\tableaux_2000.exe c:\Documents and Settings\Sami Chacar\My Documents\RegRun2\Files\explorer.exe c:\Documents and Settings\Sami Chacar\My Documents\RegRun2\Files\NTOSKRNL.EXE c:\Documents and Settings\All Users\Application Data\Zylom\ZylomLoader\zylom\Zuma\Zuma.dll ****** Fin du rapport DiagHelp Veuillez svp envoyer le fichier C:\upload_moi_TOSHIBA-USER.tar.gz a l'adresse http://upload.malekal.com et celui de hijackthis: Logfile of HijackThis v1.99.1 Scan saved at 3:39:10 PM, on 1/30/2008 Platform: Windows XP SP2 (WinNT 5.01.2600) MSIE: Internet Explorer v7.00 (7.00.5730.0013) Running processes: C:\WINDOWS\System32\smss.exe C:\WINDOWS\system32\winlogon.exe C:\WINDOWS\system32\services.exe C:\WINDOWS\system32\lsass.exe C:\WINDOWS\system32\Ati2evxx.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\Program Files\Intel\Wireless\Bin\EvtEng.exe C:\Program Files\Intel\Wireless\Bin\S24EvMon.exe C:\Program Files\Intel\Wireless\Bin\ZcfgSvc.exe C:\WINDOWS\system32\Ati2evxx.exe C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCSvc.exe C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe C:\WINDOWS\system32\spoolsv.exe C:\PROGRA~1\Intel\Wireless\Bin\1XConfig.exe C:\Program Files\Symantec\LiveUpdate\ALUSchedulerSvc.exe C:\WINDOWS\system32\TPSMain.exe C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe C:\WINDOWS\system32\rundll32.exe C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe C:\Program Files\Synaptics\SynTP\SynTPLpr.exe C:\Program Files\Synaptics\SynTP\SynTPEnh.exe C:\Program Files\ltmoh\Ltmoh.exe C:\WINDOWS\AGRSMMSG.exe C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe C:\Program Files\Toshiba\Tvs\TvsTray.exe C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe C:\WINDOWS\system32\TPSBattM.exe C:\WINDOWS\system32\dla\tfswctrl.exe C:\WINDOWS\SM1BG.EXE C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe C:\Program Files\Common Files\Symantec Shared\ccApp.exe C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe C:\Program Files\iTunes\iTunesHelper.exe C:\Program Files\QuickTime\qttask.exe C:\Program Files\Real\RealPlayer\RealPlay.exe C:\WINDOWS\system32\ctfmon.exe C:\Program Files\TOSHIBA\ConfigFree\CFSvcs.exe C:\Program Files\Messenger\msmsgs.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtMng.exe C:\WINDOWS\system32\RAMASST.exe C:\WINDOWS\system32\DVDRAMSV.exe C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE C:\Program Files\Norton SystemWorks\Norton AntiVirus\IWP\NPFMntor.exe C:\PROGRA~1\NORTON~2\NORTON~1\NPROTECT.EXE C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosA2dp.exe C:\Program Files\Intel\Wireless\Bin\OProtSvc.exe C:\Program Files\Intel\Wireless\Bin\RegSrvc.exe C:\Program Files\Analog Devices\SoundMAX\SMAgent.exe C:\PROGRA~1\NORTON~2\NORTON~1\SPEEDD~1\NOPDB.EXE C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\StarWindService.exe c:\Toshiba\IVP\swupdate\swupdtmr.exe C:\Program Files\Common Files\Symantec Shared\CCPD-LC\symlcsvc.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\TAPPSRV.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosAVRC.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\tme3srv.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtHsp.exe C:\Program Files\iPod\bin\iPodService.exe C:\WINDOWS\system32\wuauclt.exe C:\WINDOWS\System32\svchost.exe C:\WINDOWS\explorer.exe C:\Program Files\internet explorer\iexplore.exe C:\WINDOWS\system32\cmd.exe C:\WINDOWS\system32\ntvdm.exe C:\Program Files\Internet Explorer\iexplore.exe C:\WINDOWS\system32\NOTEPAD.EXE C:\Program Files\HijackThis\HijackThis.exe R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = http://go.microsoft.com/fwlink/?LinkId=69157 R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = http://go.microsoft.com/fwlink/?LinkId=54896 R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = http://go.microsoft.com/fwlink/?LinkId=54896 R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = http://go.microsoft.com/fwlink/?LinkId=69157 O2 - BHO: AcroIEHlprObj Class - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - C:\Program Files\Adobe\Acrobat 6.0\Reader\ActiveX\AcroIEHelper.dll O2 - BHO: DriveLetterAccess - {5CA3D70E-1895-11CF-8E15-001234567890} - C:\WINDOWS\system32\dla\tfswshx.dll O2 - BHO: NAV Helper - {BDF3E430-B101-42AD-A544-FADC6B084872} - C:\Program Files\Norton SystemWorks\Norton AntiVirus\NavShExt.dll O3 - Toolbar: Norton AntiVirus - {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} - C:\Program Files\Norton SystemWorks\Norton AntiVirus\NavShExt.dll O3 - Toolbar: Copernic Agent - {F2E259E8-0FC8-438C-A6E0-342DD80FA53E} - C:\PROGRA~1\COPERN~1\COPERN~1.DLL O4 - HKLM\..\Run: [TPSMain] TPSMain.exe O4 - HKLM\..\Run: [THotkey] C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe O4 - HKLM\..\Run: [TMEPROP] C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe -S O4 - HKLM\..\Run: [DockMsgFrom] C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe O4 - HKLM\..\Run: [bluetoothAuthenticationAgent] rundll32.exe bthprops.cpl,,BluetoothAuthenticationAgent O4 - HKLM\..\Run: [ATIPTA] C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe O4 - HKLM\..\Run: [soundMAXPnP] C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe O4 - HKLM\..\Run: [soundMAX] C:\Program Files\Analog Devices\SoundMAX\Smax4.exe /tray O4 - HKLM\..\Run: [synTPLpr] C:\Program Files\Synaptics\SynTP\SynTPLpr.exe O4 - HKLM\..\Run: [synTPEnh] C:\Program Files\Synaptics\SynTP\SynTPEnh.exe O4 - HKLM\..\Run: [LtMoh] C:\Program Files\ltmoh\Ltmoh.exe O4 - HKLM\..\Run: [AGRSMMSG] AGRSMMSG.exe O4 - HKLM\..\Run: [NDSTray.exe] C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe O4 - HKLM\..\Run: [Tvs] C:\Program Files\Toshiba\Tvs\TvsTray.exe O4 - HKLM\..\Run: [TFncKy] C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe O4 - HKLM\..\Run: [PadTouch] C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe O4 - HKLM\..\Run: [smoothView] C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe O4 - HKLM\..\Run: [dla] C:\WINDOWS\system32\dla\tfswctrl.exe O4 - HKLM\..\Run: [sM1BG] C:\WINDOWS\SM1BG.EXE O4 - HKLM\..\Run: [Pinger] c:\toshiba\ivp\ism\pinger.exe /run O4 - HKLM\..\Run: [intelWireless] C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe /tf Intel PROSet/Wireless O4 - HKLM\..\Run: [EOUApp] C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe O4 - HKLM\..\Run: [ccApp] "C:\Program Files\Common Files\Symantec Shared\ccApp.exe" O4 - HKLM\..\Run: [NeroFilterCheck] C:\WINDOWS\system32\NeroCheck.exe O4 - HKLM\..\Run: [RemoteControl] C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe O4 - HKLM\..\Run: [iTunesHelper] "C:\Program Files\iTunes\iTunesHelper.exe" O4 - HKLM\..\Run: [QuickTime Task] "C:\Program Files\QuickTime\qttask.exe" -atboottime O4 - HKLM\..\Run: [symantec NetDriver Monitor] C:\PROGRA~1\SYMNET~1\SNDMon.exe /Consumer O4 - HKLM\..\Run: [RealTray] C:\Program Files\Real\RealPlayer\RealPlay.exe SYSTEMBOOTHIDEPLAYER O4 - HKCU\..\Run: [Norton SystemWorks] "C:\Program Files\Norton SystemWorks\cfgwiz.exe" /GUID {05858CFD-5CC4-4ceb-AAAF-CF00BF39736A} /MODE CfgWiz O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe O4 - HKCU\..\Run: [MSMSGS] "C:\Program Files\Messenger\msmsgs.exe" /background O4 - Global Startup: AutoCAD Startup Accelerator.lnk = C:\Program Files\Common Files\Autodesk Shared\acstart16.exe O4 - Global Startup: Bluetooth Manager.lnk = ? O4 - Global Startup: RAMASST.lnk = C:\WINDOWS\system32\RAMASST.exe O8 - Extra context menu item: &AOL Toolbar search - res://C:\Program Files\AOL Toolbar\toolbar.dll/SEARCH.HTML O8 - Extra context menu item: Chercher avec Copernic Agent - C:\Program Files\Copernic Agent\Web\SearchExt.htm O8 - Extra context menu item: E&xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\OFFICE11\EXCEL.EXE/3000 O9 - Extra button: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0\bin\npjpi150.dll O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0\bin\npjpi150.dll O9 - Extra button: (no name) - {193B17B0-7C9F-4D5B-AEAB-8D3605EFC084} - C:\PROGRA~1\COPERN~1\COPERN~1.EXE O9 - Extra 'Tools' menuitem: Démarrer Copernic Agent - {193B17B0-7C9F-4D5B-AEAB-8D3605EFC084} - C:\PROGRA~1\COPERN~1\COPERN~1.EXE O9 - Extra button: Copernic Agent - {688DC797-DC11-46A7-9F1B-445F4F58CE6E} - C:\PROGRA~1\COPERN~1\COPERN~1.EXE O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\OFFICE11\REFIEBAR.DLL O9 - Extra button: Real.com - {CD67F990-D8E9-11d2-98FE-00C0F0318AFE} - C:\WINDOWS\system32\Shdocvw.dll O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe O11 - Options group: [iNTERNATIONAL] International* O12 - Plugin for .spop: C:\Program Files\Internet Explorer\Plugins\NPDocBox.dll O14 - IERESET.INF: START_PAGE_URL=http://www.toshibadirect.com/dpdstart O16 - DPF: {CE69F98F-2AF3-4306-BAC6-A79070EDA1B4} (Zylom Loader Object) - http://eu.download.games.yahoo.com/zylom/a...zylomloader.cab O20 - Winlogon Notify: IntelWireless - C:\Program Files\Intel\Wireless\Bin\LgNotify.dll O20 - Winlogon Notify: WgaLogon - C:\WINDOWS\SYSTEM32\WgaLogon.dll O23 - Service: Ati HotKey Poller - ATI Technologies Inc. - C:\WINDOWS\system32\Ati2evxx.exe O23 - Service: Autodesk Licensing Service - Autodesk - C:\Program Files\Common Files\Autodesk Shared\Service\AdskScSrv.exe O23 - Service: Automatic LiveUpdate Scheduler - Symantec Corporation - C:\Program Files\Symantec\LiveUpdate\ALUSchedulerSvc.exe O23 - Service: Symantec Event Manager (ccEvtMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe O23 - Service: Symantec Password Validation (ccPwdSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccPwdSvc.exe O23 - Service: Symantec Settings Manager (ccSetMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe O23 - Service: ConfigFree Service (CFSvcs) - TOSHIBA CORPORATION - C:\Program Files\TOSHIBA\ConfigFree\CFSvcs.exe O23 - Service: DVD-RAM_Service - Matsushita Electric Industrial Co., Ltd. - C:\WINDOWS\system32\DVDRAMSV.exe O23 - Service: EvtEng - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\EvtEng.exe O23 - Service: iPod Service (iPodService) - Apple Computer, Inc. - C:\Program Files\iPod\bin\iPodService.exe O23 - Service: LiveUpdate - Symantec Corporation - C:\PROGRA~1\Symantec\LIVEUP~1\LUCOMS~1.EXE O23 - Service: MATLAB Server (matlabserver) - Unknown owner - C:\matlab\webserver\bin\win32\matlabserver.exe (file missing) O23 - Service: Norton AntiVirus Auto-Protect Service (navapsvc) - Symantec Corporation - C:\Program Files\Norton SystemWorks\Norton AntiVirus\navapsvc.exe O23 - Service: Norton AntiVirus Firewall Monitor Service (NPFMntor) - Symantec Corporation - C:\Program Files\Norton SystemWorks\Norton AntiVirus\IWP\NPFMntor.exe O23 - Service: Norton Unerase Protection (NProtectService) - Symantec Corporation - C:\PROGRA~1\NORTON~2\NORTON~1\NPROTECT.EXE O23 - Service: OwnershipProtocol - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\OProtSvc.exe O23 - Service: RegSrvc - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\RegSrvc.exe O23 - Service: Spectrum24 Event Monitor (S24EventMonitor) - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\S24EvMon.exe O23 - Service: SAVScan - Symantec Corporation - C:\Program Files\Norton SystemWorks\Norton AntiVirus\SAVScan.exe O23 - Service: ScriptBlocking Service (SBService) - Symantec Corporation - C:\PROGRA~1\COMMON~1\SYMANT~1\SCRIPT~1\SBServ.exe O23 - Service: Symantec Network Drivers Service (SNDSrvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe O23 - Service: SoundMAX Agent Service (SoundMAX Agent Service (default)) - Analog Devices, Inc. - C:\Program Files\Analog Devices\SoundMAX\SMAgent.exe O23 - Service: Symantec SPBBCSvc (SPBBCSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCSvc.exe O23 - Service: Speed Disk service - Symantec Corporation - C:\PROGRA~1\NORTON~2\NORTON~1\SPEEDD~1\NOPDB.EXE O23 - Service: StarWind iSCSI Service (StarWindService) - Rocket Division Software - C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\StarWindService.exe O23 - Service: Swupdtmr - Unknown owner - c:\Toshiba\IVP\swupdate\swupdtmr.exe O23 - Service: Symantec Core LC - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\CCPD-LC\symlcsvc.exe O23 - Service: TOSHIBA Application Service (TAPPSRV) - TOSHIBA Corp. - C:\Program Files\TOSHIBA\TOSHIBA Applet\TAPPSRV.exe O23 - Service: TME3SRV - IEC - C:\Program Files\TOSHIBA\TOSHIBA Applet\tme3srv.exe merci
  21. 4 fois combofix parce qu'au moment ou l'ordi redemarrait regrun et unhackme bloquaient combofix et ne me laissaient pas obtenir de rapport j'ai du les supprimer. en tout cas voici le rapport complet ComboFix 08-01-30.6 - Sami Chacar 2008-01-30 14:51:07.3 - NTFSx86 Microsoft Windows XP Professional 5.1.2600.2.1252.1.1033.18.598 [GMT 2:00] Running from: C:\Documents and Settings\Sami Chacar\Desktop\ComboFix.exe WARNING -THIS MACHINE DOES NOT HAVE THE RECOVERY CONSOLE INSTALLED !! . ((((((((((((((((((((((((((((((((((((((( Other Deletions ))))))))))))))))))))))))))))))))))))))))))))))))) . C:\Autorun.inf C:\WINDOWS\system32\winsusrm.dll C:\WINDOWS\system32\winsusrx.dll . ---- Previous Run ------- . C:\WINDOWS\system32\winsusrm.dll C:\WINDOWS\system32\winsusrx.dll . ((((((((((((((((((((((((( Files Created from 2007-12-28 to 2008-01-30 ))))))))))))))))))))))))))))))) . 2008-01-30 14:47 . 2005-04-03 14:02 8,944 --a------ C:\WINDOWS\system32\drivers\UnHackMeDrv.sys 2008-01-30 12:33 . 2008-01-30 12:33 <DIR> d-------- C:\Program Files\PrevxCSI 2008-01-30 10:14 . 2008-01-30 10:14 <DIR> d-------- C:\Program Files\Avira 2008-01-30 10:14 . 2008-01-30 10:14 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\Avira 2008-01-30 09:40 . 2008-01-30 09:40 <DIR> d-------- C:\RootkitNO 2008-01-30 09:40 . 2008-01-30 09:40 123 --a------ C:\WINDOWS\rootkitno.ini 2008-01-30 09:30 . 2008-01-30 09:30 77 --a------ C:\WINDOWS\lsoon.ini 2008-01-30 09:20 . 2008-01-30 09:20 <DIR> d-------- C:\backreg 2008-01-30 09:20 . C:\WINDOWS\(2) C:\ComboFix\winstart.bat 2008-01-30 09:18 . 2008-01-30 09:19 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\Regrun 2008-01-30 09:18 . 2003-09-06 15:55 57,556 --a------ C:\WINDOWS\guard.bmp 2008-01-30 09:17 . 2008-01-30 09:17 <DIR> d-------- C:\Program Files\Greatis 2008-01-30 08:58 . 2008-01-30 12:21 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\PrevxCSI 2008-01-30 08:58 . 2008-01-30 08:58 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\Prevx 2008-01-28 21:01 . 2008-01-28 21:01 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\Zylom 2008-01-28 15:17 . 2008-01-28 15:17 <DIR> d-------- C:\Program Files\DVD Shrink 2008-01-28 15:17 . 2008-01-28 15:20 <DIR> d-------- C:\Documents and Settings\All Users\Application Data\DVD Shrink 2008-01-28 10:56 . 2008-01-28 11:09 <DIR> d-------- C:\Program Files\CDex_170b2 2008-01-23 14:44 . 1999-04-23 22:22 151,552 --a------ C:\WINDOWS\system32\MSOSS.DLL 2008-01-23 11:18 . 2008-01-23 11:24 <DIR> d-------- C:\UnrealTournament 2008-01-08 13:58 . 2004-08-04 14:00 16,896 --a--c--- C:\WINDOWS\system32\dllcache\tftp.exe 2007-12-02 11:09 . 2007-12-02 11:09 <DIR> d-------- C:\Program Files\Autodesk Drawing Explorer 2007-12-02 10:52 . 2007-12-02 10:52 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\Template 2007-12-01 15:42 . 2007-12-01 15:42 <DIR> d-------- C:\Documents and Settings\Sami Chacar\Application Data\CADfx 2007-12-01 14:48 . 2007-12-01 14:48 <DIR> d-------- C:\cadfx . (((((((((((((((((((((((((((((((((((((((( Find3M Report )))))))))))))))))))))))))))))))))))))))))))))))))))) . 2008-01-29 16:30 --------- d-----w C:\Program Files\Common Files\Symantec Shared 2008-01-29 15:13 --------- d-----w C:\Program Files\Symantec 2008-01-28 10:11 --------- d-----w C:\Program Files\Norton SystemWorks 2008-01-24 12:00 --------- d--h--w C:\Program Files\InstallShield Installation Information 2008-01-24 11:38 --------- d-----w C:\Program Files\Codemasters 2008-01-21 05:01 --------- d-----w C:\Documents and Settings\Sami Chacar\Application Data\AdobeUM 2007-12-02 19:59 --------- d-----w C:\Program Files\AutoCAD 2006 2006-09-05 12:42 0 ----a-w C:\Documents and Settings\Sami Chacar\Application Data\wklnhst.dat 2003-08-27 22:19 36,963 ----a-r C:\Program Files\Common Files\SM1updtr.dll . ((((((((((((((((((((((((((((((((((((( Reg Loading Points )))))))))))))))))))))))))))))))))))))))))))))))))) . . *Note* empty entries & legit default entries are not shown REGEDIT4 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "Norton SystemWorks"="C:\Program Files\Norton SystemWorks\cfgwiz.exe" [2004-09-10 04:12 132248] "ctfmon.exe"="C:\WINDOWS\system32\ctfmon.exe" [2004-08-04 14:00 15360] "MSMSGS"="C:\Program Files\Messenger\msmsgs.exe" [2004-10-13 18:24 1694208] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "TPSMain"="TPSMain.exe" [2004-08-27 19:34 278528 C:\WINDOWS\system32\TPSMain.exe] "THotkey"="C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe" [2005-01-15 02:45 352256] "TMEPROP"="C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe" [2005-01-15 07:26 253952] "DockMsgFrom"="C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe" [2004-11-12 00:04 114688] "BluetoothAuthenticationAgent"="bthprops.cpl" [2004-08-04 14:00 110592 C:\WINDOWS\system32\bthprops.cpl] "ATIPTA"="C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe" [2004-12-08 07:10 344064] "SoundMAXPnP"="C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe" [2004-07-27 23:48 1388544] "SoundMAX"="C:\Program Files\Analog Devices\SoundMAX\Smax4.exe" [2004-08-06 18:27 860160] "SynTPLpr"="C:\Program Files\Synaptics\SynTP\SynTPLpr.exe" [2004-10-15 01:28 98394] "SynTPEnh"="C:\Program Files\Synaptics\SynTP\SynTPEnh.exe" [2004-10-15 01:26 688218] "LtMoh"="C:\Program Files\ltmoh\Ltmoh.exe" [2003-09-06 03:16 184320] "AGRSMMSG"="AGRSMMSG.exe" [2004-10-29 00:37 88363 C:\WINDOWS\agrsmmsg.exe] "NDSTray.exe"="C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe" [2004-11-13 07:54 929792] "Tvs"="C:\Program Files\Toshiba\Tvs\TvsTray.exe" [2004-11-13 03:57 73728] "TFncKy"="C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe" [2004-10-26 01:23 114688] "PadTouch"="C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe" [2004-09-08 00:03 1077301] "SmoothView"="C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe" [2004-09-16 01:03 135168] "dla"="C:\WINDOWS\system32\dla\tfswctrl.exe" [2004-08-03 11:05 122939] "SM1BG"="C:\WINDOWS\SM1BG.EXE" [2003-08-28 00:20 94208] "Pinger"="c:\toshiba\ivp\ism\pinger.exe" [2004-11-03 21:12 147456] "IntelWireless"="C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe" [2004-10-15 20:27 385024] "EOUApp"="C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe" [2004-10-15 20:31 356352] "ccApp"="C:\Program Files\Common Files\Symantec Shared\ccApp.exe" [2008-01-17 11:42 58728] "NeroFilterCheck"="C:\WINDOWS\system32\NeroCheck.exe" [2001-07-09 19:50 155648] "RemoteControl"="C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe" [2003-11-30 11:04 32768] "iTunesHelper"="C:\Program Files\iTunes\iTunesHelper.exe" [2005-06-25 00:16 278528] "QuickTime Task"="C:\Program Files\QuickTime\qttask.exe" [2005-10-22 18:41 98304] "Symantec NetDriver Monitor"="C:\PROGRA~1\SYMNET~1\SNDMon.exe" [2008-01-29 17:12 100056] "RealTray"="C:\Program Files\Real\RealPlayer\RealPlay.exe" [2005-01-05 21:51 26112] C:\Documents and Settings\All Users\Start Menu\Programs\Startup\ AutoCAD Startup Accelerator.lnk - C:\Program Files\Common Files\Autodesk Shared\acstart16.exe [2005-03-05 16:18:22 10872] Bluetooth Manager.lnk - C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtMng.exe [2004-11-10 21:00:12 471040] RAMASST.lnk - C:\WINDOWS\system32\RAMASST.exe [2004-12-31 06:58:01 155648] [HKEY_LOCAL_MACHINE\software\microsoft\windows nt\currentversion\winlogon\notify\IntelWireless] C:\Program Files\Intel\Wireless\Bin\LgNotify.dll 2004-10-15 20:27 110592 C:\Program Files\Intel\Wireless\Bin\LgNotify.dll R3 NPDriver;Norton Unerase Protection Driver;C:\WINDOWS\system32\Drivers\NPDRIVER.SYS [2004-08-31 08:38] S3 pxark;pxark;C:\WINDOWS\system32\drivers\pxark.sys [] S3 SDdriver;SDdriver;C:\WINDOWS\system32\Drivers\sddriver.sys [2004-08-31 08:23] S3 tosrfec;Bluetooth ACPI from TOSHIBA;C:\WINDOWS\system32\DRIVERS\tosrfec.sys [2004-05-18 01:18] [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{10c1a928-4391-11da-aa49-0013ce2f82ae}] \Shell\AutoRun\command - C:\WINDOWS\system32\RunDLL32.EXE Shell32.DLL,ShellExec_RunDLL antihost.exe [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{10c1a929-4391-11da-aa49-0013ce2f82ae}] \Shell\AutoRun\command - C:\WINDOWS\system32\RunDLL32.EXE Shell32.DLL,ShellExec_RunDLL antihost.exe [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{1a0465a3-a90f-11db-afbb-00a0d123bf98}] \Shell\AutoRun\command - C:\WINDOWS\system32\RunDLL32.EXE Shell32.DLL,ShellExec_RunDLL antihost.exe [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{2197eca0-44e9-11dc-b0cf-0013ce2f82ae}] \Shell\AutoRun\command - ntde1ect.com \Shell\explore\Command - ntde1ect.com \Shell\open\Command - ntde1ect.com [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{37db5ac1-6b23-11da-aada-0013ce2f82ae}] \Shell\AutoRun\command - C:\WINDOWS\system32\RunDLL32.EXE Shell32.DLL,ShellExec_RunDLL antihost.exe [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{3b956350-fe2e-11db-b018-0013ce2f82ae}] \Shell\AutoRun\command - F:\fooool.exe \Shell\explore\Command - F:\fooool.exe \Shell\open\Command - F:\fooool.exe [HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\mountpoints2\{a8ce5843-050e-11dc-b021-0013ce2f82ae}] \Shell\AutoRun\command - fooool.exe \Shell\explore\Command - fooool.exe \Shell\open\Command - fooool.exe . Contents of the 'Scheduled Tasks' folder "2008-01-25 21:07:16 C:\WINDOWS\Tasks\Norton AntiVirus - Scan my computer - Sami Chacar.job" - C:\PROGRA~1\NORTON~2\NORTON~3\Navw32.exeh/task: "2008-01-28 10:11:42 C:\WINDOWS\Tasks\Norton SystemWorks One Button Checkup.job" - C:\Program Files\Norton SystemWorks\OBC.exe "2008-01-27 22:00:00 C:\WINDOWS\Tasks\Symantec Drmc.job" - C:\Program Files\Common Files\Symantec Shared\SymDrmc.exe . ************************************************************************** catchme 0.3.1344 W2K/XP/Vista - rootkit/stealth malware detector by Gmer, http://www.gmer.net Rootkit scan 2008-01-30 14:56:24 Windows 5.1.2600 Service Pack 2 NTFS scanning hidden processes ... scanning hidden autostart entries ... scanning hidden files ... scan completed successfully hidden files: 0 ************************************************************************** . --------------------- DLLs Loaded Under Running Processes --------------------- PROCESS: C:\WINDOWS\Explorer.EXE [6.00.2900.3156] -> C:\Program Files\Toshiba\Toshiba Applet\TMEEJDLL.dll . ------------------------ Other Running Processes ------------------------ . C:\WINDOWS\system32\Ati2evxx.exe C:\Program Files\Intel\Wireless\Bin\EvtEng.exe C:\Program Files\Intel\Wireless\Bin\S24EvMon.exe C:\Program Files\Intel\Wireless\Bin\ZcfgSvc.exe C:\WINDOWS\system32\Ati2evxx.exe C:\PROGRA~1\Intel\Wireless\Bin\1XConfig.exe C:\WINDOWS\system32\TPSMain.exe C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe C:\WINDOWS\system32\rundll32.exe C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe C:\Program Files\Synaptics\SynTP\SynTPLpr.exe C:\Program Files\Synaptics\SynTP\SynTPEnh.exe C:\Program Files\ltmoh\Ltmoh.exe C:\WINDOWS\AGRSMMSG.exe C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe C:\Program Files\Toshiba\Tvs\TvsTray.exe C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe C:\WINDOWS\system32\TPSBattM.exe C:\WINDOWS\system32\dla\tfswctrl.exe C:\WINDOWS\SM1BG.EXE C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe C:\Program Files\iTunes\iTunesHelper.exe C:\Program Files\QuickTime\qttask.exe C:\Program Files\Real\RealPlayer\RealPlay.exe C:\Program Files\TOSHIBA\ConfigFree\CFSvcs.exe C:\Program Files\Messenger\msmsgs.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtMng.exe C:\WINDOWS\system32\RAMASST.exe C:\WINDOWS\system32\DVDRAMSV.exe C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosA2dp.exe C:\Program Files\Intel\Wireless\Bin\OProtSvc.exe C:\Program Files\Intel\Wireless\Bin\RegSrvc.exe C:\Program Files\Analog Devices\SoundMAX\SMAgent.exe C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\StarWindService.exe c:\Toshiba\IVP\swupdate\swupdtmr.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\TAPPSRV.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosAVRC.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\tme3srv.exe C:\WINDOWS\system32\wdfmgr.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtHsp.exe C:\Program Files\iPod\bin\iPodService.exe . ************************************************************************** . Completion time: 2008-01-30 15:03:24 - machine was rebooted [sami Chacar] ComboFix-quarantined-files.txt 2008-01-30 13:03:20 . 2008-01-29 15:17:58 --- E O F --- J'ai essaye les trucs dont j'avais parle dans symptomes ils fonctionnent comme il faut. Est ce que ca veut dire que c passe? encore merci GOF
  22. Merci Bcp gof pour ton aide Enfin apres avoir essaye 4 fois combofix et apres avoir supprime 2 antivirus voici le rapport combofix: ************************************************************************** . --------------------- DLLs Loaded Under Running Processes --------------------- PROCESS: C:\WINDOWS\Explorer.EXE [6.00.2900.3156] -> C:\Program Files\Toshiba\Toshiba Applet\TMEEJDLL.dll . ------------------------ Other Running Processes ------------------------ . C:\WINDOWS\system32\Ati2evxx.exe C:\Program Files\Intel\Wireless\Bin\EvtEng.exe C:\Program Files\Intel\Wireless\Bin\S24EvMon.exe C:\Program Files\Intel\Wireless\Bin\ZcfgSvc.exe C:\WINDOWS\system32\Ati2evxx.exe C:\PROGRA~1\Intel\Wireless\Bin\1XConfig.exe C:\WINDOWS\system32\TPSMain.exe C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe C:\WINDOWS\system32\rundll32.exe C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe C:\Program Files\Synaptics\SynTP\SynTPLpr.exe C:\Program Files\Synaptics\SynTP\SynTPEnh.exe C:\Program Files\ltmoh\Ltmoh.exe C:\WINDOWS\AGRSMMSG.exe C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe C:\Program Files\Toshiba\Tvs\TvsTray.exe C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe C:\WINDOWS\system32\TPSBattM.exe C:\WINDOWS\system32\dla\tfswctrl.exe C:\WINDOWS\SM1BG.EXE C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe C:\Program Files\iTunes\iTunesHelper.exe C:\Program Files\QuickTime\qttask.exe C:\Program Files\Real\RealPlayer\RealPlay.exe C:\Program Files\TOSHIBA\ConfigFree\CFSvcs.exe C:\Program Files\Messenger\msmsgs.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtMng.exe C:\WINDOWS\system32\RAMASST.exe C:\WINDOWS\system32\DVDRAMSV.exe C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosA2dp.exe C:\Program Files\Intel\Wireless\Bin\OProtSvc.exe C:\Program Files\Intel\Wireless\Bin\RegSrvc.exe C:\Program Files\Analog Devices\SoundMAX\SMAgent.exe C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\StarWindService.exe c:\Toshiba\IVP\swupdate\swupdtmr.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\TAPPSRV.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosAVRC.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\tme3srv.exe C:\WINDOWS\system32\wdfmgr.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtHsp.exe C:\Program Files\iPod\bin\iPodService.exe . ************************************************************************** . Completion time: 2008-01-30 15:03:24 - machine was rebooted [sami Chacar] ComboFix-quarantined-files.txt 2008-01-30 13:03:20 . 2008-01-29 15:17:58 --- E O F --- Quoi faire maintenant? Merci
  23. J'ai oublie de vous dire que les fichiers que Antivir a supprime sont en relation avec TR/Crypt.NSPM.Gen merci
  24. Bonjour Nos ordinateurs a la maison ont tous ete infectes par un virus probablement provenant d'une cle USB (la cle est passee sur tt les postes). Si vous pouvez m'aider se serait sympa. Symptomes: -Je ne parviens pas a ouvrir les fichiers caches(hidden) -je ne parvient pas a ouvrir le disque dur a partir de my computer (windows me demande avec quel programme je desire ouvrir). j'arrive seulement a l'ouvir a partir de run (demarrer). Il faut noter que j'ai farfouille un peu et efface des fichiers grace a Antivir, RegRun, UnHackme... donc avant cela mon disque dur ouvrait a patir de my computer mais dans une autre fenetre. -l'ordinateur est bcp plus lent. Il y'a des fichiers suspect que les differents antivirus m'ont signale: -YLR.exe -AMVO.exe J'ai aussi un rapport HiJackthis Logfile of HijackThis v1.99.1 Scan saved at 1:30:06 PM, on 1/30/2008 Platform: Windows XP SP2 (WinNT 5.01.2600) MSIE: Internet Explorer v7.00 (7.00.5730.0013) Running processes: C:\WINDOWS\System32\smss.exe C:\WINDOWS\system32\winlogon.exe C:\WINDOWS\system32\services.exe C:\WINDOWS\system32\lsass.exe C:\WINDOWS\system32\Ati2evxx.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\Program Files\Intel\Wireless\Bin\EvtEng.exe C:\Program Files\Intel\Wireless\Bin\S24EvMon.exe C:\Program Files\Intel\Wireless\Bin\ZcfgSvc.exe C:\WINDOWS\system32\Ati2evxx.exe C:\WINDOWS\Explorer.EXE C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCSvc.exe C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe C:\WINDOWS\system32\spoolsv.exe C:\Program Files\Symantec\LiveUpdate\ALUSchedulerSvc.exe C:\Program Files\TOSHIBA\ConfigFree\CFSvcs.exe C:\WINDOWS\system32\DVDRAMSV.exe C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE C:\Program Files\Norton SystemWorks\Norton AntiVirus\navapsvc.exe C:\Program Files\Norton SystemWorks\Norton AntiVirus\IWP\NPFMntor.exe C:\PROGRA~1\NORTON~2\NORTON~1\NPROTECT.EXE C:\Program Files\Intel\Wireless\Bin\OProtSvc.exe C:\Program Files\Intel\Wireless\Bin\RegSrvc.exe C:\Program Files\Analog Devices\SoundMAX\SMAgent.exe C:\PROGRA~1\NORTON~2\NORTON~1\SPEEDD~1\NOPDB.EXE C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\StarWindService.exe c:\Toshiba\IVP\swupdate\swupdtmr.exe C:\Program Files\Common Files\Symantec Shared\CCPD-LC\symlcsvc.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\TAPPSRV.exe C:\Program Files\TOSHIBA\TOSHIBA Applet\tme3srv.exe C:\WINDOWS\system32\TPSMain.exe C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe C:\WINDOWS\system32\rundll32.exe C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe C:\Program Files\Synaptics\SynTP\SynTPLpr.exe C:\Program Files\Synaptics\SynTP\SynTPEnh.exe C:\Program Files\ltmoh\Ltmoh.exe C:\WINDOWS\system32\TPSBattM.exe C:\WINDOWS\AGRSMMSG.exe C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe C:\Program Files\Toshiba\Tvs\TvsTray.exe C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe C:\WINDOWS\system32\dla\tfswctrl.exe C:\WINDOWS\SM1BG.EXE C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe C:\Program Files\Common Files\Symantec Shared\ccApp.exe C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe C:\Program Files\iTunes\iTunesHelper.exe C:\Program Files\QuickTime\qttask.exe C:\Program Files\iPod\bin\iPodService.exe C:\Program Files\Real\RealPlayer\RealPlay.exe C:\WINDOWS\system32\ctfmon.exe C:\Program Files\Messenger\msmsgs.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtMng.exe C:\WINDOWS\system32\RAMASST.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosA2dp.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosAVRC.exe C:\Program Files\Toshiba\Bluetooth Toshiba Stack\TosBtHsp.exe C:\Program Files\PrevxCSI\prevxcsi.exe C:\PROGRA~1\Intel\Wireless\Bin\1XConfig.exe C:\Program Files\Internet Explorer\iexplore.exe C:\WINDOWS\system32\wuauclt.exe C:\Program Files\Avira\AntiVir PersonalEdition Classic\avcenter.exe c:\program files\avira\antivir personaledition classic\avscan.exe C:\Program Files\HijackThis\HijackThis.exe R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Search Bar = C:\Program Files\Copernic Agent\Web\SearchBar.htm R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = http://go.microsoft.com/fwlink/?LinkId=69157 R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = http://go.microsoft.com/fwlink/?LinkId=54896 R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = http://go.microsoft.com/fwlink/?LinkId=54896 R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = http://go.microsoft.com/fwlink/?LinkId=69157 O2 - BHO: AcroIEHlprObj Class - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - C:\Program Files\Adobe\Acrobat 6.0\Reader\ActiveX\AcroIEHelper.dll O2 - BHO: DriveLetterAccess - {5CA3D70E-1895-11CF-8E15-001234567890} - C:\WINDOWS\system32\dla\tfswshx.dll O2 - BHO: NAV Helper - {BDF3E430-B101-42AD-A544-FADC6B084872} - C:\Program Files\Norton SystemWorks\Norton AntiVirus\NavShExt.dll O3 - Toolbar: Norton AntiVirus - {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} - C:\Program Files\Norton SystemWorks\Norton AntiVirus\NavShExt.dll O3 - Toolbar: Copernic Agent - {F2E259E8-0FC8-438C-A6E0-342DD80FA53E} - C:\PROGRA~1\COPERN~1\COPERN~1.DLL O4 - HKLM\..\Run: [TPSMain] TPSMain.exe O4 - HKLM\..\Run: [THotkey] C:\Program Files\Toshiba\Toshiba Applet\thotkey.exe O4 - HKLM\..\Run: [TMEPROP] C:\Program Files\Toshiba\Toshiba Applet\TMEPROP.exe -S O4 - HKLM\..\Run: [DockMsgFrom] C:\Program Files\Toshiba\Toshiba Applet\DockMsgFrom.exe O4 - HKLM\..\Run: [bluetoothAuthenticationAgent] rundll32.exe bthprops.cpl,,BluetoothAuthenticationAgent O4 - HKLM\..\Run: [ATIPTA] C:\Program Files\ATI Technologies\ATI Control Panel\atiptaxx.exe O4 - HKLM\..\Run: [soundMAXPnP] C:\Program Files\Analog Devices\SoundMAX\SMax4PNP.exe O4 - HKLM\..\Run: [soundMAX] C:\Program Files\Analog Devices\SoundMAX\Smax4.exe /tray O4 - HKLM\..\Run: [synTPLpr] C:\Program Files\Synaptics\SynTP\SynTPLpr.exe O4 - HKLM\..\Run: [synTPEnh] C:\Program Files\Synaptics\SynTP\SynTPEnh.exe O4 - HKLM\..\Run: [LtMoh] C:\Program Files\ltmoh\Ltmoh.exe O4 - HKLM\..\Run: [AGRSMMSG] AGRSMMSG.exe O4 - HKLM\..\Run: [NDSTray.exe] C:\Program Files\TOSHIBA\ConfigFree\NDSTray.exe O4 - HKLM\..\Run: [Tvs] C:\Program Files\Toshiba\Tvs\TvsTray.exe O4 - HKLM\..\Run: [TFncKy] C:\Program Files\TOSHIBA\TOSHIBA Controls\TFncKy.exe O4 - HKLM\..\Run: [PadTouch] C:\Program Files\TOSHIBA\Touch and Launch\PadExe.exe O4 - HKLM\..\Run: [smoothView] C:\Program Files\TOSHIBA\TOSHIBA Zooming Utility\SmoothView.exe O4 - HKLM\..\Run: [dla] C:\WINDOWS\system32\dla\tfswctrl.exe O4 - HKLM\..\Run: [sM1BG] C:\WINDOWS\SM1BG.EXE O4 - HKLM\..\Run: [Pinger] c:\toshiba\ivp\ism\pinger.exe /run O4 - HKLM\..\Run: [intelWireless] C:\Program Files\Intel\Wireless\Bin\ifrmewrk.exe /tf Intel PROSet/Wireless O4 - HKLM\..\Run: [EOUApp] C:\Program Files\Intel\Wireless\Bin\EOUWiz.exe O4 - HKLM\..\Run: [ccApp] "C:\Program Files\Common Files\Symantec Shared\ccApp.exe" O4 - HKLM\..\Run: [NeroFilterCheck] C:\WINDOWS\system32\NeroCheck.exe O4 - HKLM\..\Run: [RemoteControl] C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe O4 - HKLM\..\Run: [iTunesHelper] "C:\Program Files\iTunes\iTunesHelper.exe" O4 - HKLM\..\Run: [QuickTime Task] "C:\Program Files\QuickTime\qttask.exe" -atboottime O4 - HKLM\..\Run: [symantec NetDriver Monitor] C:\PROGRA~1\SYMNET~1\SNDMon.exe /Consumer O4 - HKLM\..\Run: [RealTray] C:\Program Files\Real\RealPlayer\RealPlay.exe SYSTEMBOOTHIDEPLAYER O4 - HKLM\..\Run: [KernelFaultCheck] %systemroot%\system32\dumprep 0 -k O4 - HKLM\..\Run: [RegRun WinBait] C:\WINDOWS\winbait.exe O4 - HKLM\..\Run: [@RegRunOnSecure] C:\PROGRA~1\Greatis\REGRUN~1\OnSecure.exe O4 - HKCU\..\Run: [Norton SystemWorks] "C:\Program Files\Norton SystemWorks\cfgwiz.exe" /GUID {05858CFD-5CC4-4ceb-AAAF-CF00BF39736A} /MODE CfgWiz O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe O4 - HKCU\..\Run: [MSMSGS] "C:\Program Files\Messenger\msmsgs.exe" /background O4 - HKCU\..\Run: [Regrun2] C:\PROGRA~1\Greatis\REGRUN~1\WatchDog.exe O4 - HKCU\..\Run: [Registry] "C:\Program Files\Greatis\RegRunSuite\lsoon.exe" -1 30 "C:\Program Files\Greatis\RegRunSuite\rescue.exe" /a "c:\backreg\rstore.ini" O4 - Global Startup: AutoCAD Startup Accelerator.lnk = C:\Program Files\Common Files\Autodesk Shared\acstart16.exe O4 - Global Startup: Bluetooth Manager.lnk = ? O4 - Global Startup: RAMASST.lnk = C:\WINDOWS\system32\RAMASST.exe O8 - Extra context menu item: &AOL Toolbar search - res://C:\Program Files\AOL Toolbar\toolbar.dll/SEARCH.HTML O8 - Extra context menu item: Chercher avec Copernic Agent - C:\Program Files\Copernic Agent\Web\SearchExt.htm O8 - Extra context menu item: E&xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\OFFICE11\EXCEL.EXE/3000 O9 - Extra button: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0\bin\npjpi150.dll O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0\bin\npjpi150.dll O9 - Extra button: (no name) - {193B17B0-7C9F-4D5B-AEAB-8D3605EFC084} - C:\PROGRA~1\COPERN~1\COPERN~1.EXE O9 - Extra 'Tools' menuitem: Démarrer Copernic Agent - {193B17B0-7C9F-4D5B-AEAB-8D3605EFC084} - C:\PROGRA~1\COPERN~1\COPERN~1.EXE O9 - Extra button: Copernic Agent - {688DC797-DC11-46A7-9F1B-445F4F58CE6E} - C:\PROGRA~1\COPERN~1\COPERN~1.EXE O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\OFFICE11\REFIEBAR.DLL O9 - Extra button: Real.com - {CD67F990-D8E9-11d2-98FE-00C0F0318AFE} - C:\WINDOWS\system32\Shdocvw.dll O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe O11 - Options group: [iNTERNATIONAL] International* O12 - Plugin for .spop: C:\Program Files\Internet Explorer\Plugins\NPDocBox.dll O14 - IERESET.INF: START_PAGE_URL=http://www.toshibadirect.com/dpdstart O16 - DPF: {CE69F98F-2AF3-4306-BAC6-A79070EDA1B4} (Zylom Loader Object) - http://eu.download.games.yahoo.com/zylom/a...zylomloader.cab O20 - Winlogon Notify: IntelWireless - C:\Program Files\Intel\Wireless\Bin\LgNotify.dll O20 - Winlogon Notify: WgaLogon - C:\WINDOWS\SYSTEM32\WgaLogon.dll O23 - Service: Ati HotKey Poller - ATI Technologies Inc. - C:\WINDOWS\system32\Ati2evxx.exe O23 - Service: Autodesk Licensing Service - Autodesk - C:\Program Files\Common Files\Autodesk Shared\Service\AdskScSrv.exe O23 - Service: Automatic LiveUpdate Scheduler - Symantec Corporation - C:\Program Files\Symantec\LiveUpdate\ALUSchedulerSvc.exe O23 - Service: Symantec Event Manager (ccEvtMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe O23 - Service: Symantec Password Validation (ccPwdSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccPwdSvc.exe O23 - Service: Symantec Settings Manager (ccSetMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe O23 - Service: ConfigFree Service (CFSvcs) - TOSHIBA CORPORATION - C:\Program Files\TOSHIBA\ConfigFree\CFSvcs.exe O23 - Service: DVD-RAM_Service - Matsushita Electric Industrial Co., Ltd. - C:\WINDOWS\system32\DVDRAMSV.exe O23 - Service: EvtEng - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\EvtEng.exe O23 - Service: iPod Service (iPodService) - Apple Computer, Inc. - C:\Program Files\iPod\bin\iPodService.exe O23 - Service: LiveUpdate - Symantec Corporation - C:\PROGRA~1\Symantec\LIVEUP~1\LUCOMS~1.EXE O23 - Service: MATLAB Server (matlabserver) - Unknown owner - C:\matlab\webserver\bin\win32\matlabserver.exe (file missing) O23 - Service: Norton AntiVirus Auto-Protect Service (navapsvc) - Symantec Corporation - C:\Program Files\Norton SystemWorks\Norton AntiVirus\navapsvc.exe O23 - Service: Norton AntiVirus Firewall Monitor Service (NPFMntor) - Symantec Corporation - C:\Program Files\Norton SystemWorks\Norton AntiVirus\IWP\NPFMntor.exe O23 - Service: Norton Unerase Protection (NProtectService) - Symantec Corporation - C:\PROGRA~1\NORTON~2\NORTON~1\NPROTECT.EXE O23 - Service: OwnershipProtocol - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\OProtSvc.exe O23 - Service: RegSrvc - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\RegSrvc.exe O23 - Service: Spectrum24 Event Monitor (S24EventMonitor) - Intel Corporation - C:\Program Files\Intel\Wireless\Bin\S24EvMon.exe O23 - Service: SAVScan - Symantec Corporation - C:\Program Files\Norton SystemWorks\Norton AntiVirus\SAVScan.exe O23 - Service: ScriptBlocking Service (SBService) - Symantec Corporation - C:\PROGRA~1\COMMON~1\SYMANT~1\SCRIPT~1\SBServ.exe O23 - Service: Symantec Network Drivers Service (SNDSrvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe O23 - Service: SoundMAX Agent Service (SoundMAX Agent Service (default)) - Analog Devices, Inc. - C:\Program Files\Analog Devices\SoundMAX\SMAgent.exe O23 - Service: Symantec SPBBCSvc (SPBBCSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCSvc.exe O23 - Service: Speed Disk service - Symantec Corporation - C:\PROGRA~1\NORTON~2\NORTON~1\SPEEDD~1\NOPDB.EXE O23 - Service: StarWind iSCSI Service (StarWindService) - Rocket Division Software - C:\Program Files\Alcohol Soft\Alcohol 120\StarWind\StarWindService.exe O23 - Service: Swupdtmr - Unknown owner - c:\Toshiba\IVP\swupdate\swupdtmr.exe O23 - Service: Symantec Core LC - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\CCPD-LC\symlcsvc.exe O23 - Service: TOSHIBA Application Service (TAPPSRV) - TOSHIBA Corp. - C:\Program Files\TOSHIBA\TOSHIBA Applet\TAPPSRV.exe O23 - Service: TME3SRV - IEC - C:\Program Files\TOSHIBA\TOSHIBA Applet\tme3srv.exe je ne suis pas professionnel en informatique donc je ne sais pas quoi faire. Merci d'avance
×
×
  • Créer...