Although this is for the Server version of Genie Backup Manager, it should work for the pro version too (although line two needs to be modified to the correct path of Genie Backup Professional).

Genie.js:
CODE
var WshShell = WScript.CreateObject ("WScript.Shell");
WshShell.RUN ("\"%systemdrive%\\Program Files\\Genie-Soft\\GBMServer6.0\\GBMPro.exe\"");
WScript.Sleep(5000);
WshShell.SendKeys ("{TAB}");
WScript.Sleep(500);
WshShell.SendKeys ("{TAB}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(3000);
WshShell.SendKeys ("%h");
WScript.Sleep(1000);
WshShell.SendKeys ("{DOWN 6}");
WScript.Sleep(2000);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{TAB 2}");
WScript.Sleep(500);
WshShell.SendKeys ("Enter Serial Here:  No Spaces or Dashes");
WScript.Sleep(500);
WshShell.SendKeys ("{TAB 3}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(2000);
WshShell.RUN ("taskkill /F /IM GBMPro.exe");