如何在 Windows ce 上更改转储文件的 MaxDiskUsage

发布于 2024-11-17 23:09:20 字数 432 浏览 3 评论 0原文

我在 Windows CE 平台上启用了错误报告功能来收集崩溃的转储文件应用。我将默认转储类型设置为系统转储。但我们只能获取上下文转储。

MSDN 指出:

通常,错误报告系统会生成系统转储。但是,如果生成的转储文件的大小大于分配给它的空间,系统会生成小得多的上下文转储。

看来错误报告只允许我们将 MaxDiskUsage 最大设置为 512kb。有什么方法可以将 MaxDiskUsage 设置为更大的值吗?

I enabled error reporting feature on Windows CE platform to gather dump file for crashed application. I set default dump type to system dumps. But we can only get context dumps.

Msdn states:

Typically, the Error Reporting system generates a system dump. However, if the size of the dump file generated would be larger than the space allocated to it, the system generates a much smaller context dump.

It seems error reporting only allows us to set MaxDiskUsage to 512kb at maximum. Is there any way to set MaxDiskUsage to a larger value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一百个冬季 2024-11-24 23:09:20

使用以下注册表设置,您可以调整最大转储使用量。

[HKEY_LOCAL_MACHINE\System\ErrorReporting\DumpSettings]
"ReservedDumpMemory"=dword:80000
"DumpDirectory"="\\Hard Disk\\DumpFile"
"ExtraFilesDirectory"="\\Hard Disk\\ExtraDumpFiles"
"DumpEnabled"=dword:1
"DumpType"=dword:3
"MaxDiskUsage"=dword:10000000
"MaxDumpSize"=dword:8000000
"MaxLogFileSize"=dword:8000000

Using the following registry settings you can adjust the Maximum dump usage.

[HKEY_LOCAL_MACHINE\System\ErrorReporting\DumpSettings]
"ReservedDumpMemory"=dword:80000
"DumpDirectory"="\\Hard Disk\\DumpFile"
"ExtraFilesDirectory"="\\Hard Disk\\ExtraDumpFiles"
"DumpEnabled"=dword:1
"DumpType"=dword:3
"MaxDiskUsage"=dword:10000000
"MaxDumpSize"=dword:8000000
"MaxLogFileSize"=dword:8000000
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文