
Hello,
The error code 30088-44(1610) during an Office uninstallation typically indicates that the Office installer is having trouble with the changes you’re trying to make, possibly due to a network or service interruption. Since you mentioned that the uninstallation is only successful with an active internet connection, it appears that the uninstaller is attempting to reach Microsoft’s servers for some reason.
However, since you want to uninstall Office without an internet connection, here are some steps you can try:
Use the Office Deployment Tool (ODT):
The Office Deployment Tool allows you to download and manipulate Office installations including adding and removing components. You can use the configuration.xml file to specify which products to uninstall. Download the ODT from the Microsoft website, customize your configuration.xml for uninstallation, and then run the tool.
Here’s a basic example of what your configuration.xml might look like for uninstalling:
<Configuration>
<Remove>
<Product ID="Standard2024" >
<Language ID="en-us" />
</Product>
</Remove>
</Configuration>
Use the command line to run the tool with the configuration file:
setup.exe /configure configuration.xml
Manual Removal:
If the Office Deployment Tool does not work, you may need to remove Office manually. This would involve deleting Office files, registry keys, and other related settings. This approach should be taken with caution, as manually editing the registry can cause serious issues if done incorrectly.
Best Regards,
Hania Lian
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.