Visual Studio fails debugging JavaScript in IE9 - says “The correct version of pdm.dll is not registered”

后端 未结 3 985
孤独总比滥情好
孤独总比滥情好 2021-01-18 06:53

I encountered this problem after installing IE10, finding it did not work well on my Windows 7 system, and uninstalling it. Now, back to IE9, VS2010 could not attach to the

相关标签:
3条回答
  • 2021-01-18 07:12

    See the "Here's the solution" comment. I had the answer when I posted it, but wanted to share it and avoid more wasted hours by others.

    0 讨论(0)
  • 2021-01-18 07:19

    Here's the solution unfortunately did not help me.

    My solution: - Remove IE 10 - Cotrol panel - Programs and Features - VS 2012 - change - repair.(I've selected download components from internet)

    0 讨论(0)
  • 2021-01-18 07:29

    We solved a similar issue registering again all the dll's in

    C:\Program Files\Common Files\Microsoft Shared\VS7Debug
    C:\Program Files (x86)\Common Files\microsoft shared\VS7Debug
    

    For first one remember to use:

    %systemroot%\System32\regsvr32.exe
    

    and for 2nd ones (32 bit):

    %systemroot%\SysWoW64\regsvr32.exe
    

    If that is not enough go to VS debug menu and go to Options and configuration > Just-In-Time, uncheck all the options there (Administered, Native, Script) and click OK

    Go to some place and check again those options and click OK again.

    0 讨论(0)
提交回复
热议问题