Today I write about how to create a file of any size using cmd in windows. :) Start by converting the desired file size into hexadecimal notation. You can use the Windows Calculator in Scientific mode do to this :) .
Select Start -> All programs -> Accessories -> Calculator :D
Suppose, you want to create a file of 1 million bytes. Enter 1000000 in the calculator and click on the Hex option to convert it (1 million in hex is F4240.) Pad the result with zeroes at the left until the file size reaches eight digits. As like 000F4240. :)
Now open a command prompt window. :) In Windows NT 4.0, 2000, or XP type CMD in run dialogue box :) .
Select Start -> All programs -> Accessories -> Calculator :D
Suppose, you want to create a file of 1 million bytes. Enter 1000000 in the calculator and click on the Hex option to convert it (1 million in hex is F4240.) Pad the result with zeroes at the left until the file size reaches eight digits. As like 000F4240. :)
Now open a command prompt window. :) In Windows NT 4.0, 2000, or XP type CMD in run dialogue box :) .
Now, follow this command
2.Type RCX and press Enter. Debug will display a colon prompt.
3.Enter the last four digits of the hexadecimal number you calculated (4240, in our example).
4.Type RBX and press Enter.
5.Now enter the first four digits of the hexadecimal size (000F, in our example).
6.Enter W for Write and Q for Quit.
And you've just created a 1-million-byte file using Debug. :)) :)) :))
Of course you can create a file of any desired size using the same technique :D
No comments:
Post a Comment