Skip to main content

How To Completely Hide Files/Folders Using Command Prompt| Windows(10/8.1/8/7/XP)


People usually store lots of data in their systems that they don't want anyone to see. No matter what kind of content you keep on your computer, you'll always find reasons to hide certain files and folders. Files/Folders may have important documents, videos, photos etc that you want to keep private, or you simply want to prevent users from accidentally seeing those files or even deleting certain files. If you're sharing your PC with other people, or maybe some one close to you such as your friends access your pc then this method can surely help you. The normal hiding the files/folders procedure by going to their properties and clicking on the hiding option is a well known procedure, But it can be easily viewed if some one is smart enough to maybe un-check the option of hiding images and viewing all hidden files/folders option in the system. This method is specially for those people who want to hide the file completely as it is simple and not everyone knows this method and maybe only people having technical background might know about this method. 
Step1: Go to command prompt and redirect it to the specific directory that the file is located.
In my case my file was inside adobe folder in E:\ directory.

Step 2:- Type command: Attrib +h +s +r filename
+h-> Hiding
+r-> Read Only
+s-> System
we can just put +h there and try as well but +h will just work as you normal hide option. Once you type +h +s +r then the output will be as be seen the image below.
As we can clearly see from the image above that even when the hidden image button is on the image wont be visible to anyone. If we want to un-hide the image then we will have to go to the directory where is file is hidden, we will have to know the name of the file and then only we will be able to un-hide the hidden image.
Step 3:- Unhide the File using command: Attrib -h -s -r filename
One we run the command we will clearly see the hidden file.
We can see now that the hidden file is visible now. Hope you learned this simple trick and was helpful to you. 

Comments

Popular posts from this blog

Wireless /Wifi(WEP/WPA/WPA2) Password Cracking Using Dictionary Attack With Aircrack-ng (Kali Linux)

Tools Used:-Aircrack-ng In the present context of networking, WEP is not used cause it is the weakest and easy to crack through the network. WEP/WPA2 are the most used encryption tools to secure the wireless connection.   The most common way of getting past or cracking through WEP and WPA secured wireless connection is through the use of captured handshake. When you want to hack wifi, you need to capture “handshake”. The handshake is the connection of personal computer and wireless network, it is when network packet and personal computer packets meet each other. If you capture handshake then with a handshake you do not need to be in wifi range anymore, you can hack password with handshake and wifi name. Now you need to capture all the packets that are sent through the wifi router and all personal computers in the network . Step1: airmon-ng  This step is done before anything else is done in order to know your wifi interface name. Check the running process and  ...

Making Own Dictionary Using Crunch Commands For Dictionary Attack (Kali linux Tool)

Making own dictionary from words not listed in the normal English dictionary can be helpful specially for people who want to crack passwords based on some person's name, surname or native language words( Example Nepali word, Hindi Word etc). Since most of the word list that are used to hack into a system or crack passwords contain words from English dictionary, passwords such as name of person, surname of person, pet-name and specially words of native language aren't included in that word list as they aren't defined in the English dictionary. This is one the most crucial drawback of dictionary attack. Apart from selective words problem, dictionary attacks usually take lot of time cause they attempt all the words present in the word-list as passwords to crack the authentication system. If we make our own dictionary then it will also help in saving time. But making our own dictionary can only be helpful to only those people who have a hint to what the password might be an...

SQL Injection Attack Using SQLMAP Tool In Kali Linux

In current context of digitized  world where everything is done over internet, lot of information can be found online. The data can either be private to people or can be public to everyone with no privacy. Everyday lots of data are getting stored in different databases of different websites throughout the world and it is becoming harder to store and protect the data from evasion at the same time. Unauthorized access to such databases can lead to leak of large amount of confidential information related to a person or even an organization. Hackers tend to steal a lot of information through such database by getting either getting authorized or unauthorized access. One of the most common method to get an access to the information's available in a websites database is SQL injection based attacks.  SQL Injection is a type of an  injection  attack that makes it possible to execute malicious SQL Statements.  With the right set of queries, a user can gain access, u...