1
我的腳本使用Powershell splitpipeline模塊來實現並行進程和隊列功能。如何從共享服務器導入splitpipeline模塊?
腳本和模塊存儲在共享服務器上,如\ server \ c $,這個想法可以從任何計算機上運行它。
試圖把在腳本import-module \\server\c$\SplitPipeline
的begining,但我收到的錯誤:
import-module : Could not load file or assembly 'file://\\server\c$\SplitPipeline\SplitPipeline.dll' or one of its dependencies.
Operation is not supported. (Exception from HRESULT: 0x80131515)
At D:\scripts\powershell\OstReport_BETA-PIPE.ps1:6 char:1
+ import-module \\server\c$\SplitPipeline
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [Import-Module], FileLoadException
+ FullyQualifiedErrorId : FormatXmlUpdateException,Microsoft.PowerShell.Commands.ImportModuleCommand
如果我嘗試將其從SRV與複製到PC:
Copy-Item -Path \\server\c$\SplitPipeline -Destination C:\windows\system32\WindowsPowerShell\v1.0\Modules -recurse -force
我得到一個訪問被拒絕
任何想法?
感謝
感謝,沒有嘗試過,因爲如果你去env變量低谷系統,爲psmodulepath只是出現system32路徑 – pedaleo