In windbg, what can cause the message “WARNING: Unable to verify timestamp for mydll.dll”?

六眼飞鱼酱① 提交于 2019-12-04 05:55:46

The reason might be that you don’t have the the binary for your mydll.dll available.
Try to either put it in the same location as the .pdb or use the File -> Image path to
point at the location. NB both the .pdb and .dll must be the same version as the program dumped.

Check if you are using mini dump. If yes then you have to provide additional info which is binary path (exe\dll path) to add exepath execute this command -

.exepath+ "Path of dll\exe"

I have to ask. Does the file timestamp on the dll you are using match the timestamp of the dll that created the dump?

That would be one easy reason for the problem. If you have rebuilt the DLL, or grabbed the wrong version it seems like an easy fix.

This is because you have a minidump and the timestamp for mydll.dll is not present in the dump. If you add the original mydll.dll to the binary path (.exepath) you will get rid of the warning.

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