July 11, 200422 yr Hi friends! I've found this wonderful forum and I have a question for you...I need to run a silent setup for a registered Acronis True Image 7 sofware. I can't find a metode to include serial number during operation. Do you know the solution?Thanks to all
July 12, 200422 yr The only solution that I could come up with for Trueimage was to write a program to send the keystrokes and serial #, etc. (However, I'm a programmer among other things) Google for AutoIT, it may do the job for you.
July 12, 200422 yr Install Acronis product and export from registry...Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Acronis\TrueImage\Settings]"key"="a lot of different numbers".Now all you need to do is apply the reg file before you install the application and you will see that the dialog requesting a product key is bypassed completely. This is true for all Acronis apps. except OS Selector.
July 12, 200422 yr Another tidbit...some Acronis apps. require restarting before using. This can be bypassed by deleting HKEY_LOCAL_MACHINE\SOFTWARE\Acronis\InstallRebootSome Acronis products won't work without starting some services or registering dll's however if you try this.
July 12, 200422 yr If $CmdLine[0]<> 1 Then msgbox(0,"Error","Usage: silent-ti7.exe trueimage7.0_s_de.exe")Else Run ($CmdLine[1]) WinWait ( "Acronis True Image Setup") ControlClick ( "Acronis True Image Setup", "", "FXWindow4") WinWait ( "Acronis True Image Setup") ControlClick ( "Acronis True Image Setup", "", "FXWindow27") ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")Sleep(500)ControlSend ( "Acronis True Image Setup", "", "FXWindow23", "11111")ControlSend ( "Acronis True Image Setup", "", "FXWindow11", "22222")ControlSend ( "Acronis True Image Setup", "", "FXWindow27", "33333")ControlSend ( "Acronis True Image Setup", "", "FXWindow29", "44444")ControlSend ( "Acronis True Image Setup", "", "FXWindow31", "55555")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")Sleep(500)WinWaitClose("In Arbeit, bitte warten...")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow22")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow20")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow10")EndIfthis works for me for the german version 7.0.0.613. its an autoit script... just replace the 11111 to 55555 with a valid serial.
July 12, 200422 yr Author Great! You finally found this key for me. and AutoIt is an other good idea.Thanks! Friends! Take care.P.S.I apologize for my english. I'm.... italian.
July 12, 200422 yr Author If $CmdLine[0]<> 1 Then msgbox(0,"Error","Usage: silent-ti7.exe trueimage7.0_s_de.exe")Else Run ($CmdLine[1]) WinWait ( "Acronis True Image Setup") ControlClick ( "Acronis True Image Setup", "", "FXWindow4") WinWait ( "Acronis True Image Setup") ControlClick ( "Acronis True Image Setup", "", "FXWindow27") ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")Sleep(500)ControlSend ( "Acronis True Image Setup", "", "FXWindow23", "11111")ControlSend ( "Acronis True Image Setup", "", "FXWindow11", "22222")ControlSend ( "Acronis True Image Setup", "", "FXWindow27", "33333")ControlSend ( "Acronis True Image Setup", "", "FXWindow29", "44444")ControlSend ( "Acronis True Image Setup", "", "FXWindow31", "55555")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")Sleep(500)WinWaitClose("In Arbeit, bitte warten...")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow22")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow20")ControlClick ( "Acronis True Image Setup", "", "FXWindow4")WinWait ( "Acronis True Image Setup")ControlClick ( "Acronis True Image Setup", "", "FXWindow10")EndIfthis works for me for the german version 7.0.0.613. its an autoit script... just replace the 11111 to 55555 with a valid serial. Great!
July 12, 200422 yr Author RegKey command works very well. Acronis is successfully installed without any difficulty.Bye!
July 12, 200422 yr 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("true.exe");while (oExec.Status == 0){WScript.Sleep(1000);WshShell.SendKeys ("{ENTER}");WScript.Sleep(200);WshShell.SendKeys ("%{a}");WScript.Sleep(200);WshShell.SendKeys ("%{n}");WScript.Sleep(200);WshShell.SendKeys ("SN1");WScript.Sleep(100);WshShell.SendKeys ("SN2");WScript.Sleep(100);WshShell.SendKeys ("SN3");WScript.Sleep(100);WshShell.SendKeys ("SN4");WScript.Sleep(100);WshShell.SendKeys ("SN5");WScript.Sleep(100);WshShell.SendKeys ("%{n}");WScript.Sleep(200);WshShell.SendKeys ("%{n}");WScript.Sleep(200);WshShell.SendKeys ("%{y}");WScript.Sleep(200);WshShell.SendKeys ("%{n}");WScript.Sleep(200);WshShell.SendKeys ("%{n}");WScript.Sleep(200);WshShell.SendKeys ("%{p}");WScript.Sleep(10000);WshShell.SendKeys ("%{y}");WScript.Sleep(200);WshShell.SendKeys ("%{n}");WScript.Sleep(500);WshShell.SendKeys ("%{y}");WScript.Sleep(200);WshShell.SendKeys ("%{f}");WScript.Sleep(200);WshShell.SendKeys ("%{c}");}WScript.quit();I solved the problem with this js. script!Simple thing. Also german version 7
July 19, 200422 yr i used the jscript versionand i made sure the file name is correctwhat i see is it works ok if i copy the file(trueimage.exe) to c:\if i dontand i run it from c:\install\applications\acronis\acronis.jsi get file not found erroris there away to tell the script to run the program from the current location?weirdcause if i run it manually it works okonly in unattended it doesnt
July 19, 200422 yr i used the jscript versionand i made sure the file name is correctwhat i see is it works ok if i copy the file(trueimage.exe) to c:\if i dontand i run it from c:\install\applications\acronis\acronis.jsi get file not found erroris there away to tell the script to run the program from the current location?weirdcause if i run it manually it works okonly in unattended it doesntSure!CD %systemdrive%\install\applications\acronis\start or start /wait %systemdrive%\install\applications\acronis\acronis.jsThis way, you don't need to copy first.
July 29, 200422 yr Anybody gotten this to work with Acronis Trueimage 6.0?Tried the AutoIt script provided by spachtler using AutoIt3 with the appropriate changes being made in the script as far as controlclicks, etc. (as seen thru autoit spy) and it doesn't get past the first screen.
Create an account or sign in to comment