{"record":{"id":"f03e43c16ad6f5c0","repo":"OdysseusYuan/LKY_OfficeTools","slug":"serv-name-f03e43","errorCode":null,"errorMessage":"执行修改 {serv_name} 描述信息时，返回值为空！","messagePattern":"执行修改 (.+?) 描述信息时，返回值为空！","errorType":"exception","errorClass":"Exception","httpStatus":null,"severity":"error","filePath":"LKY_OfficeTools/Common/Com_ServiceOS.cs","lineNumber":461,"sourceCode":"                        new Log(Ex.ToString());\n                        return false;\n                    }\n                }\n\n                internal static bool Description(string serv_name, string serv_description)\n                {\n                    try\n                    {\n                        if (Query.IsCreated(serv_name))\n                        {\n                            //已经创建服务，才进行修改\n                            string cmd_modify_desc = $\"sc description \\\"{serv_name}\\\" \\\"{serv_description}\\\"\";\n                            var modify_result = Com_ExeOS.Run.Cmd(cmd_modify_desc);\n\n                            //非空判断，若返回值为空，则为假\n                            if (string.IsNullOrEmpty(modify_result))\n                            {\n                                throw new Exception($\"执行修改 {serv_name} 描述信息时，返回值为空！\");\n                            }\n\n                            //判断是否修改描述成功\n                            if (modify_result.Contains(\"成功\") || modify_result.ToLower().Contains(\"success\"))\n                            {\n                                return true;\n                            }\n                            else\n                            {\n                                throw new Exception($\"修改服务 {serv_name} 的描述信息为 {serv_description} 失败！\");\n                            }\n                        }\n                        else\n                        {\n                            throw new Exception($\"尝试修改服务 {serv_name} 的描述信息为 {serv_description}，但该服务未安装！\");\n                        }\n                    }\n                    catch (Exception Ex)","sourceCodeStart":443,"sourceCodeEnd":479,"githubUrl":"https://github.com/OdysseusYuan/LKY_OfficeTools/blob/6f9a1bd471918f3310e6be4a6d7f42d0d6e467cf/LKY_OfficeTools/Common/Com_ServiceOS.cs#L443-L479","documentation":"Thrown in Com_ServiceOS.Config.Modify.Description when the stdout from `sc description ...` via Run.Cmd is null or empty (Com_ServiceOS.cs:459-461). Run.Cmd returns null only inside its catch, so this indicates a cmd.exe/redirect infrastructure failure rather than an sc error. Description catches the throw, logs it, and returns false (Com_ServiceOS.cs:479-483).","triggerScenarios":"Run.Cmd throws: cmd.exe cannot start, output redirection fails, or the process is killed before producing stdout.","commonSituations":"cmd.exe blocked by policy on a hardened host; stdio handle exhaustion; antivirus hooking redirected console IO.","solutions":["Ensure cmd.exe is on PATH and not blocked; run elevated.","Run `sc description <name> \"...\"` directly in a console to confirm sc works.","Inspect the bool return and Lib_AppLog for Run.Cmd's caught exception.","Resolve the cmd/redirect environment then retry."],"exampleFix":"// before\nbool ok = Com_ServiceOS.Config.Modify.Description(name, desc);\n\n// after\nif (!Com_ServiceOS.Query.IsCreated(name)) { return false; }\nbool ok = Com_ServiceOS.Config.Modify.Description(name, desc);","handlingStrategy":"validation","validationCode":"if (!Com_ServiceOS.Query.IsCreated(name)) { return false; }\nbool ok = Com_ServiceOS.Config.Modify.Description(name, desc);","typeGuard":"static bool ServiceRegistered(string name) => Com_ServiceOS.Query.IsCreated(name);","tryCatchPattern":null,"preventionTips":["Description swallows the throw and returns false; check the bool return and log.","Ensure cmd.exe is reachable and not blocked by policy.","Run elevated before issuing sc description.","Reproduce `sc description <name> \"...\"` in a console when debugging."],"tags":["windows-service","scm","cmd","service-config"],"backgroundTag":null,"analyzedSha":"6f9a1bd471918f3310e6be4a6d7f42d0d6e467cf","analyzedAt":"2026-08-13T18:00:34.810Z","schemaVersion":2},"datasetVersion":"2026-08-13T19:17:28.613Z"}