alhaddarI'm using a JavaScript file like I did with Ad-aware. This is what you do:
Create a text file in the root of drive C and name it wb.js but not wb.js.txt, then copy and paste the following lines into it:
wb.jsQUOTE
function getWin(win, inc)
{
var cntr = 0;
while (!WshShell.AppActivate(win))
{
if (cntr==12) return true;
cntr++;
WScript.Sleep(inc);
}
return true;
}
var WshShell = new ActiveXObject("WScript.Shell");
var oExec = WshShell.Exec("windowblinds.exe");
while (oExec.Status == 0)
{
WScript.Sleep(2000);
getWin("Enter Window", 2000);
WshShell.SendKeys ("WB-xxxxxxxxxxxxxxxxxxxx-xxxxxxxxx");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
WScript.Sleep(60000);
WshShell.SendKeys ("%{F4}");
WScript.Sleep(500);
WshShell.SendKeys ("{ENTER}");
}
WScript.quit();
Put your windowblinds.exe in the root of drive C, too. If your executable has a different name, then consider modifying the name in red inside wb.js, too.
Replace the xs with your serial number.
Now, you have got these files in the root of drive C:
C:\wb.js
C:\windowblinds.exe
Run wb.js manually to test it. The 60-second interval (60000) is the time taken by the app to install on my PC. I use this method for version 4 enhanced.
Should you ever have problems in this method, let me know.