Windows server 2003 and Windows XP – How to create “dummy” file via command line
Posted by Mark | Posted in Uncategorized | Posted on 02-07-2009
0
Here is quick tip how to create dummy file with size of your choice using Windows server 2003 or Windows XP machine.
To do that i will use utility named “fsutil”. Basic syntax for creating a file is:
fsutil file createnew <name of file> <size in bytes>
For example following command:
fsutil file createnew C:\dummyfile.txt 1000000

will create 1Mb file named dummyfile.txt in C:\
