Hi Laura,
I rolled back the Office update to the previous version at the time which was Version 2105 (Build 14026.20308) released on June 18th.
To do this I used ODT and OfficeC2RClient.exe (should be available if you installed office with Office Click to Run).
ODT download: https://www.microsoft.com/en-us/download/details.aspx?id=49117
Summary:
- Downgrade office with OfficeC2RClient.exe
- Disable automatic Office updates with ODT
Both can be run in a batch file or just from command prompt, depends on your setup. It needs to be run with admin privs so from elevated CMD, etc.
Step 1. - Downgrade office. From elevated CMD prompt run the below command (copy & paste):
"C:\Program Files\Common Files\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update user forceappshutdown=true updatetoversion=16.0.14026.20308
Step 2. - Disable automatic updates with ODT tool and XML configuration file:
XML file contents (place this file in the same directory as ODT setup.exe file)
<Configuration>
<Updates Enabled="FALSE" Channel="Current" />
<Display Level="None" AcceptEULA="TRUE" />
</Configuration>
Command to run from elevated CMD prompt:
setup.exe /configure name_of_xml_file_here.xml
When this bug is fixed don't forget to re-enable office updates if this is what you have set up in your environment now.
You can do this with ODT using a file similar to above, except change Updates Enabled="FALSE" to Updates Enabled="TRUE".
The command would be the same as above:
setup.exe /configure name_of_changed_xml_file_here.xml
I hope this helps. Step 1. is configured to show a prompt with the update status to the user, it can be done silently as well but I forgot the switch for it. I think it was displaylevel=none but you'd need to double check this. It is also set to force shutdown on any open Office applications when downgrading.
Cheers
Tom