How to enable Hidden option in folder properties ?
Hi lately, some of my folders in my usb has been hidden. when i go to properties of those folders, i saw the Hidden option i s disabled! how to enable it to uncheck hidden property ? thanks in advancehttp://www.codeproject.com/KB/codegen/DatabaseHelper.aspx
November 4th, 2011 2:07am

Execute a command line (start -> run -> cmd [enter]), go to parent's folder (cd "c:\somethingsomething") and set an attribute (attrib +h foldername) So in case of folder c:\program files\test\aaa I will run cmd[enter] (optionaly you can change a drive using e.g. d:) cd "c:\program files\test" attrib +h aaa then you can close a window
Free Windows Admin Tool Kit Click here and download it now
November 4th, 2011 6:48am

Execute a command line (start -> run -> cmd [enter]), go to parent's folder (cd "c:\somethingsomething") and set an attribute (attrib +h foldername) So in case of folder c:\program files\test\aaa I will run cmd[enter] (optionaly you can change a drive using e.g. d:) cd "c:\program files\test" attrib +h aaa then you can close a window Thanks but i got this result : Not resetting system file - I:\docs this command works for normal folders but could not affect to hidden files.http://www.codeproject.com/KB/codegen/DatabaseHelper.aspx
November 4th, 2011 7:38am

Hi, in that case use attrib -s i:\docs (removes a system attribute of that file/folder)------- Michal Stoppl MCP, MCSA, MCTS, MCITP, MCT Please always use Mark as answer if you are satisfied with provided solution.
Free Windows Admin Tool Kit Click here and download it now
November 4th, 2011 7:54am

Hi, in that case use attrib -s i:\docs (removes a system attribute of that file/folder) ------- Michal Stoppl MCP, MCSA, MCTS, MCITP, MCT Please always use Mark as answer if you are satisfied with provided solution. Thanks but still i'm facing the sample problem : I:\>attrib -s I:\Docs Not resetting hidden file - I:\Docs http://www.codeproject.com/KB/codegen/DatabaseHelper.aspx
November 4th, 2011 8:20am

ok, so: if you want to keep a file/folder system, run: attrib +s -h I:\Docs if you want to remove both system and hidden attribute, run: attrib -s -h I:\Docs------- Michal Stoppl MCP, MCSA, MCTS, MCITP, MCT Please always use Mark as answer if you are satisfied with provided solution.
Free Windows Admin Tool Kit Click here and download it now
November 4th, 2011 8:21am

Thanks Michal this command solved my problem : attrib +s -h I:\Docshttp://www.codeproject.com/KB/codegen/DatabaseHelper.aspx
November 4th, 2011 11:30am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics