【发布时间】:2015-12-08 19:59:20
【问题描述】:
在 IE9 中,我在保存之前得到了这个窗口,尽管通过单击保存文件被保存为 FILENAME.xls。此外,当我尝试打开保存的文件时,它会在下面弹出消息,但我可以通过单击是继续
有没有办法避免这种情况?
【问题讨论】:
在 IE9 中,我在保存之前得到了这个窗口,尽管通过单击保存文件被保存为 FILENAME.xls。此外,当我尝试打开保存的文件时,它会在下面弹出消息,但我可以通过单击是继续
有没有办法避免这种情况?
【问题讨论】:
第二部分(弹出警告)可以通过下面的操作来避免
Insert this key in your registry to suppress the notification:
[HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Excel\Security] “ExtensionHardening”=dword:00000000
You can accomplish the above by doing the following:
1. Open your Registry (Start -> Run -> regedit.exe)
2. Navigate to HKEY_CURRENT_USER\SOFTWARE\MICROSOFT\OFFICE\15.0\EXCEL\SECURITY
3. Right click in the right window and choose New -> DWORD
4. Type “ExtensionHardening” as the name (without the quotes)
5. Verify that the data has the value “0″
【讨论】: