Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED How to uninstall office 2019 from software center

  • Thread starter Thread starter Nitin_ted
  • Start date Start date
  • Replies Replies 11
  • Views Views 10K
Status
Not open for further replies.
Solution
i deployed Office 2019 using the link below. But no uninstalling path. Can anyone please share the xml or guide how i can make user to uninstall.



Still very new to SCCM

<Configuration>
<Remove OfficeClientEdition="64">
<Product ID="Standard2019Volume">
<Language ID="en-us"/>
</Product>
</Remove>
<Display Level="None" AcceptEULA="TRUE"/>
</Configuration>
i deployed Office 2019 using the link below. But no uninstalling path. Can anyone please share the xml or guide how i can make user to uninstall.



Still very new to SCCM

<Configuration>
<Remove OfficeClientEdition="64">
<Product ID="Standard2019Volume">
<Language ID="en-us"/>
</Product>
</Remove>
<Display Level="None" AcceptEULA="TRUE"/>
</Configuration>
 
Solution
<Configuration>
<Remove OfficeClientEdition="64">
<Product ID="Standard2019Volume">
<Language ID="en-us"/>
</Product>
</Remove>
<Display Level="None" AcceptEULA="TRUE"/>
</Configuration>
Do i need to add license key or anything in Product ID section ? or just copy and paste the same ? (Sorry Kinda new to SCCM)

Also the Uninstallation program will be below can confirm too?
setup.exe /configure Uninstall.xml
 
Last edited:
Do i need to add license key or anything in Product ID section ? or just copy and paste the same ? (Sorry Kinda new to SCCM)

Also the Uninstallation program will be below can confirm too?
setup.exe /configure Uninstall.xml
no license key is required. just make sure the product id matches what your have and the client edition if it is 86 or 64
 
Hi @AhmedLS i try as you mentioned above but not able to uninstall my visio. i got error in Software center 0xFFFFFFFF(-1) and Microsoft pop-up screen saying couldn't install, Error code: 0-2048 (0)

<Configuration>
<Remove OfficeClientEdition="64">
<Product ID="VisioStd2019Volume">
<Language ID="en-us"/>
</Product>
</Remove>
<Display Level="None" AcceptEULA="TRUE"/>
</Configuration>

Uninstallation program command - setup.exe /configure Uninstall.xml

Please advise what i'm doing wrong.
 
Hi @AhmedLS i try as you mentioned above but not able to uninstall my visio. i got error in Software center 0xFFFFFFFF(-1) and Microsoft pop-up screen saying couldn't install, Error code: 0-2048 (0)

<Configuration>
<Remove OfficeClientEdition="64">
<Product ID="VisioStd2019Volume">
<Language ID="en-us"/>
</Product>
</Remove>
<Display Level="None" AcceptEULA="TRUE"/>
</Configuration>

Uninstallation program command - setup.exe /configure Uninstall.xml

Please advise what i'm doing wrong.
try below config file just make sure you have the right version of visio. below is for visio pro
<Configuration>
<Display Level="full" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Remove>
<Product ID="vispro" />
</Remove>
</Configuration>
 
@Stefan_19911 and @AhmedLS you mind share xml files with cmd and installer? i try xml so many times but its not working. (can you share with me on [email protected])
the installer you download from microsoft office 365. it is the same exe for all office applications. the command is
setup.exe /configure \\path\to\uninstall\xml\file\\uninstall-Office365ProPlus.xml

for microsoft project just replace the part for the product ID

<Product ID="ProjectProRetail">
<Language ID="en-us" />
</Product>
 
the installer you download from microsoft office 365. it is the same exe for all office applications. the command is
setup.exe /configure \\path\to\uninstall\xml\file\\uninstall-Office365ProPlus.xml

for microsoft project just replace the part for the product ID

<Product ID="ProjectProRetail">
<Language ID="en-us" />
</Product>
Hi @AhmedLS thanks i fixed and the issues. learn new things
 
Status
Not open for further replies.

Forum statistics

Threads
7,133
Messages
27,858
Members
18,151
Latest member
TonyGTR
Back
Top