that.
Steps to hide the folder and the files inside it:
Step 1
Open the command prompt to open i have shortcut keys first press windows+r than type cmd in the pop up that comes after pressing windows+r
Step 2
Than type cd and the location of that folder
Example: cd Desktop/NewFolder
Step 3
than type
attrib +h +s +r FolderName*
(Don't type FolderName as it is Type the folder name which you want to hide)
Folder is Now Hidden
Steps to unhide the folder and the files inside it:
All steps are same except Step 3 instead of typing attrib +h +s +r FolderName*
Type attrib -h -s -r FolderName*
Steps to remove access to the folder :
Step 1
Open the command prompt to open i have shortcut keys first press windows+r than type cmd in the pop up that comes after pressing windows+r
Step 2
Than type cd and the location of that folder
Example: cd Desktop/NewFolder
Step 3
Than type
cacls FolderName* /p everyone:n
(n means no control)(Don't type FolderName as it is Type the folder name which you want to hide)
Now no one can access the folder
Steps to give access to the folder :
All steps are same instead of typing the cacls FolderName* /p everyone:n just type cacls FolderName* /p everyone:
No comments:
Post a Comment