shinclaw / src /daemon /schtasks-exec.ts
HF Bot
chore: snapshot for Hugging Face Space
c91968c
Raw
History Blame Contribute Delete
237 Bytes
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 });
}