command line - Creating a large file from Windows' commandline -
command line - Creating a large file from Windows' commandline -
on mac can create random 5gb file this
dd if=dev/urandom of=~/random5gb bs=1000000 count=5000
is there equivalent command in windows xp? want able run in '.bat' file i'm creating.
try
fsutil file createnew <filename> <length>
windows command-line batch-file
Comments
Post a Comment