Need to uninstall some apps from Office 2019

Page 2 of 2 FirstFirst 12

  1. Posts : 5,478
    2004
       #11

    jk22 said:
    Where did I stated that I purchased ?
    Perhaps you should state where you actually purchased it. Otherwise it is hard to help.

    Office 2019 is C2R only. So is Office 365. None of these 2016 screens you show are avaliable.

    Office 2016 had msi installer but neither 2019 or O365 do - they simply doesn't exist.
      My Computer


  2. Posts : 17,661
    Windows 10 Pro
       #12

    jk22 said:
    Didnt worked!
    ODT is extremely simple and easy to use, it works just fine. I have never had issues in using it.

    Create folder ODT on root of C: drive. Download and run ODT: Download Office Deployment Tool from Official Microsoft Download Center

    Select C:\ODT when prompted to select folder to extract files:

    Need to uninstall some apps from Office 2019-image.png

    Now create a configuration file in Notepad. To install only Word and Excel, you need to exclude all other Office Pro Plus applications. Following script would install English 32-bit Office in Semi-Annual Targeted Channel, excluding all other Office applications except Word and Excel:

    Code:
    <Configuration> 
      <Add OfficeClientEdition="32" Channel="Targeted"> 
      <Product ID="O365ProPlusRetail"> 
         <Language ID="en-us" />      
         <ExcludeApp ID="Access" />
         <ExcludeApp ID="Groove" />
         <ExcludeApp ID="OneNote" />
         <ExcludeApp ID="Outlook" />
         <ExcludeApp ID="Lync" />
         <ExcludeApp ID="PowerPoint" />
         <ExcludeApp ID="Publisher" />
      </Product> 
      </Add>
      <Display Level="None" AcceptEULA="TRUE" />
         <Updates Enabled="TRUE" UpdatePath="" Channel="Targeted" />
    </Configuration>

    Notice that Office Pro Plus includes OneDrive for Business and Skype for Business. In configuration script you need to use app ID Groove (ODfB) and Lync (SfB) to exclude them.

    Save the file as O365.xml in C:\ODT:

    Need to uninstall some apps from Office 2019-image.png

    Open an elevated Command Prompt, change (CD) to ODT folder and run following command:

    setup.exe /configure O365.xml

    Need to uninstall some apps from Office 2019-image.png

    Notice that installation is completely automatic, without any progress indicators. If you want to see the progress, remove command Display Level="None" (third line from bottom in sample script). That line would then only contain the automatic acceptance of EULA: <AcceptEULA="TRUE" />

    Normal Installing Office window with progress bar will be shown now:

    Need to uninstall some apps from Office 2019-image.png

    That's it. The latest version of Office has been installed, your chosen applications excluded from installation. At the moment of writing this post, Office version is 1808 build 10730.20155:

    Need to uninstall some apps from Office 2019-image.png

    You can activate Office with your O365 / MS365 account credentials or with a valid product key, depending on license type.

    In case you are using volume licensing, change Product ID to O365ProPlusVolume (line #3 in configuration script, see blue highlight in below extract of the script). If using a MAK (Multiple Activation Key) volume license and product key, you need to add the key to configuration file after product ID (red highlight):

    <Product ID="O365ProPlusVolume" PIDKEY="12345-ABCDE-67890-FGHIJ-KLMNO">

    For KMS licensing, you do not need to add a product key in configuration script.

    Kari
    Last edited by Kari; 16 Nov 2018 at 14:00. Reason: Wrong information removed.
      My Computer


  3. Posts : 369
    Windows 10 21H1 Pro 64-bit
    Thread Starter
       #13

    lx07 said:
    Perhaps you should state where you actually purchased it. Otherwise it is hard to help.

    Office 2019 is C2R only. So is Office 365. None of these 2016 screens you show are avaliable.

    Office 2016 had msi installer but neither 2019 or O365 do - they simply doesn't exist.
    I used Office 2016 and I never had that type of problem. I have changed the laptop so I thought to install new Office 2019. Thatsit!
    Kari said:
    ODT is extremely simple and easy to use, it works just fine. I have never had issues in using it.

    Create folder ODT on root of C: drive. Download and run ODT: Download Office Deployment Tool from Official Microsoft Download Center

    Select C:\ODT when prompted to select folder to extract files:

    Need to uninstall some apps from Office 2019-image.png

    Now create a configuration file in Notepad. To install only Word and Excel, you need to exclude all other Office Pro Plus applications. Following script would install English 32-bit Office in Semi-Annual Targeted Channel, excluding all other Office applications except Word and Excel:

    Code:
    <Configuration> 
      <Add OfficeClientEdition="32" Channel="Targeted"> 
      <Product ID="O365ProPlusRetail"> 
         <Language ID="en-us" />      
         <ExcludeApp ID="Access" />
         <ExcludeApp ID="Groove" />
         <ExcludeApp ID="OneNote" />
         <ExcludeApp ID="Outlook" />
         <ExcludeApp ID="Lync" />
         <ExcludeApp ID="PowerPoint" />
         <ExcludeApp ID="Publisher" />
      </Product> 
      </Add>
      <Display Level="None" AcceptEULA="TRUE" />
         <Updates Enabled="TRUE" UpdatePath="" Channel="Targeted" />
    </Configuration>

    Notice that Office Pro Plus includes OneDrive for Business and Skype for Business. In configuration script you need to use app ID Groove (ODfB) and Lync (SfB) to exclude them.

    Save the file as O365.xml in C:\ODT:

    Need to uninstall some apps from Office 2019-image.png

    Open an elevated Command Prompt, change (CD) to ODT folder and run following command:

    setup.exe /configure O365.xml

    Need to uninstall some apps from Office 2019-image.png

    Notice that installation is completely automatic, without any progress indicators. If you want to see the progress, remove command Display Level="None" (third line from bottom in sample script). That line would then only contain the automatic acceptance of EULA: <AcceptEULA="TRUE" />

    Normal Installing Office window with progress bar will be shown now:

    Need to uninstall some apps from Office 2019-image.png

    That's it. The latest version of Office has been installed, your chosen applications excluded from installation. At the moment of writing this post, Office version is 1808 build 10730.20155:

    Need to uninstall some apps from Office 2019-image.png

    Please notice that you cannot deploy consumer versions of O365 with ODT. Some sites will tell you that you can use ODT to deploy consumer versions of Office, for instance by using Product ID O365HomePremRetail to deploy O365 Home, but I it will not work anymore as it did with earlier versions of Office.

    To activate Office after deployment, you will need a Business or Enterprise subscription of either Office 365 or Microsoft 365, or a volume license.

    You can activate Office with your O365 / MS365 account credentials.

    In case you are using volume licensing, change Product ID to O365ProPlusVolume (line #3 in configuration script, see blue highlight in below extract of the script). If using a MAK (Multiple Activation Key) volume license and product key, you need to add the key to configuration file after product ID (red highlight):

    <Product ID="O365ProPlusVolume" PIDKEY="12345-ABCDE-67890-FGHIJ-KLMNO">

    For KMS licensing, you do not need to add a product key in configuration script.

    Kari
    I will try this on FREE time. But still looking to uninstall without doing all these type of work!
      My Computer


  4. Posts : 17,661
    Windows 10 Pro
       #14

    pparks1 said:
    What version of Office did you buy?
    jk22 said:
    Where did I stated that I purchased ?
    jk22 said:
    I used Office 2016 and I never had that type of problem. I have changed the laptop so I thought to install new Office 2019. Thatsit!

    I will try this on FREE time. But still looking to uninstall without doing all these type of work!
    Based on what you have posted, I do recommend you to forget it. Without a valid license (O365 / MS365 Business or Enterprise account or volume license), you are not able to activate Office. If not activated, installed Office applications will work only five days before disabled.

    Need to uninstall some apps from Office 2019-image.png

    Kari
      My Computer


  5. Posts : 369
    Windows 10 21H1 Pro 64-bit
    Thread Starter
       #15

    Kari said:
    Based on what you have posted, I do recommend you to forget it. Without a valid license (O365 / MS365 Business or Enterprise account or volume license), you are not able to activate Office. If not activated, installed Office applications will work only five days before disabled.

    Need to uninstall some apps from Office 2019-image.png

    Kari
    Hope so!
      My Computer


  6. Posts : 2,068
    Windows 10 Pro
       #16

    We don't really condone or support the pirating of software on this site. I'm surprised you have received as much help as you have. Office is relatively cheap, you can buy it outright or gets tons of other stuff with an Office 365 subscription.
      My Computers


  7. Posts : 17,661
    Windows 10 Pro
       #17

    pparks1 said:
    We don't really condone or support the pirating of software on this site. I'm surprised you have received as much help as you have. Office is relatively cheap, you can buy it outright or gets tons of other stuff with an Office 365 subscription.
    That's why I said this in my last post:

    Kari said:
    Based on what you have posted, I do recommend you to forget it. Without a valid license (O365 / MS365 Business or Enterprise account or volume license), you are not able to activate Office. If not activated, installed Office applications will work only five days before disabled.
    Office 2019 seems to be only available with volume licensing at the moment. I do not want to participate in anything even remotely connected with piracy.

    ODT instructions I posted earlier require a valid license.

    Kari
      My Computer


  8. Posts : 369
    Windows 10 21H1 Pro 64-bit
    Thread Starter
       #18

    pparks1 said:
    We don't really condone or support the pirating of software on this site. I'm surprised you have received as much help as you have. Office is relatively cheap, you can buy it outright or gets tons of other stuff with an Office 365 subscription.
    I had Office 365 subscription but it ends.
    Kari said:
    That's why I said this in my last post:



    Office 2019 seems to be only available with volume licensing at the moment. I do not want to participate in anything even remotely connected with piracy.

    ODT instructions I posted earlier require a valid license.

    Kari
    Ok.
      My Computer


  9. Posts : 209
    Windows 10 pro x64
       #19

    https://docs.microsoft.com/en-us/off...ll-not-in-vlsc
    jk22 said:
    Hey,

    I have downloaded Office 2019 RTM iso file and when I open the setup it install all instead of showing selection. My use is only Excel and Word and I want to uninstall rest of all but I cant find any option for that on CCleaner!

    Regards.
    I have the same issue. I solved with that way.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 15:08.
Find Us




Windows 10 Forums