通过 BAT 脚本中的 REG.exe 读取 Windows 产品名称

发布于 2024-11-14 14:10:43 字数 359 浏览 1 评论 0原文

如何在 BAT 或 CMD 脚本中使用 reg.exe 从 HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion 获取 Windows 产品名称(值:ProductName)?我已经尝试了以下代码,但我无法弄清楚如何让它工作......

for /f "tokens=3*" %%A in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "ProductName") do echo Product is %%A

我确信我做错了什么,因为我知道可以像这样获取其他值的注册表数据。有人能指出我正确的方向吗?

How can I use reg.exe within a BAT or CMD script to fetch the Windows product name from HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion (value: ProductName)? I've tried the following code, but I'm unable to figure out how to get it to work...

for /f "tokens=3*" %%A in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "ProductName") do echo Product is %%A

I'm sure I'm doing something wrong since I know it's possible to fetch registry data like this for other values. Can anyone point me in the right direction?

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

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

发布评论

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

评论(1

自找没趣 2024-11-21 14:10:43

是否可以添加结束引号字符 '(在 "ProductName" 之后)?

for /f "tokens=3*" %%A in ^
('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "ProductName"') ^
do echo Product is %%A %%B

至少,它对有帮助:)。


编辑

%%B 是根据OP的评论添加的完整名称。

Add the closing quote char ' possibly (after "ProductName")?

for /f "tokens=3*" %%A in ^
('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "ProductName"') ^
do echo Product is %%A %%B

At least, it helped me :).


EDIT

%%B was added for the complete name based on the OP's comment.

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