Why psscor4 command will not run

眉间皱痕 提交于 2019-12-04 06:42:42

PSSCOR4

You have .NET 4.0.30319.34011, which actually is .NET 4.5. PSSCOR4 is from 2011-02-01 and not available for .NET 4.5 yet. It only works with .NET 4.0, so it's quite useless for your situation.

Since .NET 4.5 is an inplace update for .NET 4, setting the target framework to 4.0 does not help. It depends on the .NET version that is actually installed on the PC which runs your application.

Multiple extensions

Some extensions may have the same commands as other extensions. You can find the available commands of PSSCOR 4 by

0:000> .extmatch /e *psscor4* *

As you can see from the list, PSSCOR4 is a superset of SOS and has all commands of SOS plus some more.

The naming conflict can be resolved in two ways:

  1. defining the default DLL using .setdll <dllname>
  2. being explicit using !<extension>.<command>

Doing an !sos.do you chose approach 2.

The dump is running CLR v4.5 (4.0.30319.34011). Psscor4 does not work with .NET 4.5+.

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