Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Wednesday, February 27, 2019 1:21 PM
Hi,
I am able to uninstall completely Office (Word,Excel Powerpoint) but not Access Runtime. I found no product ID to uninstall that product too.
"C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" scenario=install scenariosubtype=ARP sourcetype=None productstoremove=AccessRuntimeRetail.16_fr-fr_x-none culture=fr-fr version.16=16.0
So how uninstalling it properly?
My current XML is looking like that:
<Configuration>
<Remove All="FALSE">
<Product ID="O365ProPlusRetail" >
<ExcludeApp ID="Excel" />
<ExcludeApp ID="Outlook" />
<ExcludeApp ID="PowerPoint" />
<ExcludeApp ID="OneDrive" />
<ExcludeApp ID="Publisher" />
<ExcludeApp ID="Word" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="Lync" />
</Product>
</Remove>
<Property Name="ForceAppShutdown" Value="True" />
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Logging Level="Standard" Path="C:\Program Files\Organisation\InstTrousses\Journaux" />
</Configuration>
From what I am seeing here /en-us/deployoffice/configuration-options-for-the-office-2016-deployment-tool
there is no ID for accessruntime
Thanks,
François
All replies (6)
Thursday, March 7, 2019 2:14 AM ✅Answered
Hi,
Did you mean uninstall Access Runtime 365? Or Access in Office 365?
For Access Runtime 365, the Product ID is AccessRuntimeRetail.
You can use ODT to uninstall it.
Please follow these steps:
1. Download ODT: https://www.microsoft.com/en-us/download/details.aspx?id=49117 and install it.
2. Create the unistall.xml file:
<Configuration>
<Remove All="TRUE">
<Product ID="AccessRuntimeRetail" >
</Product>
</Remove>
<Display Level="Full" AcceptEULA="TRUE" />
</Configuration>
3. Run the Command Line to unisnatll Access Runtime 365:
cd C:\Users\Administrator\Desktop\ODT
setup.exe /configure uninstall.xml
For Access in Office 365:
Create config.xml file:
<Add SourcePath="\\Server\share" Version="xx.x.xx.x" OfficeClientEdition="32">
<Product ID="O365ProPlusRetail" >
<Language ID="en-us" />
<ExcludeApp ID="Access" />
</Product>
</Add>
This will install Office 365ProPlus without Access.
Regards,
Emi Zhang
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact [email protected].
Click here to learn more. Visit the dedicated forum to share, explore and talk to experts about Microsoft Office 2019.
Thursday, February 28, 2019 6:02 AM
Hi,
Please refer to this support atricle:
/en-us/deployoffice/upgrade-from-msi-version
As the article said, Access 2010 Runtime or later. The product ID is AccessRT. But, Access Database Engine 2010 Redistributable or later can't be removed by using the RemoveMSI element.
Just checking in to see if the information was helpful. Please let us know if you would like further assistance.
Regards,
Emi Zhang
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact [email protected].
Click here to learn more. Visit the dedicated forum to share, explore and talk to experts about Microsoft Office 2019.
Friday, March 1, 2019 9:38 AM
Hi,
Just checking in to see if the information was helpful. Please let us know if you would like further assistance.
Regards,
Emi Zhang
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact [email protected].
Click here to learn more. Visit the dedicated forum to share, explore and talk to experts about Microsoft Office 2019.
Friday, March 1, 2019 11:43 AM
Hi,
No it did not solve the issue.
Wednesday, March 6, 2019 3:05 AM
Hi,
Please follow these steps:
1. Extract Access Runtime.exe to Desktop folder, for example:
Run this command line:
C:\Users\Administrator\Desktop\accessruntime_4288-1001_x64_en-us.exe /extract
You will get the folder with extracted Access Runtime.exe files:
2. Create uninstall XML file:
<?xml version="1.0"?>
<Configuration Product="ACCESSRT">
<Display AcceptEula="yes" SuppressModal="yes" CompletionNotice="no" Level="none"/>
<Logging Template="Microsoft_Access_2016_Runtime_Uninstall(*).log" Path="C:\Users\Administrator\Desktop\TEST" Type="standard"/>
<Setting Value="NEVER" Id="SETUP_REBOOT"/>
</Configuration>
Put it to Access extracted folder:
3. Run this command line to uninstall Access Runtime:
cd C:\Users\Administrator\Desktop\Access
setup.exe /uninstall AccessRT /config uninstall.xml
Hope it's helpful.
Regards,
Emi Zhang
Please remember to mark the replies as answers if they helped. If you have feedback for TechNet Subscriber Support, contact [email protected].
Click here to learn more. Visit the dedicated forum to share, explore and talk to experts about Microsoft Office 2019.
Wednesday, March 6, 2019 12:33 PM
Hi,
But your example is not with Office 365 but a standalone accessRT?!
Thanks,