Zend certified PHP/Magento developer

I need a batch file to capture of name of file over 8 mb then capture names of all files with the same prefix to move them to a separate folder [closed]

I need a batch file to capture of name of file over 8 mb then capture names of all files with the same prefix to move them to a separate folder

So far I have this script

@echo off for %%a in (*) do if %%~za LEQ 3000 move “%%a” “d:new
folder”