2026-02-15 03:44:05 +00:00
|
|
|
import { execFileUtf8 } from "./exec-file.js";
|
2026-02-14 14:14:49 +00:00
|
|
|
|
|
|
|
|
export async function execSchtasks(
|
|
|
|
|
args: string[],
|
|
|
|
|
): Promise<{ stdout: string; stderr: string; code: number }> {
|
2026-02-15 03:44:05 +00:00
|
|
|
return await execFileUtf8("schtasks", args, { windowsHide: true });
|
2026-02-14 14:14:49 +00:00
|
|
|
}
|