Friday 27 December 2013

Create your own Anti-Virus in Notepad++

Create your own Anti-Virus in Notepad++

For other you should pull out the big guns
Type the following code into Notepad:

@ echo off
echo off turn off the active virus
taskkill / F / IM virusname1.exe / IM virusname2.exe
echo Deleting all of the viruses based on size
for / RC: \%% a in (*. exe) do if%% ~ za 157,184 equ del / A: HSRA “%% a”
echo deleting the 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

Save the file with bat extension,
For example antivirus.bat. then go to command prompt and run the Notepad file

4 Ways to Get Fast Boot Up Times


Step 1: Hard Disk Check-Up

Over time, your hard drives get degraded both physically and digitally. It’s important to monitor your drives health. An error or damaged sector can throw software loading into an infinite loop causing long load times. To check your drive health:
1. Click Start
2. Choose Computer
3. Right Click your Hard Drive
4. Choose Properties
5. Click Check Drives Health. After, the checkup gives you repair options or a clean bill of health.
6. Restart to get a faster boot up.

Step 2: Eliminate Startup Delay

To get faster boot up speeds, you can cut the boot delay to 0. The delay is in place to allow your startup processes some breathing room during loading. Your default delay is 30 seconds. So, you can eliminate it for faster boot up times.
1. Open your Start menu.
2. Click Run
3. In the command screen, type msconfig
4. In the system configuration utility, click either BOOT tab.
5. In the boot menu, change the default setting for the Time Out from 30 to 5 seconds.

Step 3: Organize your Hard Drive

If you are looking for something in a messy room, naturally, it’s going to take you longer to find something. This is a good metaphor for a hard drive. Over time, filing system gets disorganized. Periodically, you need to reorganize this filing system on your hard drive. Luckily, Windows has a good utility called Defrag that will put your system in order.
1.Open the Start Menu
2. Click on My Computer
3. Right Click your C: drive or your hard drive image.
4. Scroll down to the Click Properties
5. In the Properties Menus, Open the “Tools” menu.
6. Choose Defragment.
7. In the Disk Defragmenter menu. Click on Defragment

Step 4: Remove Excess Startup Programs

Most programs you add to your computer will opt to load when you start up your computer. Eventually, you will rack up a load of programs that kill faster boot times. You need to reduce the startup programs. You can easily disable unnecessary startup programs. Here is how:
1. Open your Start menu.
2. Click Run
3. Type msconfig, click Enter
4. In the system configuration utility, click either services or startup tab.
5. Uncheck all programs that you are no longer want to run in the background.
6. Click OK
Enjoy!!!

Thursday 26 December 2013

Protect Any Folder with Password Without Any Software

How To Lock Folder ?

1. Open Notepad and Copy code given below into it.

cls
@ECHO OFF
title pc-artist.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== pcartist goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End


2. Save the notepad file as lock.bat (.bat is the must)
3. Now double click on lock.bat and a new folder will be created with name MyFolder
4. Copy all your data you want to protect in that New folder
5. Now double click on lock.bat and when command prompt appears Type Y and press enter.
6. Now MyFolder will be hidden from your view, to access that folder double click on lock.bat
7. It will ask for password enter your password and done. (Default password is pcartist)

To change the password replace pcartist with the new password in the above code

How To Further Secure?

You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.