如何在Windows 7命令行创建任意二进制文件?

发布于 2024-10-11 22:40:50 字数 121 浏览 1 评论 0原文

如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丑丑阿 2024-10-18 22:40:50

您可以使用 fsutil 命令创建无意义的二进制文件,例如

fsutil file createnew filename.bin 1000

最后一个参数是所需的文件大小(以字节为单位)。

You can create a meaningless binary file with the fsutil command, e.g.

fsutil file createnew filename.bin 1000

The last parameter is the desired file size in bytes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文