Suppose you want to lock the folder games in d: which has the path D:\GamesIn the same drive create a text file and type
ren games games.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save this text file as loc.bat
create another text file and type in it
ren games.{21EC2020-3AEA-1069-A2DD-08002B30309D} games
Now save this text file as key.bat
Now you can see 2 batch files loc and key.Press loc and the folder games will change to control panel and you cannot view its contents.Press key and you will get back your original folde
Sunday, August 1, 2010
HOW TO HIDE DRIVE
1) Go to Start -> Run -> “regedit” without quotes
2) Navigate following
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer
3) Choose Edit -> New -> DWORD Value and give name NoDrives.
4) Double click NoDrives and determine which drive that you want to vanish in Value Data.
Example: If you wish to vanish drive E:, insert value 16 in Value Data.
The combination value in “Value Data” are as following:
A: > 1
B: > 2
C: > 4
D: > 8
E: > 16
F: > 32
G: > 64
H: > 128
I: > 256
J: > 512
K: > 1024
L: > 2048
M: > 4096
All: > 67108863
2) Navigate following
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer
3) Choose Edit -> New -> DWORD Value and give name NoDrives.
4) Double click NoDrives and determine which drive that you want to vanish in Value Data.
Example: If you wish to vanish drive E:, insert value 16 in Value Data.
The combination value in “Value Data” are as following:
A: > 1
B: > 2
C: > 4
D: > 8
E: > 16
F: > 32
G: > 64
H: > 128
I: > 256
J: > 512
K: > 1024
L: > 2048
M: > 4096
All: > 67108863
INCREASE YOUR HARDDISC SPEED
1. Run SYSEDIT.EXE from the start.
2. Expand the system.ini file window.
3. find a line called [386enh].
4. Press Enter to make one blank line, and in that line type
5. Irq14=4096 (note: This line IS CASE SENSITIVE)
6. Click on the File menu, then choose Save.
7. Close SYSEDIT and reboot your computer.
8. Restart windows!
Speed will increase when u reboot computer! ! !
2. Expand the system.ini file window.
3. find a line called [386enh].
4. Press Enter to make one blank line, and in that line type
5. Irq14=4096 (note: This line IS CASE SENSITIVE)
6. Click on the File menu, then choose Save.
7. Close SYSEDIT and reboot your computer.
8. Restart windows!
Speed will increase when u reboot computer! ! !
REPAIR ICON VIEW
______________________________________________________________________
______________________________________________________________________
save above in notepas as anything.bat and run
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Control Panel\desktop\WindowMetrics]
"Shell Icon BPP"="16"
"Shell Icon Size"="32"
[HKEY_CURRENT_USER\Software\Microsoft\Windows
\CurrentVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000
______________________________________________________________________
save above in notepas as anything.bat and run
HOW TO DISABLE PENDRIVE
How to disable Pendrive??
Procedure to be follow :-
Open notepad and paste this code then save it with anything.reg
Then double click on it, computer will ask Are you sure you want to add the information to registry?click YES.
_____________________________________________________________
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
“Start”=dword:00000004
________________________________________________________________
Enable:-
And if you want to reverse it change the value “00000004″ to “00000003″. The computer will show pendrive again !!!!
Procedure to be follow :-
Open notepad and paste this code then save it with anything.reg
Then double click on it, computer will ask Are you sure you want to add the information to registry?click YES.
_____________________________________________________________
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
“Start”=dword:00000004
________________________________________________________________
Enable:-
And if you want to reverse it change the value “00000004″ to “00000003″. The computer will show pendrive again !!!!
Set ur jpg image as a background inside the folders
First create a file in drive named desktop.ini
then open it in notepad and insert below lines
Replace path with your jpg,bmp image path
0x00ffffff is for white color
0x00000000 is for black color
NOTE :- don't edit [{BE098140-A513-11D0-A3A4-00C04FD706EC}]
If you need your drive back as default just delete the desktop.ini
remember it is not working for folders
then open it in notepad and insert below lines
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
iconarea_image=path
iconarea_text=0x00ffffff
Replace path with your jpg,bmp image path
- iconarea_text=0x00ffffff is for text color
0x00ffffff is for white color
0x00000000 is for black color
NOTE :- don't edit [{BE098140-A513-11D0-A3A4-00C04FD706EC}]
If you need your drive back as default just delete the desktop.ini
remember it is not working for folders
CLEANYOUR PC USING BATCH FILES
_____________________________________________________________________________________________________--
@echo off
if %username% == Administrator.WINDOWS goto admin
REM ** Delete User Files **
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"
goto end
:admin
REM ** Do some extra stuff here **
REM ** What ever you want..... **
ECHO You are a Administrator
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"
REM ** Do more stuff here **
REM ** Blah, blah, blah......**
:end
exit
__________________________________________________________________________________________________
save above code as anything.bat and run
@echo off
if %username% == Administrator.WINDOWS goto admin
REM ** Delete User Files **
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"
goto end
:admin
REM ** Do some extra stuff here **
REM ** What ever you want..... **
ECHO You are a Administrator
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"
REM ** Do more stuff here **
REM ** Blah, blah, blah......**
:end
exit
__________________________________________________________________________________________________
save above code as anything.bat and run
Subscribe to:
Posts (Atom)
About me
s