문제

I only started working with WinDbg and I saw video, where guy attach WinDbg to a process. Then he saved dump file as command ".dump /f C:\example\mydump.dmp". What is meaning with ".dump" and "/f" ? Thank you, sorry for my english.

도움이 되었습니까?

해결책

Refer to the docs

This produces a user-mode or kernel-mode crash dump and with the switch /f will create a complete memory dump to that location.

However, personally I always use the flag /ma for user-mode dumps as this has more info (and produces a larger memory dump).

The dump is essentially memory (either the entire memory for kernel or your process for user mode) and depending on the flags you get more info such as state, handles and other info that help diagnose the problem.

For a more complete explanation you can read these links

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top