Showing posts with label folder. Show all posts
Showing posts with label folder. Show all posts
Thursday, March 23, 2017
How to Lock a Folder in Windows 7 8 8 1
How to Lock a Folder in Windows 7 8 8 1
How to Lock a Folder in Windows 7/8/8.1
Being a Blogger I have a lot of stuff in my laptop that I dont want to share with any one else, rather I dont even want that they should even see that stuff. So what I do is simply put up a lock on my folder and keep a secret key to open up the folder. Well dont think that the trick is only for bloggers
, the trick can be easily implemented by any person who wants to hide his private stuff.
You all might be thinking that, its not possible to put up a password for a particular folder so how did I manage to do it?
Well in this post I will be sharing a really cool trick, which will enable you to set up a password for a particular folder easily, you wont even have to use CMD for this trick.
Follow These Steps to Lock a Folder:-
1. Firstly right click, go to new and make a new Notepad.
2. Once you have made a new notepad, open it up and copy the below given code in the notepad as it is.
clsEnd
@ECHO OFF
title Folder Locker
if EXIST Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D} goto UNLOCKif 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 LOCKif %cho%==y goto LOCKif %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 lockedgoto End
UNLOCK
echo EnterAvailable link for download
Wednesday, February 8, 2017
Folder Lock 7 5 2 FINAL Serial
Folder Lock 7 5 2 FINAL Serial
Folder Lock 7.5.2 FINAL + Serial
Folder Lock is fast file-security software that can password-protect, lock, hide, and encrypt any number of files, folders, drives, pictures, and documents in seconds. Locked files are undeletable, unrenamable, unmovable, hidden, and inaccessible. You can lock, scramble, or encrypt depending on speed and security. Folder Lock is fully portable, so you can protect your files on USB flash drives, disks, CD-RWs, notebooks, and hard disks, and it doesnt require installation on another PC. Folder Lock protects files in Windows, DOS, and Safe modes, even when you change your OS or boot from a disk. Folder Lock doesnt let you delete its own program folder, and it cant be uninstalled without the correct password. Additional options include Stealth Mode, Hacker Attempt Monitoring, Shred files, AutoLock, Auto Shutdown PC, Lock your PC, Erase PC tracks, 256-bit Blowfish Encryption and Context Menu in Explorer.
Features
Fastest Encryption: With Folder Lock you can now encrypt your files faster than ever. The program creates Lockers, without taking up much space and grow as you dump files in it. Lockers are encrypted, resizable, portable and ready for backup. Secure Backup: Folder Lock 7 allows you to optionally backup all files and folders you keep in your encrypted Lockers automatically while you continue to modify or access your encrypted files. Files remain encrypted at both ends. Additional Security: Users can now achieve true portable security, application level password security, activate stealth options, shred files, make wallets, clean history, auto protect the application and all its files, use virtual keyboard to type passwords to prevent key logging of any kind and can prevent hacking and incorrect password attempts. True Ease of Use: Folder Lock 7 leverages NewSoftwares highly regarded graphical user interface. Existing Folder Lock users will be immediately productive: its the same great console they already know and love. New users will find Folder Lock 7 remarkably easy to configure and use. Even relative novices can use all features of the product without going through all the jargon and how tos.
Whats New:
- In this version update, some minor bugs have been resolved with file locking and hiding mechanism.
+----------------+
| How to use |
+----------------+
1) Open _ReadMe.txt and read Instructions
Available link for download
Sunday, December 4, 2016
Computer Trick Folder Lock Trick To Protect Your Privacy
Computer Trick Folder Lock Trick To Protect Your Privacy
Do you worry about privacy or do you maintain some personal files on the office system or at Friends pc then you must lock that folder.There are many softwares that most people use to lock their Personal files. But this trick is the safest and locks files or folders without use of any software.
ren songs songs.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save this text file as loc.bat
Create another text file and type in it
ren songs.{21EC2020-3AEA-1069-A2DD-08002B30309D}songs
Now save this text file as key.bat
Update: This trick no longer works with the Windows 7 SP1 update or Windows 8..
- Suppose you want to lock the folder Songs in F: which has the path F:Songs.
- In the same drive create a text file and type
ren songs songs.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save this text file as loc.bat
Create another text file and type in it
ren songs.{21EC2020-3AEA-1069-A2DD-08002B30309D}songs
Now save this text file as key.bat
You can now see 2 batch files loc and key. Run the loc.bat file and the folder (songs) will change to control panel icon encrypting your data and you cannot view its contents until its unlocked again. Run the key.bat file and you will get your original folder.
try it out!!!!!!!
try it out!!!!!!!
Note: Use Your Exact Folder Name which you want to protect. Keep the Key.bat file in safe location so that no one can Run that file Knowingly or Unintentionally..
It is safe as in case if you loose the key file, you can create it again but the folder name must be same as previous. {You can find the folder name under control panel icon (Protected Folder)}.
Available link for download
Wednesday, November 30, 2016
Create password protected folder without any software
Create password protected folder without any software
Steps to create a password protected folder in windows without any requirement of any folder locking software!!! The code for this is:
cls
@echo off
title Folder Locker
IF EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" GOTO UNLOCK
IF NOT EXIST Locker GOTO MDLOCKER
echo Folder Created.
:CONFIRM
echo Are you sure you 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 Enter password to unlock the Folder :
set/p "pass="
IF NOT %pass% == YourPassword GOTO FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" LOCK
echo Folder Unlocked Successfully.
GOTO END
:FAIL
echo Invalid Password!
GOTO END
:MDLOCKER
md Locker
echo Folder created.
GOTO END
:END
PAUSE
[change the word- YourPassword in the above code with your own password]
cls
@echo off
title Folder Locker
IF EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" GOTO UNLOCK
IF NOT EXIST Locker GOTO MDLOCKER
echo Folder Created.
:CONFIRM
echo Are you sure you 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 Enter password to unlock the Folder :
set/p "pass="
IF NOT %pass% == YourPassword GOTO FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" LOCK
echo Folder Unlocked Successfully.
GOTO END
:FAIL
echo Invalid Password!
GOTO END
:MDLOCKER
md Locker
echo Folder created.
GOTO END
:END
PAUSE
And save it in .bat format (example:- hackingtricks.bat)
[change the word- YourPassword in the above code with your own password]
Available link for download
Wednesday, November 23, 2016
How to access a drive or a folder in a network through Kali Linux
How to access a drive or a folder in a network through Kali Linux
In this scenario, I have Windows 7 and Kali Linux operating systems. Kali Linux is installed in a virtual server, i.e. vmware player.
(A) Now to create a shared drive or folder in Windows 7
- Click on Start
and then on Computer.
- Select the drive or the folder you want to share. Right click on it, then click on Share with and then on Advanced sharing...

