ملتقى الجزائريين والعرب
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8

استعرض الموضوع التالي استعرض الموضوع السابق اذهب الى الأسفل

How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 Empty How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8

مُساهمة من طرف ﺂ̲ﻟ̲ۆږﺩ̲ة ﺂ̲ﻟ̲ﺟ̅ۆږيےة الإثنين 4 أغسطس - 21:24:07

How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 Infosmall1   Information
This tutorial will show you how to set the hidden attribute of a file or folder to be hidden or unhidden inVistaWindows 7, and Windows 8.


Through the File's or Folder's Properties Page
1.To Hide a File or Folder
A) Right click on the file or folder, and click on Properties.

B) Check the Hidden box, and click on OK. (see screenshots below)
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48108d1263715777-file-folder-hide-unhide-file1

How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48109d1263715777-file-folder-hide-unhide-folder1 
C) If this is for a folder and it has a subfolder or file in it, then you will also need to select (dot) to only hide the folder or to hide the folder and all of it's subfolders and files in it. Click on OK. (see screenshot below)
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48110d1263715777-file-folder-hide-unhide-folder2 
D) In Folder Options, make sure that Don't Show hidden files, folders, and drives is selected (dotted).
3. To Unhide a File or Folder
A) Open Folder Options, select (dot) Show hidden files, folders, and drives, and click on OK. (see screenshot below)
NOTE: This way you will be able to see the hidden file or folder to be able to unhide it.
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 163130d1309812045-file-folder-hide-unhide-folder_options-1
B) Right click on the file or folder, and click on Properties.

C) Uncheck the Hidden box and click on OK. (see screenshots below step 2B)

D) If this is for a folder and it has a subfolder or file in it, then you will also need to select (dot) to only unhide the folder or to unhide the folder and all of it's subfolders and files in it. Click on OK. (see screenshot below step 2C)

E) In Folder Options, select (dot) Don't Show hidden files, folders, and drives, and click on OK. (see screenshot below step 3A)


[size=18]Through the Command Prompt[/size]

How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 Notesmall1   Note
This will show you how to hide or unhide a file or folder using the ATTRIB command.

How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48111d1263715777-file-folder-hide-unhide-about_attrib 

While you can run this command in a non-elevated or elevated command prompt, you would get the best results using a elevated command prompt.
1. Open a elevated command prompt, then do either step 2, 3, 4, 5, 6, 7, or 8 below for what you would like to do.

2. To Hide a specific File
A) Open Folder Options and uncheck the Hide extensions for known file types option and click on OK. (see screenshot below)
NOTE: This way you will be able to see the file extension in your file's name to use in the command below.
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48107d1263715777-file-folder-hide-unhide-folder_options
B) In the command prompt, type the command below and press enter. 
NOTE: Substitute Full Path of File with extension within quotes below with your files's full path and name with the extension included within quotes instead.

Code:
ATTRIB +H "Full Path of File with extension"
NOTE: For example, if I wanted to hide a text file named File with the file extension .txt on my desktop, I would type this command below.

Code:
ATTRIB +H "C:\Users\UserName\Desktop\File.txt"
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48112d1263715777-file-folder-hide-unhide-attrib_hide_file
C) In Folder Options, make sure that Don't Show hidden files, folders, and drives is selected (dotted).

D) The file should now be hidden. Go to step 7.
4. To Unhide a specific File
A) Open Folder Options and uncheck the Hide extensions for known file types option and click on OK. (see screenshot below step 3A)
NOTE: This way you will be able to see the file extension in your file's name to use in the command below.

B) In the command prompt, type the command below and press enter. 
NOTE: Substitute Full Path of File with extension within quotes below with your files's full path and name with the extension included within quotes instead.

Code:
ATTRIB -H "Full Path of File with extension"
NOTE: For example, if I wanted to unhide a hidden text file named File with the file extension .txt on my desktop, I would type this command below.

Code:
ATTRIB -H "C:\Users\UserName\Desktop\File.txt"
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48113d1263715777-file-folder-hide-unhide-attrib_unhide_file 
C) The file should now be unhidden. Go to step 7.
5. To Hide a specific Folder
A) In the command prompt, type the command below and press enter. 
NOTE: Substitute Full Path of Folder within quotes below with your folder's full path within quotes instead.

Code:
ATTRIB +H "Full Path of Folder" /S /D
NOTE: For example, if I wanted to hide a folder named Folder on my desktop, I would type this command below.

Code:
ATTRIB +H "C:\Users\UserName\Desktop\Folder" /S /D
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48114d1263715777-file-folder-hide-unhide-attrib_hide_folder 
B) In Folder Options, make sure that Don't Show hidden files, folders, and drives is selected (dotted).

C) The folder should now be hidden. Go to step 7.
6. To Unhide a specific Folder
A) In the command prompt, type the command below and press enter. 
NOTE: Substitute Full Path of Folder within quotes below with your folder's full path within quotes instead.

Code:
ATTRIB -H "Full Path of Folder" /S /D
NOTE: For example, if I wanted to unhide a hidden folder named Folder on my desktop, I would type this command below.

Code:
ATTRIB -H "C:\Users\UserName\Desktop\Folder" /S /D
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48115d1263715777-file-folder-hide-unhide-attrib_unhide_folder 
B) The folder should now be unhidden.
7. To Hide a Folder and all Contents in the Folder
NOTE: This will hide the selected folder along with all subfolders and files inside this folder.
A) In the command prompt, type the command below and press enter. 
NOTE: Substitute Full Path of Folder within quotes below with your folder's full path within quotes instead.

Code:
ATTRIB +H "Full Path of Folder\*" /S /D
NOTE: For example, if I wanted to hide a folder named Folder on my desktop along with all of it's contents, I would type this command below.

Code:
ATTRIB +H "C:\Users\UserName\Desktop\Folder\*" /S /D
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48114d1263715777-file-folder-hide-unhide-attrib_hide_folder 
B) In Folder Options, make sure that Don't Show hidden files, folders, and drives is selected (dotted).

C) The folder should now be hidden. Go to step 7.
8. To Unhide a Folder and all Contents in the Folder
NOTE: This will unhide the selected folder along with all subfolders and files inside this folder.
A) In the command prompt, type the command below and press enter. 
NOTE: Substitute Full Path of Folder within quotes below with your folder's full path within quotes instead.
Code:
ATTRIB -H "Full Path of Folder\*" /S /D
NOTE: For example, if I wanted to unhide a hidden folder named Folder on my desktop and all of it's contents, I would type this command below.

Code:
ATTRIB -H "C:\Users\UserName\Desktop\Folder\*" /S /D
How to Hide or Unhide a File or Folder in Vista, Windows 7, and Windows 8 48115d1263715777-file-folder-hide-unhide-attrib_unhide_folder 
B) The folder should now be unhidden.
9. When done, close the command prompt.



ﺂ̲ﻟ̲ۆږﺩ̲ة ﺂ̲ﻟ̲ﺟ̅ۆږيےة
ﺂ̲ﻟ̲ۆږﺩ̲ة ﺂ̲ﻟ̲ﺟ̅ۆږيےة
المشرفات
المشرفات

احترام القوانين : 100 %
عدد المساهمات : 1264
تاريخ الميلاد : 14/06/1988
العمر : 35

الرجوع الى أعلى الصفحة اذهب الى الأسفل

استعرض الموضوع التالي استعرض الموضوع السابق الرجوع الى أعلى الصفحة

- مواضيع مماثلة

 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى