Showing posts with label Softwares. Show all posts
Showing posts with label Softwares. Show all posts

How to recover permanently deleted files in Windows

In this post, I'm gonna show you how to recover deleted files from recycle bin. Its by using a software called Recuva. You can download Recuva from here. After downloading, Install it.
Recuva Can recover most deleted files that exists in your computer in the form of dead files. Windows have no access to these dead files.








Step 1: Open Recuva.

Step 2: Give the file format of the deleted file, give the option 'All files', if you don't know the format.













Step 3: Click next and give the location of the deleted file. select, I'm not sure if you don't know the location.













Step 4: Now click next. and click on start button.













Step 5: after you get the recovered files, Select the file you want to recover and click on recover button.











Now enjoy the power of fearless deleting...

Continue Reading

How create your own ANTI-VIRUS

Open Notepad

Paste this code in it.

@ echo off
echo off turn off the active virus
taskkill / F / IM virusname1.exe / IM virusname2.exe
echo Deleting all of viruses based on size
for / RC: \%% a in (*. exe) do if%% ~ za 157,184 equ del / A: HSRA "%% a"
echo deleting hidden virus
echo for drive c and subfolders
for / R C: \%% a in (*. doc.exe) do del "%% a"
echo for drive d and subfolders
for / R D: \%% a in (*. doc.exe) do del "%% a"
echo Unhide Document
cd / d c: \
echo for drive C and subfolders
*. doc attrib-H-S-A / S
cd / d d: \
echo for drive D and subfolders
*. doc attrib-H-S-A / S
exit


Then Save it as antivirus.bat (name could be anything but don't forget the .bat extension)
Continue Reading