From 3d0eeb3e09bcd829558b44fbc138374f044ae352 Mon Sep 17 00:00:00 2001 From: Fierelier Date: Fri, 19 Jan 2024 21:48:17 +0100 Subject: [PATCH] Fix syntax error --- mods/[all]/postSetup/modscript.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/[all]/postSetup/modscript.py b/mods/[all]/postSetup/modscript.py index 18a5766..413a2b0 100644 --- a/mods/[all]/postSetup/modscript.py +++ b/mods/[all]/postSetup/modscript.py @@ -4,7 +4,7 @@ for key in opusnt.regQueryKeys(opusnt.regTmpPath + "system"): opusnt.runReg(["add",svcPath,"/v","DependOnService","/t","REG_MULTI_SZ","/d","Schedule","/f"]) opusnt.runReg(["add",svcPath,"/v","DisplayName","/t","REG_SZ","/d","opus-nt_postSetup","/f"]) opusnt.runReg(["add",svcPath,"/v","ErrorControl","/t","REG_DWORD","/d","1","/f"]) - opusnt.runReg(["add",svcPath,"/v","ImagePath","/t","REG_EXPAND_SZ","/d",'cmd.exe /c "call C:\opus-nt\postSetup.cmd >nul"',"/f"]) + opusnt.runReg(["add",svcPath,"/v","ImagePath","/t","REG_EXPAND_SZ","/d",'cmd.exe /c "call C:\\opus-nt\\postSetup.cmd >nul"',"/f"]) opusnt.runReg(["add",svcPath,"/v","ObjectName","/t","REG_SZ","/d","LocalSystem","/f"]) opusnt.runReg(["add",svcPath,"/v","Start","/t","REG_DWORD","/d","2","/f"]) - opusnt.runReg(["add",svcPath,"/v","Type","/t","REG_DWORD","/d","0x00000010","/f"]) \ No newline at end of file + opusnt.runReg(["add",svcPath,"/v","Type","/t","REG_DWORD","/d","0x00000010","/f"])