如何通过Windows中的批处理文件在注册表中设置值?

时间:2013-07-18 04:39:21

标签: windows batch-file registry

我要为Windows注册表设置一个值。 我想在注册表中为shit设置变量StupidMS,但结果是错误的。以下是我的代码。

set stupidMS=shit
echo %stupidMS% 

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "StupidMS" /t REG_SZ /d ^%stupidMS^%

我认为问题是 ^%stupidMS ^%,但我完全不知道如何纠正它。

1 个答案:

答案 0 :(得分:5)

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "StupidMS" /t REG_SZ /d "%stupidMS%"