Annita Posted September 11, 2004 Posted September 11, 2004 I would like to know if it's possible to do unattended installations of this programs, registering them:- AceMoneySetup3.5.7- EditPlus v2.12- Remote Administrator v2.2Thnx A LOT!!!!Annita
SiMoNsAyS Posted September 13, 2004 Posted September 13, 2004 what type of installer do they have? installshield? Microsoft Windows Installer? wise installer?
Annita Posted September 13, 2004 Author Posted September 13, 2004 I only need to know how to install EditPlus v2.12, and I don't know which installer has. It's not install installshield or Microsoft Windows Installer or wise installer or Inno Setup.Thnx,Annita
bluehawk79 Posted January 28, 2005 Posted January 28, 2005 Hi,I Just Wrote an Install Script for EditPlus 2.12.This works for my Desk, hope it will work for yours.Save this as install.js or like what you want. Only the .js is needed.var WshShell = WScript.CreateObject ("WScript.Shell");var WshShell2 = WScript.CreateObject ("WScript.Shell");WshShell.RUN ("\"%systemdrive%\\Install\\Applications\\editplus\\setup_ep.exe\"");WScript.Sleep(2000);WshShell.SendKeys ("{TAB}");WScript.Sleep(200);WshShell.SendKeys ("{ENTER}");WScript.Sleep(200);WshShell.SendKeys ("{ENTER}");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(500);WshShell.SendKeys ("%{F4}");//simulate the ALT+F4 Key for Closing ApplicationsWScript.Sleep(500);WshShell2.RUN ("\"%systemdrive%\\Programme\\EditPlus 2\\editplus.exe\"");WScript.Sleep(500);WshShell2.SendKeys ("{TAB}");WScript.Sleep(200);WshShell2.SendKeys ("Name");//keep the quotes even if your name has no spacingWScript.Sleep(200);WshShell2.SendKeys ("{TAB}");WScript.Sleep(200);WshShell2.SendKeys ("xxxxx-xxxxx-xxxxx-xxxxx-xxxxx");//your Serial number with "-" between the keys!WScript.Sleep(200);WshShell2.SendKeys ("{ENTER}");WScript.Sleep(200);WshShell2.SendKeys ("{ENTER}");WScript.Sleep(200);WshShell2.SendKeys ("%{F4}");PS: You need only run the install.js with xplode or RunOnceEx or what you have.Greetings
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now