如何在Windows 7命令行创建任意二进制文件?
如何在Windows 7命令行创建任意二进制文件? 无需任何额外安装的工具,我可以使用 XP 中的 debug 命令来完成此操作。现在在 Windows 7 中我陷入了困境。我想在命令行中输入并创建任意二进制文件。有什么想法吗?
How to create arbitrary binary file at the Windows 7 command line?
Without any extra installed tools, I could do this with the debug command in XP. Now in Windows 7 I am stuck. I want to type at the command line and create an arbitrary binary file. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 fsutil 命令创建无意义的二进制文件,例如
最后一个参数是所需的文件大小(以字节为单位)。
You can create a meaningless binary file with the fsutil command, e.g.
The last parameter is the desired file size in bytes.