一尘不染

来自网络UNC的Add-Type加载程序集共享错误0x80131515

selenium

当您想使用以下命令从网络UNC共享添加程序集时:

$scriptPath = Split-Path ($MyInvocation.MyCommand.Path)
Add-Type -path "$scriptPath\selenium-dotnet\net40\WebDriver.dll"

您可能会遇到这样的错误:

Add-Type: Could not load file or assembly 'file:///Z:\A-Backup\Users\Administr
ator\Desktop\MAXIMO Automatic\selenium-dotnet\net40\WebDriver.dll' or one of it
s dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515
)
At Z:\A-Backup\Users\Administrator\Desktop\MAXIMO Automatic\MAXIMO Automatic.ps
1:14 char:1
+ Add-Type -path "$scriptPath\selenium-dotnet\net40\WebDriver.dll"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Add-Type], FileLoadException
    + FullyQualifiedErrorId : System.IO.FileLoadException,Microsoft.PowerShell
   .Commands.AddTypeCommand

我该如何解决这个问题?


阅读 241

收藏
2020-06-26

共1个答案

一尘不染

关键是允许从网络路径 为PowerShell可执行文件 加载程序集。可以通过创建两个文件来完成

C:\ Windows \ System32 \ WindowsPowerShell \ v1.0 \ powershell.exe.config C:\
Windows \ SysWOW64 \ WindowsPowerShell \ v1.0 \ powershell.exe.config

并粘贴以下代码:

<?xml version="1.0" encoding="utf-8" ?> 
<configuration>
   <runtime>
      <loadFromRemoteSources enabled="true"/>
   </runtime>
</configuration>
2020-06-26