- Goto Sharing tab and click on Advanced Sharing...

- Check on Share this folder, then click on Add button to give Share name and Description of the drive or folder and select the number of users that you allow to share the drive or folder. Then click on permissions and add number of users to whom you grant permission to share your drive or folder in a network. Click on OK to all pop windows that has opened so far. This will take affect and you will see shared drive or folder in the network.

(B) Open vmware player and allow Kali Linux to boot.
- Login with username and password
- Press Alt. + F2 key to bring run dialog box.
- type smb://username/shared, where username is the host name and shared is the drive or folder name that has to accessed (smb is a program of samba distribution that allows to maintain interoperability between linux/unix server and windows client), then click on Run.

- type username and password of windows 7 user to access the drive or folder (username and password is the account of the user where the drive or folder has been shared) and click on Connect.

This will mount the shared drive or folder and it will appear on the desktop of Kali Linux.

Available link for download
Tuesday, November 22, 2016
How To Create A Folder Without Any Name Blank Space In Windows 7 8 and XP
How To Create A Folder Without Any Name Blank Space In Windows 7 8 and XP
People are fond of playing pranks on their friends, doing something which can irritate their friends and make them feel surprised. Pranks can be in the form of jokes or tricks and these pranks can at times create big laughs but may also lead to huge fights.
A way of playing pranks on your friends is by creating nameless folders in your windows. It is a trick which can make the other person feel irritated and I am sure you would love this feeling. This task can be accomplished very easily one has to just follow the below mentioned steps and within no time the task is done. So, dont kill the time and prank your friends.
For this you will have to rename the file with 2 spaces. Just follow these steps below:
1. Select file, press F2.
2. Hold alt key and type 0160 from the numpad.
3. Release the alt key. Now without doing anything else, again hold Alt key and press 0160.
4. Press enter and you will have second nameless file in the same directory.
5. Repeat step 3 to create as many nameless files or folders in the same directory.
A way of playing pranks on your friends is by creating nameless folders in your windows. It is a trick which can make the other person feel irritated and I am sure you would love this feeling. This task can be accomplished very easily one has to just follow the below mentioned steps and within no time the task is done. So, dont kill the time and prank your friends.
Step By Step Procedure To Create A folder With Blank Space
1. Select any file or folder whose name you want to remove or change its name as a blank space.
2. Right click on it and choose rename or simply press F2 from keyboard to rename that file or folder
3. Press and hold the Alt key. While holding the Alt key, type numbers 0160(0r 999999999 or 255) from the numpad.
2. Right click on it and choose rename or simply press F2 from keyboard to rename that file or folder
3. Press and hold the Alt key. While holding the Alt key, type numbers 0160(0r 999999999 or 255) from the numpad.
Note: Type the numbers 0160 from the numpad, that is, the numbers present on the right side of the keyboard. Dont type the numbers which are present on top of the character keys.
4. Press Enter and the nameless file or folder will be created.Note: The file or folder that seems nameless is actually named with a single blank space.
How to create another folder without name on the same location
1. Select file, press F2.
2. Hold alt key and type 0160 from the numpad.
3. Release the alt key. Now without doing anything else, again hold Alt key and press 0160.
4. Press enter and you will have second nameless file in the same directory.
5. Repeat step 3 to create as many nameless files or folders in the same directory.
Available link for download
Subscribe to:
Posts (Atom)