基于 Windows 的 ASCII 到 Hex CLI 转换器

发布于 2024-11-25 23:09:52 字数 378 浏览 2 评论 0原文

我需要一个 CLI 界面,在其中我可以将密码转换为二进制以插入注册表。

我有几百个 Outlook Express 需要设置,密码需要采用 REG_BINARY 格式。我有纯文本格式的密码,但需要进行转换,以便我可以通过 .reg 文件插入它们。它将由一系列 .bat 文件生成。

在 Linux 中命令:

echo -n 'text' | xxd -ps | sed 's/[[:xdigit:]]\{2\}/\\x&/g'

工作很好,但是在 Windows 中有这样的好处吗?

最好是一个 CLI 程序或命令,我可以只向其传递一个值,但如果需要,我会使用 VBS...

谢谢!

迈尔斯

I am in need of a CLI interface in which I can convert a password to binary for insertion into the registry.

I have a few hundred Outlook Express's to set up and the passwords need to be in format REG_BINARY I have them in plain text but they need to be converted so I can insert them via a .reg file. Which will be generated by a series of .bat files.

In Linux the command:

echo -n 'text' | xxd -ps | sed 's/[[:xdigit:]]\{2\}/\\x&/g'

Does the job nicely, but in windows is there any such niceness?

Preferably a CLI program or command that I can just pass a value to but if needs be I would use VBS...

Thanks!

Myles

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

大海や 2024-12-02 23:09:52

也许这有点过头了,但您可以安装 Cygwin 并使用与 Linux 中使用的完全相同的命令。

Maybe this is overdoing it, but you could install Cygwin and use the exact same commands you would use in Linux.

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