Cause:
When IE communicates with secure WEB sites through SSL, IE enforces any No-Cache request,
If a header exists, IE does not cache the file, so Office cannot open remote SSL to the file, and IE does not
Download method. Because IE must save the file to the local cache directory and associate it with the application through
IPersistFIle: Load the file. If the file is not found on the local disk, this operation will fail!
Server-based solutions:
You must allow this operation to delete the No-cache header on the Web site.
If it is based on IIS, you can directly create a configuration file. Because our company's system is not in the IIS architecture, this
Omitted
Client-based solutions:
Manually Open Regedit and add the following DWORD entries to the client Registry tree
BypassSSLNoCacheCheck, with the value set to 1 (restart the computer after the setting is complete );
| The code is as follows: |
Copy code |
HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Internet Settings \ BypassSSLNoCacheCheck |
Quick response:
Copy the following code and save it as SSLNoCacheCheck. reg. Double-click to import it:
| The code is as follows: |
Copy code |
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Internet Settings] "BypassSSLNoCacheCheck" = dword: 00000001 |