Showing posts with label Locking. Show all posts
Showing posts with label Locking. Show all posts

118. How can I check if the file is encrypted with EFS or not?

When you try to access a file on an NTFS file system volume, you may receive an "access is denied" error message. The file's NTFS permissions indicate that you can access the file. Sometimes this means that the file is encrypted with EFS.

To determine if a file has been encrypted:

  1. Start Windows Explorer, and then click Detail on the View menu to view the details of the folder's contents.

  2. Click Choose Columns from the View menu, and then click to select the Attributes check box to add the Attributes column to the current view, and to view the file attributes.

    You can also right-click any portion of the details header-column and click the Attributes column to be displayed.

  1. If there is an "E" in the Attributes column for that file, the file is encrypted.

You can also use the CIPHER command from a CMD window:

Run the CIPHER command without any parameters to display the encryption status of files and folders.

A U means that the file/folder is un-encrypted. An E means that it is encrypted.

101. Lock a folder without any software

To lock a folder with out any software just follow the steps

1. Copy and paste the following code (in green color) in to Notepad.

2. Type your password in place of "Type your password here"

3. Save the file with *.bat extension instead of *.txt

4. Now double click to open the file.

5. When you open it, a new folder named Locker will be created in the same place.

6. Move all the folders and files you want to lock into this folder.

7. Now double click the batch file again and in the confirmation type 'y' to lock the folder, and the locker folder will disappear.

Whenever you want to unlock the folder, open the batch file and enter the password, the locker folder will reappear again.

/***********Start Copying here************/

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 Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your 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

/****************Stop Copying here*************/

89.Lock a folder without any software

First select a folder for example I'll use a folder name movies in D drive D:\movies\
in the same drive u create a text file and type
ren movies movies.{21EC2020-3AEA-1069-A2DD-08002B30309D}
and save it as loc.bat
again u type in a notepad as
ren movies.{21EC2020-3AEA-1069-A2DD-08002B30309D} movies
and save it as key.bat
now in D drive u can see two batch files loc and key.. when u double click loc the movie folder will change to control panel and when u double click key the control panel will change to normal folder..
Try this out .....

-

-