windows - Batch file to recursively find files named a specific name and move to a directory -


so, hit cryptowall 3.0 ransomware virus. after decryption still left large amount of decrypt_help files in .txt, .html, .png , windows shortcut formats.

i need batch script recursively find files containing name "decrypt_help" regardless of its' extension , move files directory delete.

i linux guy, can't find , grep way through this. assistance appreciated.

you can find files using

dir /s *decrypt_help* 

dangerous command follows

del /s *decrypt_help* 

will delete of files. use extreme caution


Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

gradle error "Cannot convert the provided notation to a File or URI" -

python - NameError: name 'subprocess' is not defined -