Showing posts with label how to. Show all posts
Showing posts with label how to. Show all posts

How to Disable right click context menu in windows explorer

By // No comments:
Hi friends, today I will tell you how to disable and enable right click contest menu in windows explore. Context menu is the menu that appears when you right click anywhere. Here is the simplest trick to disable that, without using any software. This trick is not much useful for the users because they don't need to disable right click, Do you? But then also, I am providing for the basic knowledge purpose. I am doing this by editing the registry.

Follow these simple steps:

1. Go to "run".
2. Type "regedit" without quotes and hit enter.
3. If asked for permission, click yes.
4. Browse to
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
5. Create a new 32-bit DWORD value on the right hand side named NoViewContextMenu with one of these values:
     Enable Context menu: 0
     Disable context menu: 1

These changes are instant. Disabling of context menu doesn't require restart but enabling may. SO don't lose patience while enabling context menu. Just restart your system.
Note that this setting could also be set under HKEY_LOCAL_MACHINE as well, so you should check both places if this doesn’t work.
Enjoy hacking.

How To Make a Folder Lock

By // 7 comments:

Make A Folder Lock Without Any Software

Here i will Show You How To Make Own Folder Lock..

1) Open Notepad.
2) Copy This Coding.

cls
@ECHO OFF
title Besthacker0001.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%== deep 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 - See more at: http://www.besthacker.in/

3) Save This File As locker.Bat (.bat is Must.)
4) Run This Bat File .
5) MyFolder is Created ..
6) Copy All The Data In MyFolder.
7) Run Again Locker.bat and Type The Password.

Default Password is deep