API Reference
Quits a Windows application if running.
import { windowsActivate, windowsQuit } from "@guidepup/guidepup";(async () => { // Open Microsoft Edge. await windowsActivate("msedge.exe", "Edge"); // ... perform some commands. // Quits Microsoft Edge. await windowsQuit("msedge.exe");})(); Copy
import { windowsActivate, windowsQuit } from "@guidepup/guidepup";(async () => { // Open Microsoft Edge. await windowsActivate("msedge.exe", "Edge"); // ... perform some commands. // Quits Microsoft Edge. await windowsQuit("msedge.exe");})();
Application executable path identifier.
API Reference
Quits a Windows application if running.