Silent uninstall of Acronis True Image

Discussion in 'Acronis True Image Product Line' started by jacksplat, Nov 14, 2006.

Thread Status:
Not open for further replies.
  1. jacksplat

    jacksplat Registered Member

    Joined:
    Nov 14, 2006
    Posts:
    1
    Hello I work in a corporate environment and I want to make sure that no one has this software on their machine if we have left it on by accident. I want to add a silent uninstaller to our startup scripts...

    Does acronis have a command line switch for silent uninstall please?

    Thanks
    James
     
  2. Ralphie

    Ralphie Registered Member

    Joined:
    Oct 8, 2006
    Posts:
    952
    Location:
    Florida
    Most of us will be happy if the software just works. What about the old "string on the finger" thing. :cool: :cool: or a modern day equivalent - a big sticky reminder on the box.
     
  3. urie

    urie Registered Member

    Joined:
    Aug 28, 2004
    Posts:
    21
    yes it does i haven,t used it but i do silent install as you must extract the .msi file first you can do that with acronis installer run it but dont install click on help.
    This is what i have for install to give you some idea:
    Code:
    REM     http://www.acronis.com
    REM     NOTES: Extracted
    REG ADD %KEY%\iAdd /VE /D "Acronis Trueimage Home v9.0.0.3677" /f
    REG ADD %KEY%\iAdd /V Inum /D "CMD /C Start /Wait msiexec.exe /I %SystemDrive%\APPS\Acronis_TrueImage9\AcronisTrueImage.msi PIDKEY=\"xxxxx-xxxxx-xxxxx-xxxxx-xxxxx\" /qn /norestart" /f
    REG ADD %KEY%\iAdd /V Inum /D "CMD /C Start /Wait SLEEP.EXE 3" /f
    REG ADD %KEY%\iAdd /V Inum /D "Pskill.exe msiexec.exe" /f
    REG ADD %KEY%\iAdd /V Inum /D "CMD /C DEL \"%ALLUSERSPROFILE%\Desktop\Acronis True Image Home 9.0.lnk\"" /f
    REG ADD %KEY%\iAdd /V Inum /D "CMD /C DEL \"%USERPROFILE%\Desktop\Acronis True Image Home 9.0.lnk\"" /f
    Insert your serial number here xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
    as you can see this is for version 9 will work with 10

    here is a list of switches for .MSI files.

    Code:
    Windows ® Installer. V 3.01.4000.1823 
    
    msiexec /Option <Required Parameter> [Optional Parameter]
    
    Install Options
    	</package | /i> <Product.msi>
    		Installs or configures a product
    	/a <Product.msi>
    		Administrative install - Installs a product on the network
    	/j<u|m> <Product.msi> [/t <Transform List>] [/g <Language ID>]
    		Advertises a product - m to all users, u to current user
    	</uninstall | /x> <Product.msi | ProductCode>
    		Uninstalls the product
    Display Options
    	/quiet
    		Quiet mode, no user interaction
    	/passive
    		Unattended mode - progress bar only
    	/q[n|b|r|f]
    		Sets user interface level
    		n - No UI
    		b - Basic UI
    		r - Reduced UI
    		f - Full UI (default)
    	/help
    		Help information
    Restart Options
    	/norestart
    		Do not restart after the installation is complete
    	/promptrestart
    		Prompts the user for restart if necessary
    	/forcerestart
    		Always restart the computer after installation
    Logging Options
    	/l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*] <LogFile>
    		i - Status messages
    		w - Nonfatal warnings
    		e - All error messages
    		a - Start up of actions
    		r - Action-specific records
    		u - User requests
    		c - Initial UI parameters
    		m - Out-of-memory or fatal exit information
    		o - Out-of-disk-space messages
    		p - Terminal properties
    		v - Verbose output
    		x - Extra debugging information
    		+ - Append to existing log file
    		! - Flush each line to the log
    		* - Log all information, except for v and x options
    	/log <LogFile>
    		Equivalent of /l* <LogFile>
    Update Options
    	/update <Update1.msp>[;Update2.msp]
    		Applies update(s)
    	/uninstall <PatchCodeGuid>[;Update2.msp] /package <Product.msi | ProductCode>
    		Remove update(s) for a product
    Repair Options
    	/f[p|e|c|m|s|o|d|a|u|v] <Product.msi | ProductCode>
    		Repairs a product
    		p - only if file is missing
    		o - if file is missing or an older version is installed (default)
    		e - if file is missing or an equal or older version is installed
    		d - if file is missing or a different version is installed
    		c - if file is missing or checksum does not match the calculated value
    		a - forces all files to be reinstalled
    		u - all required user-specific registry entries (default)
    		m - all required computer-specific registry entries (default)
    		s - all existing shortcuts (default)
    		v - runs from source and recaches local package
    Setting Public Properties
    	[PROPERTY=PropertyValue]
    
    Consult the Windows ® Installer SDK for additional documentation on the
    command line syntax.
    
    Copyright © Microsoft Corporation. All rights reserved.
    Portions of this software are based in part on the work of the Independent JPEG Group.
     
Thread Status:
Not open for further replies.
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.