Hide and encrypt folder or file 20201024

Foreword:

Recently, Guoguo has become fascinated by U disk file encryption and hiding, because sometimes the borrowing of U disk makes me so upset.

File protection is mostly divided into two types, one is file encryption, the other is file hiding, of course, sometimes you can use the two together.

So what I want to learn today is the hiding of folders or files and pictures.The whole process is basically a simple operation on the win system, but I don't know it, so Guoguo has to take notes.

method:

File attribute method: (Here is just the hiding of simple and practical files, haha, write in)

 

Registry enhancement method:

Hide the file first, then open the registry;

win+r enter "regedit";

Open this path: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL

Then find the binary key: CheckedValue in the right registry, change the value to 0;

(If the change prompts an error, please use the administrator authority)

In this way, other people will not be able to view your hidden files using conventional methods.If you want to view it yourself, perform the reverse operation.

attrib system attribute method:

Hold down shift+right mouse button;

Open a command window;

Format: attrib +s +h (file name or file that needs to be hidden);

//+s means system properties

//+h means hidden file attributes

The file disappears after refreshing;

Retrieve:

Then perform the reverse operation;

attrib -s -h (file name or file just hidden)

 

Transparent folder icon method: (relatively simple, just change the icon)

Right-click properties;

Custom change icon;

Choose a transparent icon;

Let's take a look at the effect; (hahaha, it doesn't feel good)

Try to change the name so that it becomes no file name; (spaces can't be entered)

The real way is;

Select Rename, delete the original name, hold down the Alt key and enter 0160 (get it, it turned out to be a space in the ASCLL code)

However, it is still not safe enough hahaha

Copy picture method:

Picture + text file hiding method (text file hidden in picture)

Open the command line:

copy /b picture name + text file name new picture name (where /b means it is stored in binary form)

What is the /a parameter in it, I don't want to know hahaha

How to check?

Modify the file suffix or use Notepad to view, you can view the text file stored in the image format.

Personally think it is more suitable for things like hiding passwords

Compressed package encryption + image copy method:

First compress the folder, you can set a password (not shown here);

Then use the above format command to copy;

The way to check is to modify the file extension

Class identifier method:

For example:

Recycle bin.{645ff040-5081-101b-9f08-00aa002f954e}
Recycle bin (full).{5ef4af3a-f726-11d0-b8a2-00c04fc309a4}
Dial-up network.{992CFFA0-F557-101A-88EC-00DD010CCC48}

Use rename modification, add suffix identifier

In fact, the more interesting thing is that you can directly enter the recycle bin by clicking the logo. Even if the recycle bin is emptied, the original files will not be emptied.

However, if you choose other viewing methods, you will still see that it is a folder

restore:

Modify the file name, then enter cmd;

D:\test file>ren "1234.{645ff040-5081-101b-9f08-00aa002f954e}" text1 //ren means rename

Special document method:

I will not demonstrate it here, but use the hidden files in the system to move the files that need to be hidden to the hidden files in the system.

Drive letter hiding method: (three types)

Drive letter management method:

Enter computer management, disk management, right-click to change the drive letter and path, and select delete disk letter.

Note: This drive letter must have no software installed, otherwise the installation path will not be found. This method is only suitable for hiding files and system files

Recovery: Reverse operation

Group Policy Method: (Don't do too many demonstrations, because the computer has just been protected two days ago)

win+r  gpedit.msc

Path: user configuration, management templates, win components, win explorer, find the hidden "drive in my computer" on the right

Select Enable, select the drive you want to hide

Registry law:

Uuuu, hungry.

to sum up:

In fact, these operations are very suitable for my little white, so that I can hide the files properly, plus some combination and file encryption tools, maybe the ideal effect will be better!

It seemed to be 1024 yesterday, hahaha! It seems to be 1111 soon, right?

 

 

Guess you like

Origin blog.csdn.net/qq_43575090/article/details/109257565