Remove attributes to sub folders and files

24,161

Solution 1

add more /s /d options to your command

  • option /s says that "processes matching files in current folder and all subfolders"
  • option /d says that "processes folders as well"

attrib +s +h /s /d "foldername\*"

attrib -s -h /s /d "foldername\*"

I already tested, it worked for me

Solution 2

have you tried the recursive mode

attrib -H -S /S

found here

Solution 3

Use

attrib +s +h /s /d "folderpath\*.* "

or

Use attrib -s -h /s /d "folderpath\*.* "

Share:
24,161

Related videos on Youtube

BlueBerry - Vignesh4303
Author by

BlueBerry - Vignesh4303

I love to wear redhat,bite some apples and throw it away through windows :)

Updated on September 18, 2022

Comments

  • BlueBerry - Vignesh4303
    BlueBerry - Vignesh4303 over 1 year

    i hide my folders and files through hidden attributes of command prompt,i am struggling to unhidden all sub folders and files,

    how i hide the files

    in command prompt

    attrib +s +h "foldername"

    how i tried to unhide

    attrib -s -h "foldername"

    Problem i face :

    while i tried to unhide the folder only the folder gets revealed,whereas still the subfolders and files inside the folder remain hidden

    how to unhide all subfiles and folders through command prompt else how to remove hidden attributes for subfiles and folders

    thanks in advance

  • Dai Nguyen-Van
    Dai Nguyen-Van almost 10 years
    use only /s option does not worked, use both /s and /d options