Jump to content

Recommended Posts

Posted (edited)

To silent install true image 9 extract the .msi (right click on the install button on splash screen and choose extract) and use a batch file;

ECHO.
ECHO Installing Acronis True Image 9
ECHO Please wait...
start /wait msiexec.exe /i AcronisTrueImage.msi ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /norestart /qb-!

Be sure the batch file is in the same directory as the .msi, and call it in your usual way.

Edited by warrior1109

Posted (edited)

Great help.. cheers :D

After testing, this may not work very well on an unattended install, as it may force the pc to restart. May want to use the following witches:

cmdow @ /HID

start /wait msiexec.exe /i AcronisTrueImage.msi ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart

(OOPS missed the \norestart switch in previous post.. DOH!!)

or directly from RunOnceEx:

REG ADD %KEY%\000 /VE /D "Acronis True Image" /f

REG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi \" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f

Edited by drscouse
Posted
or directly from RunOnceEx:
REG ADD %KEY%\000 /VE /D "Acronis True Image" /f

REG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi \" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f

I tried it from the RunOnceEx but could not get it to work, so now my RunOnceEx calls the batch file. :no:

Posted
or directly from RunOnceEx:
REG ADD %KEY%\000 /VE /D "Acronis True Image" /f

REG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi \" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f

I tried it from the RunOnceEx but could not get it to work, so now my RunOnceEx calls the batch file. :no:

Shouldn't it be

REG ADD %KEY%\000 /VE /D "Acronis True Image" /f

REG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi  ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f

Posted (edited)
REG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi  ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f
You are missing a ", there are only 3 in the above instruction...

If you notice this entry:

REG ADD %KEY%\017 /VE /D "Nero Burning Rom" /f

REG ADD %KEY%\017 /V 01 /D "\"%CDROM%\Software\Nero\Nero.exe\"  /silent /sn=SERIAL  /write_sn /no_ui /noreboot" /f

There are 4 ", and there is a " after the filename.... and the final one after the switches before the /f..

This is working fine for me, so Ive ditched the batch file :D

REG ADD %KEY%\022 /V 01 /D "\"%CDROM%\Software\TrueImage\TrueImage.msi\" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f

Taken directly from my working script...

Edited by drscouse
  • 5 months later...
Posted
Could someone please tell me what files are needed for silent install,

is it just AcronisTrueImage.msi, instmsia.exe, instmsiw.exe, icudt32l.dat,

Thanks

Posted

Whenever I run this MSI with these switches, I get an error message

Here is my autoit line:

RunWait("msiexec /i AcronisTrueImage.msi ADDLOCAL=ALL PIDKEY=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /quiet /passive /norestart")

but I tried this in a batch file as well and I still get this error. Any ideas?

post-27892-1141222388_thumb.jpg

Posted (edited)

make a network image and 7zip that sucker!

nothing special about this one.

PIDKEY=yadda-yadda-yadda

edit:

are you using autoit code in a regular batch?

don't you want 'start /wait...'

Edited by thuun derboy
Posted

why did you use ADDLOCAL switch? what is that for?

for disk director suite i just grab the msi extracted by the setup (in userprofile temp folder) and use this swtiches to run it: PIDKey=x-x-x-x /qn /no restart

and all works fine for me.

Posted

@elajua

I was just going by what was in the posts. I looked it up on the Acronis site and got the true switch which as you say, has *no* ADDLOCAL

@thuun derboy

Of course I didn't use autoit code on a batch file!! I was saying I tried the above commands with a start /wait in a batch file and it didn't work. I rarely use batch files since learning Autoit. I just wanted to see if it was Autoit's fault.

-redfive

Posted
Whenever I run this MSI with these switches, I get an error message

Here is my autoit line:

RunWait("msiexec /i AcronisTrueImage.msi ADDLOCAL=ALL PIDKEY=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx /quiet /passive /norestart")

but I tried this in a batch file as well and I still get this error. Any ideas?

Tell msiexec where your file is. Supply a path to the file.

If you use Start /Wait in a DOS batch file, then you deserve to be thrown into a snake pit for constructing a noobie command. :P

Posted

hehe, that's why I don't use batch files anymore. I can do everything in autoit and more! Anyway, this worked after I took out the ADDLOCAL=ALL without providing the full path to the MSI.

MHz>all

;)

-redfive

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...