我将为 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^%,但我完全不知道如何纠正它。