windbg readmem error: Unable to read data for xxx, load is incomplete

windbg readmem error: Unable to read data for xxx, load is incomplete

我在 Mac 上使用 VMWare,我有一个共享文件夹 z:\shm

当我尝试使用 windbg 读取该文件时,出现错误,

0:000> .readmem z:\shm\msgbox.bin @$t8 L272
Reading 272 bytes
Unable to read data for 00020000, load is incomplete

我怎样才能找出原因?

我猜文件只有 272 个字节,而不是 0x272 个字节。使用小数格式0n来修正:

.readmem z:\shm\msgbox.bin @$t8 L0n272