Thanks for the hint with fsutil, took me a bit to understand as I have never worked with it. Here is a working batch
Code:
FOR /R %%a IN ("*.bk2") DO (fsutil file setzerodata offset=0 length=%%~za "%%a")
It fills all selected files by file extension in current and sub folders with zeroes, beginning from first offset to last.