Newbie batch file command help request

Hello experts. I have a bunch of MKV files (in Windows) and I would like to clear the Title tag and resave the file. I tried using mp3tag but the title displayed there is not the same Title tag displayed in VLC.
I downloaded MKVToolNix and went into mkvtoolnix-gui.exe. I eventually figured out how to clear the Title and resave the file using the existing file name.
My problem is that I have over 200 files to process.
I know I need to use mkvpropedit.exe but I’m not sure how to proceed.
Would someone mind providing me the batch command to: set the parent directory, clear the Title tag and then resave the file with the existing file name?

So an example command for deleting the title using mkvpropedit would be something like

"C:\Program Files\MKVToolNix\mkvpropedit.exe" example.mkv --delete title

Now you can easily create a .bat file in the directory of the files to do this for every mkv file

for %%x in (*.mkv) do "C:\Program Files\MKVToolNix\mkvpropedit.exe" "%%x" --delete title
pause

thanks I’ll give that a shot