Dependency Walker reports IESHIMS.DLL and WER.DLL missing?

前端 未结 4 2106
孤独总比滥情好
孤独总比滥情好 2020-11-27 04:14

On a Windows XP Professional SP3 with Internet Explorer 8 box, when I run Dependency Walker on an executable of mine it reports that: IESHIMS.DLL and WER.DLL can\'t be found

4条回答
  •  隐瞒了意图╮
    2020-11-27 04:37

    ieshims.dll is an artefact of Vista/7 where a shim DLL is used to proxy certain calls (such as CreateProcess) to handle protected mode IE, which doesn't exist on XP, so it is unnecessary. wer.dll is related to Windows Error Reporting and again is probably unused on Windows XP which has a slightly different error reporting system than Vista and above.

    I would say you shouldn't need either of them to be present on XP and would normally be delay loaded anyway.

提交回复
热议问题