Você pode usar o comando attrib
para alterar o atributo de arquivos e pastas.
Displays or changes file attributes.
ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [drive:][path][filename]
[/S [/D]]
+ Sets an attribute.
- Clears an attribute.
R Read-only file attribute.
A Archive file attribute.
S System file attribute.
H Hidden file attribute.
[drive:][path][filename]
Specifies a file or files for attrib to process.
/S Processes matching files in the current folder
and all subfolders.
/D Processes folders as well.
Abra Command Prompt
navegue até o diretório onde todas as imagens estão usando o comando cd
.
Em seguida, digite o seguinte comando:
C:\My Pictures\> attrib -H *.jpg /S
O comando acima removerá o atributo oculto de todos os arquivos que terminem em .jpg
nessa pasta.