我有个问题。我执行如下代码。之后我查看了 regedit 文件,“test.reg”文件没有添加。你怎么看这个问题
regedit 文件的内容是:
REGEDIT4
[HKEY_LOCAL_MACHINE\Software\Wow6432Node\efe]
"key1"="value"
"key2"="value2"
代码是:
static void Main()
{
Process regeditProcess = Process.Start("regedit.exe", "/s " + @"D:\Projects\efe\efe\bin\Debug\test.reg");
regeditProcess.WaitForExit();
Console.WriteLine("Press any key to continue.");
Console.ReadKey();
}
谢谢你的建议...