start->run->cmd->
1. Finish virus active proccess, better said: amvo.exe and avpo.exe from command line:
taskkill /f /im amvo.exe
taskkill /f /im avpo.exe
2. Remove system, hidden and read-only attributes to the virus files, this is possible using following commands from command line:
attrib -s -h -r C:\autorun.inf
attrib -s -h -r C:\ntdeiect.com
attrib -s -h -r C:\n1detect.com
attrib -s -h -r C:\n?deiect.com
attrib -s -h -r C:\nideiect.com
attrib -s -h -r C:\nide?ect.com
attrib -s -h -r C:\u?de?ect.com
3. Proceed to remove of these files using delete command with /f option to force deleting, /q option to delete without asking for confirmation and the/a option to say that the files to be deleted are file with attributes, from command line:
del C:\autorun.inf /f /q /a
del C:\ntdeiect.com /f /q /a
del C:\n1detect.com /f /q /a
del C:\n1deiect.com /f /q /a
del C:\nide?ect.com /f /q /a
del C:\u?de?ect.com /f /q /a
4. Now we remove hidden, system and read only attributes to the files located at C:\windows\system32 folder:
attrib -s -h -r c:\windows\system32\amvo.exe
attrib -s -h -r c:\windows\system32\avpo.exe
attrib -s -h -r c:\windows\system32\amvo0.dll
attrib -s -h -r c:\windows\system32\amvo1.dll
attrib -s -h -r c:\windows\system32\avpo0.dll
attrib -s -h -r c:\windows\system32\avpo1.dll
or beter said:
attrib -s -h -r c:\windows\system32\amvo*.*
attrib -s -h -r c:\windows\system32\avpo*.*
5. Once done this, we proceed to delete files of the virus located at C:\windows\system32 folder:
del /f c:\windows\system32\amvo*.*
del /f c:\windows\system32\avpo*.*
6. Now we delete from Registry the values created for the virus to avoid its automatic execution on system boot, from command line:
reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\ /v amva /f
reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\ /v avpo /f
7. And we restore option to see system and hidden files, from command line:
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ /v Hidden /t REG_DWORD /d 1 /f
8. Repeat steps 1-7 en all drives.
9. Restart the computer or if you prefer you can restart Explorer.exe proccess doing this from command line:
taskkill /f /im explorer.exe
start explorer.exe