我的系统有这一数据链接,Interop.MSDASC.dll。 我正试图从像这样的大国身上装上同样的东西——
[Reflection.Assembly]::LoadFile("C:Interop.MSDASC.dll") | out-null
但我有以下错误:
Exception calling "LoadFile" with "1" argument(s): "Could not load file or assembly Interop.MSDASC.dll or one of its dependencies. is not a
valid Win32 application. (Exception from HRESULT: 0x800700C1)"
At line:1 char:32
+ [Reflection.Assembly]::LoadFile <<<< ("C:Interop.MSDASC.dll") | out-null
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : DotNetMethodException
我如何正确装载这件事?