Powershell 2.0 Remoting loading a .Net 4.0 dll

非 Y 不嫁゛ 提交于 2019-12-05 04:54:10

The solution is to create a c:\windows\System32\wsmprovhost.exe.config file and a c:\windows\SysWOW64\wsmprovhost.exe.config file, on the server, similar to the one I found at: http://poshcode.com/2045

<?xml version="1.0" ?>
<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" />
    <supportedRuntime version="v2.0" />
  </startup>
</configuration>

I found the following article, which hinted at wsmprovhost.exe needing to be configured just like the powershell.exe file. http://tfl09.blogspot.com/2010/08/using-later-versions-of-net-framework.html

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