cipher /S:D:\ /H | findstr "^E"
In the above example, we are looking for encrypted files on drive
D:\
. Command cipher
lists all files and folders, and indicates whether the files or the folders are encrypted. The switch /H
is to instruct cipher
to look for hidden or system files as well. Command findstr
allows us to use Regular Expression, and In "^E"
, "^
" indicates the beginning of a line and "E" indicates that the file or the folder is encrypted.
A programmer must visit this site for help. Thanks for the explaining. An example has also been shared. Keep up the good work. Nice share!
ReplyDelete