惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
U
Unit 42
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
小众软件
小众软件
V
Visual Studio Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 叶小钗
GbyAI
GbyAI
爱范儿
爱范儿
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
D
DataBreaches.Net
博客园_首页
D
Docker
A
About on SuperTechFans
G
Google Developers Blog
I
InfoQ
T
The Blog of Author Tim Ferriss
V
V2EX
博客园 - Franky

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(node): hide Windows task launcher (#81267) · openclaw...
giodl73-repo · 2026-05-17 · via Recent Commits to openclaw:main

@@ -79,9 +79,19 @@ function sanitizeWindowsFilename(value: string): string {

7979

return value.replace(/[<>:"/\\|?*]/g, "_").replace(/\p{Cc}/gu, "_");

8080

}

818182-

function resolveStartupEntryPath(env: GatewayServiceEnv): string {

82+

function resolveStartupEntryPath(env: GatewayServiceEnv, extension?: "cmd" | "vbs"): string {

8383

const taskName = resolveTaskName(env);

84-

return path.join(resolveWindowsStartupDir(env), `${sanitizeWindowsFilename(taskName)}.cmd`);

84+

const entryExtension = extension ?? (shouldUseHiddenWindowsTaskLauncher(env) ? "vbs" : "cmd");

85+

return path.join(

86+

resolveWindowsStartupDir(env),

87+

`${sanitizeWindowsFilename(taskName)}.${entryExtension}`,

88+

);

89+

}

90+91+

function resolveStartupEntryPaths(env: GatewayServiceEnv): string[] {

92+

const primaryPath = resolveStartupEntryPath(env);

93+

const legacyCmdPath = resolveStartupEntryPath(env, "cmd");

94+

return Array.from(new Set([primaryPath, legacyCmdPath]));

8595

}

86968797

// `/TR` is parsed by schtasks itself, while the generated `gateway.cmd` line is parsed by cmd.exe.

@@ -108,6 +118,19 @@ function resolveTaskUser(env: GatewayServiceEnv): string | null {

108118

return username;

109119

}

110120121+

function shouldUseHiddenWindowsTaskLauncher(env: GatewayServiceEnv): boolean {

122+

const value = normalizeLowercaseStringOrEmpty(env.OPENCLAW_WINDOWS_TASK_HIDDEN_LAUNCHER);

123+

return value === "1" || value === "true" || value === "yes";

124+

}

125+126+

function resolveTaskLauncherScriptPath(env: GatewayServiceEnv, scriptPath: string): string {

127+

if (!shouldUseHiddenWindowsTaskLauncher(env)) {

128+

return scriptPath;

129+

}

130+

const parsed = path.parse(scriptPath);

131+

return path.join(parsed.dir, `${parsed.name}.vbs`);

132+

}

133+111134

export async function readScheduledTaskCommand(

112135

env: GatewayServiceEnv,

113136

): Promise<GatewayServiceCommandConfig | null> {

@@ -292,6 +315,27 @@ function buildStartupLauncherScript(params: { description?: string; scriptPath:

292315

return `${lines.join("\r\n")}\r\n`;

293316

}

294317318+

function quoteVbsString(value: string): string {

319+

return `"${value.replace(/"/g, '""')}"`;

320+

}

321+322+

function quoteVbsRunCommand(scriptPath: string): string {

323+

return quoteVbsString(`"${scriptPath}"`);

324+

}

325+326+

function buildHiddenLauncherScript(params: { description?: string; scriptPath: string }): string {

327+

const lines = [];

328+

const trimmedDescription = params.description?.trim();

329+

if (trimmedDescription) {

330+

assertNoCmdLineBreak(trimmedDescription, "Hidden launcher description");

331+

lines.push(`' ${trimmedDescription}`);

332+

}

333+

lines.push(

334+

`CreateObject("WScript.Shell").Run ${quoteVbsRunCommand(params.scriptPath)}, 0, False`,

335+

);

336+

return `${lines.join("\r\n")}\r\n`;

337+

}

338+295339

async function assertSchtasksAvailable() {

296340

const res = await execSchtasks(["/Query"]);

297341

if (res.code === 0) {

@@ -302,12 +346,13 @@ async function assertSchtasksAvailable() {

302346

}

303347304348

async function isStartupEntryInstalled(env: GatewayServiceEnv): Promise<boolean> {

305-

try {

306-

await fs.access(resolveStartupEntryPath(env));

307-

return true;

308-

} catch {

309-

return false;

349+

for (const startupEntryPath of resolveStartupEntryPaths(env)) {

350+

try {

351+

await fs.access(startupEntryPath);

352+

return true;

353+

} catch {}

310354

}

355+

return false;

311356

}

312357313358

async function isRegisteredScheduledTask(env: GatewayServiceEnv): Promise<boolean> {

@@ -605,10 +650,12 @@ async function writeScheduledTaskScript({

605650

description,

606651

}: Omit<GatewayServiceInstallArgs, "stdout">): Promise<{

607652

scriptPath: string;

653+

taskLaunchPath: string;

608654

taskDescription: string;

609655

}> {

610656

await assertSchtasksAvailable().catch(() => undefined);

611657

const scriptPath = resolveTaskScriptPath(env);

658+

const taskLaunchPath = resolveTaskLauncherScriptPath(env, scriptPath);

612659

await fs.mkdir(path.dirname(scriptPath), { recursive: true });

613660

const taskDescription = resolveGatewayServiceDescription({ env, environment, description });

614661

const script = buildTaskScript({

@@ -618,7 +665,14 @@ async function writeScheduledTaskScript({

618665

environment,

619666

});

620667

await fs.writeFile(scriptPath, script, "utf8");

621-

return { scriptPath, taskDescription };

668+

if (taskLaunchPath !== scriptPath) {

669+

const launcher = buildHiddenLauncherScript({

670+

description: taskDescription,

671+

scriptPath,

672+

});

673+

await fs.writeFile(taskLaunchPath, launcher, "utf8");

674+

}

675+

return { scriptPath, taskLaunchPath, taskDescription };

622676

}

623677624678

export async function stageScheduledTask({

@@ -636,7 +690,7 @@ async function updateExistingScheduledTask(params: {

636690

env: GatewayServiceEnv;

637691

stdout: NodeJS.WritableStream;

638692

taskName: string;

639-

quotedScript: string;

693+

quotedLaunchPath: string;

640694

scriptPath: string;

641695

}): Promise<boolean> {

642696

if (!(await isRegisteredScheduledTask(params.env))) {

@@ -647,7 +701,7 @@ async function updateExistingScheduledTask(params: {

647701

"/TN",

648702

params.taskName,

649703

"/TR",

650-

params.quotedScript,

704+

params.quotedLaunchPath,

651705

]);

652706

if (change.code !== 0) {

653707

return false;

@@ -820,14 +874,15 @@ async function activateScheduledTask(params: {

820874

env: GatewayServiceEnv;

821875

stdout: NodeJS.WritableStream;

822876

scriptPath: string;

877+

taskLaunchPath: string;

823878

description?: string;

824879

}) {

825880

const taskDescription = params.description ?? "OpenClaw Gateway";

826881827882

const taskName = resolveTaskName(params.env);

828-

const quotedScript = quoteSchtasksArg(params.scriptPath);

883+

const quotedLaunchPath = quoteSchtasksArg(params.taskLaunchPath);

829884830-

if (await updateExistingScheduledTask({ ...params, taskName, quotedScript })) {

885+

if (await updateExistingScheduledTask({ ...params, taskName, quotedLaunchPath })) {

831886

return;

832887

}

833888

@@ -841,11 +896,12 @@ async function activateScheduledTask(params: {

841896

"/TN",

842897

taskName,

843898

"/TR",

844-

quotedScript,

899+

quotedLaunchPath,

845900

];

846901

const taskUser = resolveTaskUser(params.env);

902+

const taskUserArgs = taskUser ? ["/RU", taskUser, "/NP", "/IT"] : [];

847903

let create = await execSchtasks(

848-

taskUser ? [...baseArgs, "/RU", taskUser, "/NP", "/IT"] : baseArgs,

904+

taskUserArgs.length > 0 ? [...baseArgs, ...taskUserArgs] : baseArgs,

849905

);

850906

if (create.code !== 0 && taskUser) {

851907

create = await execSchtasks(baseArgs);

@@ -855,10 +911,15 @@ async function activateScheduledTask(params: {

855911

if (shouldFallbackToStartupEntry({ code: create.code, detail })) {

856912

const startupEntryPath = resolveStartupEntryPath(params.env);

857913

await fs.mkdir(path.dirname(startupEntryPath), { recursive: true });

858-

const launcher = buildStartupLauncherScript({

859-

description: taskDescription,

860-

scriptPath: params.scriptPath,

861-

});

914+

const launcher = shouldUseHiddenWindowsTaskLauncher(params.env)

915+

? buildHiddenLauncherScript({

916+

description: taskDescription,

917+

scriptPath: params.scriptPath,

918+

})

919+

: buildStartupLauncherScript({

920+

description: taskDescription,

921+

scriptPath: params.scriptPath,

922+

});

862923

await fs.writeFile(startupEntryPath, launcher, "utf8");

863924

await launchFallbackTaskScript(params.env);

864925

writeFormattedLines(

@@ -898,6 +959,7 @@ export async function installScheduledTask(

898959

env: args.env,

899960

stdout: args.stdout,

900961

scriptPath: staged.scriptPath,

962+

taskLaunchPath: staged.taskLaunchPath,

901963

description: staged.taskDescription,

902964

});

903965

return { scriptPath: staged.scriptPath };

@@ -914,13 +976,21 @@ export async function uninstallScheduledTask({

914976

await execSchtasks(["/Delete", "/F", "/TN", taskName]);

915977

}

916978917-

const startupEntryPath = resolveStartupEntryPath(env);

918-

try {

919-

await fs.unlink(startupEntryPath);

920-

stdout.write(`${formatLine("Removed Windows login item", startupEntryPath)}\n`);

921-

} catch {}

979+

for (const startupEntryPath of resolveStartupEntryPaths(env)) {

980+

try {

981+

await fs.unlink(startupEntryPath);

982+

stdout.write(`${formatLine("Removed Windows login item", startupEntryPath)}\n`);

983+

} catch {}

984+

}

922985923986

const scriptPath = resolveTaskScriptPath(env);

987+

const launcherPath = resolveTaskLauncherScriptPath(env, scriptPath);

988+

if (launcherPath !== scriptPath) {

989+

try {

990+

await fs.unlink(launcherPath);

991+

stdout.write(`${formatLine("Removed task launcher", launcherPath)}\n`);

992+

} catch {}

993+

}

924994

try {

925995

await fs.unlink(scriptPath);

926996

stdout.write(`${formatLine("Removed task script", scriptPath)}\n`);