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
Post a Comment