I have almost no experience in batch, but now I need a script to delete all files that contain certain characters in their names from a folder and its subfolders
The /s switch exists on quite a few commands (including del)
/s
del
del /s "C:\TEST\TEST2\*.TXT"
The help for del /? says:
del /?
/S Delete specified files from all subdirectories.