禁用 powerpoint 的自动恢复选项

发布于 2024-10-27 14:31:44 字数 208 浏览 4 评论 0原文

我无法找到正确的属性/方法来禁用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失而复得 2024-11-03 14:31:44

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文