Is there an easy way to delete all the meta data created by Media Companion? Spent hours doing it yesterday. Not at home now; could I search for .nfo file types in my Films folder and delete all at once and then do the same with the other files/folders?
Create a text file called deletemetadata.bat, and copy this text into it:
Code:
@Echo off
for /R "D:\Movies" %%l in (*.nfo) do (
cd %%~dpl
rd /s /q .actors
del *.tbn
del *.jpg
del *.nfo
)
cd ..
save the file, and double click it - it will delete all metadata files in that folder and all subfolders, and leave your movies, subtitle files and music files alone.
If you want to keep any artwork you've manually downloaded, remove the line: del *.jpg.
Last edited: