Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Acronis True Image silent setup and S.N.

Featured Replies

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 :rolleyes:


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.

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.

Another tidbit...some Acronis apps. require restarting before using. This can be bypassed by deleting

HKEY_LOCAL_MACHINE\SOFTWARE\Acronis\InstallReboot

Some Acronis products won't work without starting some services or registering dll's however if you try this.

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")

EndIf

this 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.

  • Author

Great! You finally found this key for me. :D and AutoIt is an other good idea.

Thanks! Friends! :rolleyes:

Take care.

P.S.

I apologize for my english. I'm.... :) italian.

  • 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")

EndIf

this 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! :)

  • Author

RegKey command works very well. Acronis is successfully installed without any difficulty.

Bye! :)

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

i used the jscript version

and i made sure the file name is correct

what i see is it works ok if i copy the file(trueimage.exe) to c:\

if i dont

and i run it from c:\install\applications\acronis\acronis.js

i get file not found error

is there away to tell the script to run the program from the current location?

weird

cause if i run it manually it works ok

only in unattended it doesnt

i used the jscript version

and i made sure the file name is correct

what i see is it works ok if i copy the file(trueimage.exe) to c:\

if i dont

and i run it from c:\install\applications\acronis\acronis.js

i get file not found error

is there away to tell the script to run the program from the current location?

weird

cause if i run it manually it works ok

only in unattended it doesnt

Sure!

CD %systemdrive%\install\applications\acronis\

start or start /wait %systemdrive%\install\applications\acronis\acronis.js

This way, you don't need to copy first.

  • 2 weeks later...

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

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.