6

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

set stupidMS=shit
echo %stupidMS% 

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

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

4

1 回答 1

6
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run" /v "StupidMS" /t REG_SZ /d "%stupidMS%"
于 2013-07-18T05:42:25.660 回答