It's possible the File System Object does not have this limit. You can try this and see if it works...

? filesize("Path\Filename.ext")

 Code:
function FileSize($file)
  if exist($file)
    $FileSize=CreateObject("Scripting.FileSystemObject").GetFile($File).size
  else
    exit 2
  endif
endfunction