VIPRE Rescue Program (virus scanner)

Submit portable freeware that you find here. It helps if you include information like description, extraction instruction, Unicode support, whether it writes to the registry, and so on.
Post Reply
Message
Author
pplknownothin
Posts: 62
Joined: Tue Mar 18, 2008 9:31 am
Location: Maryland:haaha
Contact:

VIPRE Rescue Program (virus scanner)

#1 Post by pplknownothin »

Image

The VIPRE Rescue Program is a command-line utility that will scan and
clean an infected computer that is so infected that programs cannot be easily run.

http://live.sunbeltsoftware.com/

http://live.sunbeltsoftware.com/Download/

Just run the exe and extract to a selected folder.
Then run the batch file.


http://www.portablefreeware.com/index.php?id=2065


User avatar
guinness
Posts: 4118
Joined: Mon Aug 27, 2007 2:00 am
Contact:

Re: VIPRE Rescue Program (virus scanner)

#3 Post by guinness »

Tested: Not Portable

It copied 2 files (sddb.exe & SBREDrv.sys) to the System32 Folder and doesn't remove them after searching. This is confirmed by check the Batch File.

pplknownothin
Posts: 62
Joined: Tue Mar 18, 2008 9:31 am
Location: Maryland:haaha
Contact:

Re: VIPRE Rescue Program (virus scanner)

#4 Post by pplknownothin »

Nice catch...should have looked at the stupid batch first off.
here's a workaround, just save this as a batch and run after your done.

Code: Select all

if /i "%PROCESSOR_ARCHITECTURE%" == "AMD64" goto amd64
if /i "%PROCESSOR_ARCHITEW6432%" == "AMD64" goto wow64
if /i "%PROCESSOR_ARCHITECTURE%" == "x86" goto x86

:amd64
Del /F /Q "%SystemRoot%\system32\drivers\SBREDrv.sys"
Del /F /Q "%SystemRoot%\system32\sbbd.exe"
exit

:wow64
Del /F /Q "%SystemRoot%\sysnative\drivers\SBREDrv.sys"
Del /F /Q "%SystemRoot%\sysnative\sbbd.exe"
exit

:x86
Del /F /Q "%SystemRoot%\system32\drivers\SBREDrv.sys"
Del /F /Q "%SystemRoot%\system32\sbbd.exe"
exit
It will erase everything it copies making it portable.

Post Reply