mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-14 19:40:40 +00:00
8 lines
237 B
TypeScript
8 lines
237 B
TypeScript
import { execFileUtf8 } from "./exec-file.js";
|
|
|
|
export async function execSchtasks(
|
|
args: string[],
|
|
): Promise<{ stdout: string; stderr: string; code: number }> {
|
|
return await execFileUtf8("schtasks", args, { windowsHide: true });
|
|
}
|