The following command will create a dummy file in the specified path with the specified size (in bytes):
FSUTIL FILE CREATENEW <path\filename> <size in bytes>
For example (Create a 1KB file in C:\temp):
FSUTIL FILE CREATENEW C:\temp\testfile.tmp 1024
`