禁用 powerpoint 的自动恢复选项
我无法找到正确的属性/方法来禁用 powerpoint 的自动恢复选项。对于 Excel 和 word 如下
对于 excel 这将做到这一点 $wb.EnableAutoRecover = $False
并用于单词 $word.Options.SaveInterval = 0
知道我需要为 powerpoint 做什么吗?有一个“选项”的只读属性。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PowerPoint 的大多数选项设置都存储在注册表中,通常为:
HKCU\Software\Microsoft\Office\xx.0\PowerPoint\Options
您可以在 Regedit 中将其保持打开状态,更改 PPT 中的选项,然后刷新 Regedit 以查看更改的内容。
在这种情况下,请检查:
FrequencyToSaveAutoRecoveryInfo
PowerPoint 在启动时读取选项设置,在用户进行更改时将其写出,然后在关闭时再次将其写出,但在会话期间不再从注册表中读取它们。换句话说,如果您在 PPT 运行时更改设置:
1) 不会有任何效果,并且
2) PowerPoint 退出时将覆盖您的更改
您需要在 PPT 关闭时进行任何必要的更改。
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.