warrior1109 Posted September 26, 2005 Posted September 26, 2005 (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 9ECHO 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 September 27, 2005 by warrior1109
drscouse Posted September 27, 2005 Posted September 27, 2005 (edited) Great help.. cheers 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 @ /HIDstart /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" /fREG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi \" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f Edited September 27, 2005 by drscouse
warrior1109 Posted September 27, 2005 Author Posted September 27, 2005 or directly from RunOnceEx:REG ADD %KEY%\000 /VE /D "Acronis True Image" /fREG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi \" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f<{POST_SNAPBACK}>I tried it from the RunOnceEx but could not get it to work, so now my RunOnceEx calls the batch file.
urie Posted September 27, 2005 Posted September 27, 2005 or directly from RunOnceEx:REG ADD %KEY%\000 /VE /D "Acronis True Image" /fREG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi \" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f<{POST_SNAPBACK}>I tried it from the RunOnceEx but could not get it to work, so now my RunOnceEx calls the batch file. <{POST_SNAPBACK}>Shouldn't it beREG ADD %KEY%\000 /VE /D "Acronis True Image" /fREG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /f
drscouse Posted September 27, 2005 Posted September 27, 2005 (edited) REG ADD %KEY%\000 /V 01 /D "\"%CDROM%\Software\AcronisTrueImage\AcronisTrueImage.msi ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /fYou 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" /fREG ADD %KEY%\017 /V 01 /D "\"%CDROM%\Software\Nero\Nero.exe\" /silent /sn=SERIAL /write_sn /no_ui /noreboot" /fThere 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 REG ADD %KEY%\022 /V 01 /D "\"%CDROM%\Software\TrueImage\TrueImage.msi\" ADDLOCAL=ALL PIDKEY=XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /quiet /passive /norestart" /fTaken directly from my working script... Edited September 27, 2005 by drscouse
urie Posted March 1, 2006 Posted March 1, 2006 Could someone please tell me what files are needed for silent install,is it just AcronisTrueImage.msi, instmsia.exe, instmsiw.exe, icudt32l.dat,Thanks
redfive19 Posted March 1, 2006 Posted March 1, 2006 Whenever I run this MSI with these switches, I get an error messageHere 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?
thuun derboy Posted March 1, 2006 Posted March 1, 2006 (edited) make a network image and 7zip that sucker!nothing special about this one.PIDKEY=yadda-yadda-yaddaedit:are you using autoit code in a regular batch?don't you want 'start /wait...' Edited March 1, 2006 by thuun derboy
ajua Posted March 2, 2006 Posted March 2, 2006 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 restartand all works fine for me.
redfive19 Posted March 2, 2006 Posted March 2, 2006 @elajuaI 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 derboyOf 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
MHz Posted March 2, 2006 Posted March 2, 2006 Whenever I run this MSI with these switches, I get an error messageHere 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.
redfive19 Posted March 2, 2006 Posted March 2, 2006 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
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