我要为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 ^%,但我完全不知道如何纠正它。
答案 0 :(得分:5)
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "StupidMS" /t REG_SZ /d "%stupidMS%"