disablinging autorecover option for powepoint

我只是一个虾纸丫 提交于 2019-12-10 23:33:50

问题


I am not able to find the correct property/method to disable the auto recover option for powerpoint. For Excel and word its as below

For excel this will do it $wb.EnableAutoRecover = $False

and for word $word.Options.SaveInterval = 0

Any idea what I need to do for powerpoint? There is an 'Option's read only property.


回答1:


Most of PowerPoint's Options settings are stored in the registry, usually:

HKCU\Software\Microsoft\Office\xx.0\PowerPoint\Options

You can leave this open in Regedit, change an option in PPT then refresh Regedit to see what's changed.

In this case check:

FrequencyToSaveAutoRecoveryInfo

PowerPoint reads the options settings at startup, writes them out as the user makes changes and again at shutdown but never reads them from the registry again during a session. In other words, if you change the settings while PPT is running:

1) It'll have no effect, and 2) PowerPoint will overwrite your changes when it quits

You need to make any necessary changes while PPT is shut down.



来源:https://stackoverflow.com/questions/5464075/disablinging-autorecover-option-for-powepoint

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!