基于 Windows 的 ASCII 到 Hex CLI 转换器
我需要一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这有点过头了,但您可以安装 Cygwin 并使用与 Linux 中使用的完全相同的命令。
Maybe this is overdoing it, but you could install Cygwin and use the exact same commands you would use in Linux.