Install Office 2021 silent on windows 10

Discussion in 'Windows 10' started by behdadsoft, Feb 25, 2022.

  1. behdadsoft

    behdadsoft MDL Novice

    Jun 15, 2010
    26
    0
    0
  2. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,172
    5,980
    150
    #2 Dark Dinosaur, Feb 25, 2022
    Last edited: Feb 26, 2022
    If you put xml file and setup file In office root path
    And start install from same path
    Also You need to be in the same path too.
    It will install it as DVD (I do it in office(r)tool)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. sonic9

    sonic9 MDL Member

    Aug 4, 2009
    178
    66
    10
    try
    Code:
    cd /d "%~dp0Office"
    call setup.exe /configure configuration.xml
     
  4. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,451
    1,345
    120
    This message is absolutely correct. You must uninstall the previous version before installing a new or different version.
    And keep in mind that the previous version must be completely removed (including the registry all entries) and then the computer must be restarted.
    And it's nothing new, it always has been so.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. behdadsoft

    behdadsoft MDL Novice

    Jun 15, 2010
    26
    0
    0
    This message is absolutely wrong. Because Office has not been installed before. and this message is very strange.
     
  6. sonic9

    sonic9 MDL Member

    Aug 4, 2009
    178
    66
    10
    you can make an "uninstall.XML" to uninstall existing Office
    Code:
    <Configuration>
        <Remove All="TRUE"/>
        <Display Level="Full" AcceptEULA="TRUE"/>
        <Property Name="AUTOACTIVATE" Value="0"/>
        <Property Name="FORCEAPPSHUTDOWN" Value="TRUE"/>
        <Property Name="SharedComputerLicensing" Value="0"/>
        <Property Name="PinIconsToTaskbar" Value="FALSE"/>
    </Configuration>
    then
    Code:
    cd /d "%~dp0Office"
    call setup.exe /configure uninstall.xml
    call setup.exe /configure configuration.xml
     
  7. behdadsoft

    behdadsoft MDL Novice

    Jun 15, 2010
    26
    0
    0
    Thanks you.:D