Type this on the ligne de commande, substituting your file for files_to_delete.txt:
for /f %i in (files_to_delete.txt) do del %i
A version of this suitable to include in .cmd files (double %%) and able to deal with spaces in nom de fichiers:
for /f "delims=" %%f in (files_to_delete.txt) do del "%%f"