Link to home
Start Free TrialLog in
Avatar of dedri
dedriFlag for United States of America

asked on

unhide hidden folder on windows 2003 file server

I am having one folder on my fileserver which is hidden. It has grayed checkbox for hidden, and I am not able to unhide this folder.
Any help please
untitled.JPG
Avatar of Steve Smith
Steve Smith
Flag of United Kingdom of Great Britain and Northern Ireland image

start run cmd press return

cd to the parent directory e.g. if directory was c:\temp then you would type cd c:\ and press return

once there use the attrib command - type attrib /? for assistance - this can be used to remove hidden attributes
So to remove the hidden attribute from c:\temp and its sub files/folders you would type (after being at the parent of c:\)

attrib c:\temp -h /s (attrib <path> -h removes hidden and /s includes sub files/folders)
Avatar of dedri

ASKER

I executed but the folder is still hidden.

F:\SharedTest>attrib "F:\SharedTest" -h
Not resetting system file - F:\SharedTest
ASKER CERTIFIED SOLUTION
Avatar of Steve Smith
Steve Smith
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you can remove/add archive, system, hidden and read-only attributes by using + or - and either h r s a
I'd also check your permissions to the folder/s you are trying to alter