| Comments ]

Do u get irritated when acrobat reader takes 5/10 seconds to load when you want to open a pdf document. There is a way to speed up the loading.

1. Go to the installation folder of acrobat reader
(C:\program files\adobe\acrobat\reader\.. whatever)

2. Move all the files and folders from the "plugins" directory to the "Optional" directory. (I repeat.. cut and paste the files NOT copy & paste).

Also make sure that acrobat reader is not open else it will lock the files and not allow you to move the files).

Now your acrobat reader will load very fast
and almost as good as notepad..
the same.
Read more >>

| Comments ]

ENTERING DEBUG

Debug has been included in every version of MS-DOS as well as Windows. When running any of the debug routines it is recommended that if you have Windows that you exit or shut down to get into a real DOS prompt (unless you're running Windows ME, Windows 2000, Windows XP, or later versions).



Once at the MS- DOS prompt, run through the below example, this example is perfectly fine to run on any PC Computer running MS-DOS / Windows and will not harm anything.
Type debug and press enter.
This should get you to a - (small dash). This is the debug prompt.
At the - type d40:00 and press enter; this will return several lines of information.
After the feedback you will be back to the debug prompt.
To exit out of debug type q and press enter. This will return you back to the MS-DOS prompt.


In some of the below debug routines you will notice that a "g" is typed, then "q". G tells the computer that the code type is not self executing and must be run at this point. If completed, the program will return Program Terminated Normally which indicates you can now quit from the debug program.
TESTING PORTS


The below debug routine will check the ports of the computer to allow you to know if ports are being detected or not. Type debug to get to the "-" Type D40:0
You should get several lines; however, the first line is the only important line, which should read the following:
0040:0000 F8 03 F8 02 E8 03 E8 02 - 78 03 78 02 BC 03
F8 03
F8 02
E8 03
E8 02

78 03
78 02
BC 03
COM1
COM2
COM3
COM4

LPT1
LPT2
LPT3
The above graph shows you what the feed back means as far as port, so if you see F8 03, this would be an indication that COM1 is being detected; if you see 00 00, this is an indication that it is not being detected, which could mean that hardware is bad or that it is disabled inCMOS
Once you have finished looking at the information, type Q and press enter to get out of Debug.
CLEAR CMOS


The below debug routine will clear CMOS, BIOS, Passwords, Settings, Viruses, and other items residing in the CMOS. During this process you may get returned characters which are an indication that the string has gone in, if you by chance get ERROR ensure that you have typed the line in correctly, if not retype. Ensure that you do not skip any lines, that it is ALL typed in correctly to help prevent problems. Before running this Debug routine also ensure that you have read the above disclaimer. After typing debug you will get "-" which is were you can begin by typing A and pressing enter. A
MOV AX,0
MOV AX,CX
OUT 70,AL
MOV AX,0
OUT 71,AL
INC CX
CMP CX,100
JB 103
INT 20
Note: Nothing is typed on this line
G By pressing G this will execute the above script, ensure you have read and agree to the above disclaimer.
Q Then reboot and you will get a Setup Checksum Error. Go into setup, correct all the incorrect values, time, date...
JOYSTICK TEST


This test will test to see if your Joystick is present or not. Type debug from the DOS prompt once at the "-". Type i201 If you get a FF response attempt hold one of the main buttons on your joystick, and while holding the button down type i201 and see if a different response is given, each button on the joystick should return a different response. However, some special joysticks, such as the Microsoft Sidewinder, which has more than 4-5 buttons, may not return a response for all extra buttons because these buttons are generally controlled through software. If a FF is still given on each of the buttons on the game paddle or joystick, it is a good possibility that either the Joystick and or the Joystick port is bad. If possible, attempt these steps with another known working joystick. However, if you are receiving different responses when pressing and holding the keys on the joystick, the computer hardware is working properly. Type q and press enter to quit out of debug.

ERASING SECTOR 2


Before doing the below routine ensure that you have read our disclaimer and that you're sure that this is safe to do on your hard drive. Some computer hard drive manufacturers may void your warranty if this routine is ran or in some situations this can cause damage to the hard drive. This routine is useful in clearing DDO and unknown partitions. If this routine completes successfully it will erase everything in Sector 2. In the below debug routine, only type what is in bold from line 3 to 9, you will get a response if typed in properly. If you get a response continue to type the bold text as shown below in the below example.
A:\>debug
-FCS:200 400 0
-ACS:100
-xxxx:0100 mov ax,302
-xxxx:0103 mov bx,200
-xxxx:0106 mov cx,2
-xxxx:0109 mov dx, 80
-xxxx:010a int 13
-xxxx:010c int 20
-xxxx:0110 (without typing anything)
-g
Program terminated normally.
-q

ERASE ALL HDD INFORMATION


This debug routine is used to erase all partition information on the hard disk drive and is only recommend for experienced users or users who are unable to delete the partition information through fdisk. In the below debug routine, only type what is in bold from line 3 to 8, you will get a response if typed in properly. If you get a response continue to type the bold text as shown below in the below example. A:\>debug
-F 200 L1000 0
-A CS:100
xxxx:0100 MOV AX,301
xxxx:0103 MOV BX,200
xxxx:0106 MOV CX,1
xxxx:0109 MOV DX,80 (80 for hd 0 or 81 for hd 1 ) xxxx:010C INT 13
xxxx:010E INT 20
xxxx:0110
-g
Program terminated normally
-q Once this debug routine is complete, reboot computer and all partitions should be erased. Before anything can be installed back onto the computer you must run Fdisk and recreate the partition as well as format the hard disk drive.

ERASE HDD AND CLEAR CMOS

Before doing the below routine ensure that you read our disclaimer as well as are sure that this is safe to do on your hard drive. Some computer hard drive manufacturers may void your warranty or this may cause damage to the hard drive when doing the below example. This routine is useful in clearing DDO and removing possible viruses. If this routine completes successfully it will erase everything from your Hard Drive as well as your reset your CMOS values. In the below debug routine, only type what is in bold from line 3 to 17, you will get a response if typed in properly. If you get a response continue to type the bold text as shown below in the below example.
A:\>debug
-fcs:200 400 0
-acs:100
-xxxx:0100 mov ax, 0
-xxxx:0103 mov ax, cx
-xxxx:0105 out 70, al
-xxxx:0107 mov ax, 0
-xxxx:010a out 71,al
-xxxx:010c inc cx
-xxxx:010d cmp cx,100
-xxxx:0111 jb 103
-xxxx:0113 mov ax,302
-xxxx:0116 mov bx,200
-xxxx:0119 mov cx,1
-xxxx:011c mov dx,80
-xxxx:011f int 13
-xxxx:012l int 20
-xxxx:0123 (without typing anything.)
-g program terminated normally
If you are doing this debug routine to clear out a possible virus turn off your computer and wait and turn back on.
-q
Once back at DOS, reboot your computer When your computer comes back on from doing the above you will get an error message as booting up the computer, such as "Invalid Configuration". You must enter CMOS and set the time and date, save, and reboot again. Once rebooted, you will then need to run fdisk and recreate the partitions. Once created, you will then need to format the hard drive and proceed as normal.
DISCHARGE OLD LAPTOP BATTERIES


The below debug routine is used for older laptop batteries (i.e. batteries made from 1990-1992), we do not recommend using this routine on any newer laptop batteries or any NiMH batteries N DPDISCHG.COM
A
MOV DX,01E8
MOV AL,F9
OUT DX,AL
INT 20

RCX
10
W
Q This will write dpdischg.com to the current directory. To run this utility type dpdischg.
REBOOT YOUR COMPUTER


Implement this debug routine to reboot your computer. DEBUG E 40:72 34 12
RCS
FFFF
RIP
0000
G To create a batch file that reboots your computer without having to type the above command each time, use the below example. GOTO BEGIN

E 40:72 34 12
RCS
FFFF
RIP
0000
G

:BEGIN
DEBUG < REBOOT.BAT
CREATE A SLEEP FILE


This file allows your computer to sleep for a specified amount of time. This file is not dangerous in any way; if typed improperly, more than likely the file will just not work. Type Debug You should get a "-" begin typing the below information; after each line you may get a response, do not press enter and type the next line after the response. N SLEEP.COM
A 100
MOV SI,0082
MOV AX,[SI]
XCHG AH,AL
XOR AX,3030
MOV BL,AL
MOV AL,0A
MUL AH
ADD AX,BX
MOV SI,AX
MOV AH,2C
INT 21
MOV BL,DH
MOV AX,SI
AAM
OR AX,3030
XCHG AH,AL
MOV [0160],AX
MOV AH,09
MOV DX,0160
INT 21
MOV AH,06
MOV DL,FF
INT 21
JZ 014C
OR AL,AL
JNZ 013F
MOV AH,08
INT 21
MOV AL,FF
MOV DX,016C
PUSH AX
MOV AH,09
INT 21
POP AX
MOV AH,4C
INT 21
MOV AH,2C
INT 21
CMP BL,DH
JZ 012D
MOV BL,DH
DEC SI
JNZ 011A
SUB AL,AL
MOV DX,016C
JMP 0142
DB "XX SECONDS", D, 24
DB " ", D, A, 24 RCX
79
W
Q Tip: You may cut and paste the above test into a notepad document and save the file with a .scr extension. Once saved from DOS, type debug < name of scrSLEEP.COM. which should create the file; should be created

CHECK BIOS DATE


The below debug routine is to check the date of your BIOS. All BIOS dates on PC compatible computers is stored at memory address FFFF5h. To display the date of your BIOS do the following: At the C:\> type debug - d FFFF:5 L 8 After typing the above command you should receive a string similar to: FFFF:0000 30 34 2F-33 30 2F 39 38 4/30/98 The 4/30/98 would be the date of your computer BIOS.

VIDEO CARD TYPE

The below debug routine will list the type of video card within your computer. This is an excellent way of determining the chipset on the card or the card within your computer without opening the computer. At the C:\> type debug -d c000:0040 After typing the above command you should receive several lines of text similar to:
C000:0040

00
00
00
00
00
00
00
00
-
00
00
00
00
00
00
00
00

................
C000:0050


E9
63
7B
00
B4
10
49
27
-
E9
FE
2B
E9
F7
2B
50
4D


.c{...I'..+..+PM
C000:0060


49
44
58
00
5B
00
00
00
-
00
A0
00
B0
00
B8
00
C0


IDX.[...........
C000:0070


00
5B
53
54
42
20
6E
56
-
49
44
49
41
20
54
4E
54


.[STB nVIDIA TNT
C000:0080


20
76
65
72
2E
20
31
2E
-
31
30
20
0D
0A
00
1B
43


ver. 1.10 ....C
C000:0090


6F
70
79
72
69
67
68
74
-
28
43
29
31
39
39
38
20


opyright(C)1998
C000:00A0


53
54
42
20
53
79
73
74
-
65
6D
73
20
49
6E
63
0D


STB Systems Inc.
C000:00B0


0A
00
22
6C
2C
0A
01
00
-
C3
50
24
7F
E8
60
36
58


.."1,....P$..'6X
As you can pick out in the above dump, this gives you enough information to determine the make and the year made on the video card. On line 4 you can see the make of this video card, which in this case is a N VIDIA TNT which would be the Riva TNT chipset. The next line you notice the version of the card and finally the line thereafter is the copyright or the year manufactured, generally. If you are unable to capture any information which sounds like the video card, you can also type -d c000:0090
Read more >>

| Comments ]

Computers are wonderful devices that allow us to do many things but things can get rough once the garbage that comes in through our internet connection begins to stop up our system. I have put together a step-by-step procedure for cleaning all of this out. Follow the steps below and you will see a noticeable improvement in your system. Enjoy!

1. Download Microsoft's Anti-Spyware program, Adaware, and Spybot Search and Destroy. Microsoft's program can be downloaded at Microsoft Windows Defender. Adaware can be downloaded at Lavasoft Downloads. Spybot can be downloaded at The Home of Spybot-S&D. All of these programs are free.

Slow PC Problems? Want to Double Your Computer Speed?
Make Your Computer Faster with 13 Easy Videos
2. Install Microsoft's anti-spyware program now, but not the other two.
3. Run MSconfig. To do this, select Start>Run and type msconfig into the space. Select the Startup tab and get rid of all unnecessary programs. The way to determine this is to go to ProcessLibrary.com and check it against their database.
4. Boot into Safe Mode. To do this, restart the computer and press F8 continuously. Select the Safe Mode option from the list and continue to desktop.

Want more tips to improve computer performance?
Computer Secrets Unleashed!
5. Delete any spyware programs from your add/remove. To do this, select Start>Control Panel>Add or Remove Programs. Check all unknown programs against SpywareGuide.com.
6. Locate the temp folder in your computer and delete everything in the folder. This is located, usually, in C:\Documents and Settings\Username\local settings.

7. Still in Safe Mode, install Adaware and Spybot. Run Adaware, Microsoft's anti-spyware and Spybot. Update to the most recent definitions in each program and run them in full scan mode. Microsoft's program cannot be installed in Safe Mode. You have already installed it.
8. Reboot into standard Windows mode.
9. Download HijackThis. You can get this program here Merijn.org. Install and run it. Click Do A System Scan and Save A Logfile. HijackThis will analyze processes that are running on your computer and alert you when there are things running that should not be there. It will also let you know when there are programs running that are not malicious but can safely be gotten rid of because they are not needed.
10. Post the logfile in the Automated Log Analyzer at HijackThis.
11. After determining what's safe and isn't, check appropriate boxes and click Fix Checked.
12. Run the Microsoft Anti-Malicious program, which you can download at the Microsoft Download Center. This program is designed by Microsoft to detect and remove programs whose sole purpose is harming your computer. The technical term for this type of program is a rootkit.
13. Download and run BLBeta Expert. This can be downloaded at F-Secure Blacklight. Make sure to carefully review anything it detects before removing. BlBeta is another program that is designed to get rid of rootkits.
14. For Internet Explorer, click Tools> Internet Options> Security Tab. Click on the Internet Globe icon and select Custom Level. Disable the following:

a. Download Unsigned ActiveX Controls.

b. Initialize And Script ActiveX Controls Not Marked As Safe.

c. Active Scripting.

d. Scripting Of Java Applets.

Also click High Safety under Java Permissions.

If this causes trouble viewing any favorite sites, click the Trusted Sites icon of the Security Tab and use the Sites button to add the URL's of sites that are exempt from these requirements. The purpose of these changes is to tighten the security of your system so that not so many malicious programs make it to your system.
15. For Firefox, type about:config in the address bar. Right click in the window and click New and Integer. In the first box, type privacy.popups.disable_from_plugins. In the second box, type 2. This will prevent Flash popups in Firefox.
16. Open Regedit by clicking Start>Run and type in regedit.
17. Once Regedit is open, click the plus symbol next to the HKEY_CURRENT_USER folder, the plus symbol next to Control Panel, and then click the Desktop folder icon to display its contents. In the right pane, double-click MenuShowDelay to change its value. (This Registry location is referred to as HKEY_CURRENT_USER\CONTROL\PANEL\DESKTOP\MENUSHOWDELAY.) The default Value Data is 400, or 4/10 of a second. Change the Value Data to 0 for the least delay, and click OK. This will make menus appear instantly on your computer instead of having a delay.
18. Open HKEY_LOCAL_MACHINE\SYSTEM\CURRENTCONTROLSET\CONTROL\FILESYSTEM. Right-click Filesystem, select New, and DWORD Value. Rename NewValue#1 on the right-side pane to DisableNTFSLast-AccessUpdate. Double-click this new entry, change the Value Data field from 0 to 1, and then click OK. This disables the constant updating of the dates when a file or folder were last updated. This will speed up the system.
19. Open HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\EXPLORER. Create a new DWORD Value called DesktopProcess, and set its Value Data to 1.
20. Expand HKEY_CURRENT_USER, expand Control Panel, and click Desktop. Double-click the AutoEndTasks string and change the value to 1. This causes all of the components of the explorer to run in one process, making your computer faster.

There is a caveat for some users here. Do not make this change if you are not running at least a Pentium processor and 16 MB of physical memory.
21. Expand HKEY_LOCAL_MACHINE, expand SOFTWARE, expand Microsoft, expand Windows, and expand CurrentVersion. Right-click Explorer, expand New, click Key, and name the new key AlwaysUnloadDLL. Click AlwaysUnloadDLL, double-click the Default string, and change the value to 1. Windows tries to keep some DLL's in memory when the program uses them. If a user has low memory, this can cause performance issues.
22. Expand HKEY_CURRENT_USER, expand Control Panel, and click Desktop. Double-click the HungAppTimeout string and change the value to 1000. Now, double-click the WaitToKillAppTimeout, string and change the value to 2000. This sets your system up to more efficiently handle application hangups. It also will optimize the amount of time a system takes to close a program when you try to end Windows.
23. Expand HKEY_LOCAL_MACHINE, expand System, expand CurrentControlSet, and click Control. Double-click the WaitToKillServiceTimeout string and change the value to 2000. This optimizes the time that it will take for Windows Services to close when the system is set to shut down.
24. Expand HKEY_CURRENT_USER, expand Control Panel, click Desktop, and double-click the MenuShowDelay string in the right-hand pane. Change the value to 100. This will cause Desktop menus to appear almost instantly.
25. Close regedit.
26. Set Recycle Bin to 1-3 percent of the hard drive space. To do this, right click on the Recycle Bin. Select properties. Move the slider down to the desired amount and click Ok. By default, the Recycle bin takes up too much of your space.
27. To ensure DMA is in use, click Start, right-click My Computer, click Properties, select the Hardware tab, and click Device Manager. Expand the IDE ATA/ATAPI Controllers entry, double-click the entry for the channel where your hard drive is installed (most likely the Primary IDE Channel), and use the Transfer Mode drop-down menu to select DMA If Available if PIO Only mode is selected. Click Ok, reboot, and recheck the setting to make sure it sticks. When this is enabled, it will allow information from your CD/DVD to go straight to memory, bypassing the system processor and speeding up the system.

You should notice markedly increased speeds in your computer. Remember that this is not a "do once and forget it" procedure. Crud is constantly building up in your computer, so make sure and set up a maintenance plan to keep your computer clean.
Read more >>

| Comments ]

GREATLY INCREASE YOUR VIRTUAL RAM
This makes your computer faster by using part of your HD space as virtual RAM. ( Takes around a gigabyte of space,when initialized. but still speeds up your computer greatly!)

If your HD has less than 20GB of free space left then don't do this.

Alright, this is how you do it:

Instructions:
1. Right Click on "My Computer" icon and select "Properties".
2. Click on the Advanced tab.
3. Under Performance, click Settings.
4. Then click the Advanced tab on the button that pops up.
5. Under Virtual Memory at the bottom, click Change.
6. Click the Custom Size button.
7. For the initial size (depending on your HD space), type in anywhere from 1000-1500 (although i use 4000), and for the Maximum size type in anywhere from 2000-2500 (although i use 6000).

8. Click Set, and then exit out of all of the Windows.
9. Finally, restart your computer.
10. You now have a faster computer and 1-2gb of virtual RAM!

I did this personally and it worked great for me.

================================================== ==

MAKE YOUR PROCESSOR FASTER..

this trick work with AMD and Intel

first go to start and then Run
and go to regedit

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Session Manager\Memory Management

in the right side you will see SecondLevelDataCache clik modifier and change it to .....

writ 256 if your processeur is
Intel pentium 3 E
Pentium 4
AMD k6-3
AMD Thunderbird
Cyrix 3
Pentium 2 Mobile

writ 64 if your processeur
AMD Duron

writ 512 if your processeur is
AMD K6-2
Pentium 2
Pentium 3 Katmai
AMD Athlon

writ 1024 if your processeur is :
Pentium 2 Xeon
Pentium 3 Xeon

and 128 for processeur
Pentium Celeron
Pentium Celeron 2

THIS IS FOR NEW COMPUTER!
Actually this tweak is completely useless on newer computers, all it does is set the L2 cache size. Here's a better explanation of it:

Myth - "Adjusting the SecondLevelDataCache Registry value to match your CPU's L2 Cache size will improve performance."

Reality - "If you do not set this registry value, Windows will use the HAL (Hardware Abstraction Layer) for retrieval of the L2 cache size automatically on boot up. If this fails, a default value of 256KB is used. This is where the myth that XP can only use 256KB of L2 cache comes from. But it's false. The SecondLevelDataCache is designed as a secondary source of cache size information for computers on which the HAL cannot detect the L2 cache. The HAL is able to retrieve the L2 cache size from any CPU using the set-associative cache design (Pentium II or newer), it's only the relatively few older processors with direct-mapped L2 caches that the HAL will not recognize. This tweak only applies to older computers (Pentium I or older) with over 64MB of memory. On these older systems, this tweak can improve performance by about 0.4%. Pentium II and later CPUs are not affected."

==================================================

Open Regedit by clicking Start>Run and type in regedit.
Once Regedit is open, click the plus symbol next to the HKEY_CURRENT_USER folder, the plus symbol next to Control Panel, and then click the Desktop folder icon to display its contents. In the right pane, double-click MenuShowDelay to change its value. (This Registry location is referred to as HKEY_CURRENT_USER\CONTROL\PANEL\DESKTOP\MENUSHOWDE LAY.) The default Value Data is 400, or 4/10 of a second. Change the Value Data to 0 for the least delay, and click OK. This will make menus appear instantly on your computer instead of having a delay.

================================================== ==

Open HKEY_LOCAL_MACHINE\SYSTEM\CURRENTCONTROLSET\CONTRO L\FILESYSTEM. Right-click Filesystem, select New, and DWORD Value. Rename NewValue#1 on the right-side pane to DisableNTFSLast-AccessUpdate. Double-click this new entry, change the Value Data field from 0 to 1, and then click OK. This disables the constant updating of the dates when a file or folder were last updated. This will speed up the system.

================================================== ==

Open HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\WINDOWS\CURRE NTVERSION\EXPLORER. Create a new DWORD Value called DesktopProcess, and set its Value Data to 1.
Expand HKEY_CURRENT_USER, expand Control Panel, and click Desktop. Double-click the AutoEndTasks string and change the value to 1. This causes all of the components of the explorer to run in one process, making your computer faster.
There is a caveat for some users here. Do not make this change if you are not running at least a Pentium processor and 16 MB of physical memory.

================================================== ==

Expand HKEY_LOCAL_MACHINE, expand SOFTWARE, expand Microsoft, expand Windows, and expand CurrentVersion. Right-click Explorer, expand New, click Key, and name the new key AlwaysUnloadDLL. Click AlwaysUnloadDLL, double-click the Default string, and change the value to 1. Windows tries to keep some DLL's in memory when the program uses them. If a user has low memory, this can cause performance issues.

================================================== =

Expand HKEY_CURRENT_USER, expand Control Panel, and click Desktop. Double-click the HungAppTimeout string and change the value to 1000. Now, double-click the WaitToKillAppTimeout, string and change the value to 2000. This sets your system up to more efficiently handle application hangups. It also will optimize the amount of time a system takes to close a program when you try to end Windows.

================================================== =

Expand HKEY_LOCAL_MACHINE, expand System, expand CurrentControlSet, and click Control. Double-click the WaitToKillServiceTimeout string and change the value to 2000. This optimizes the time that it will take for Windows Services to close when the system is set to shut down.

================================================== ==

Expand HKEY_CURRENT_USER, expand Control Panel, click Desktop, and double-click the MenuShowDelay string in the right-hand pane. Change the value to 100. This will cause Desktop menus to appear almost instantly.
Close regedit.

================================================== ==

Set Recycle Bin to 1-3 percent of the hard drive space. To do this, right click on the Recycle Bin. Select properties. Move the slider down to the desired amount and click Ok. By default, the Recycle bin takes up too much of your space.
Read more >>

| Comments ]

NoTe- Its different from invisble as well hidden folder....here u need to have a password with which u can open your filder

here is the code
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the 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 Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo stuff by satish
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==TYPE UR PASSWORD HERE goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End

:End
Instructions::

1) Copy the give code in a note pad and save the note pad in your pc with the name name.bat (that is with the extension of .bat). you can replace the name portion with anything u want.

NoTe-- In place of password in the code given type your desired password.

2) A batch file will be created where you hav saved. Now double click on it , it will make a folder with the name locker at the same place where the batch file is save.

3) Now add the files you want to be locked in that folder.

4) Double click on the batch file. It will ask for locking the folder formed. Type y(yes). The folder will be locked and hidden.

5) To unlock,double click on batch file again and enter the password in the new window opened.

Tested By Me Working 100%
Read more >>