2013-02-04 82 views
2

你好安裝一個Windows服務,運行Installutil到共享文件夾

我想從這樣的共享文件夾安裝Windows服務:

installutil "\\\10.1.5.120\Path1\Path2\MyService.exe" 

,並具有這樣的錯誤:

Exception occurred while initializing the installation: 
System.IO.FileLoadException: Could not load file or assembly 'file://\\10.1.5.120\Path1\Path2\MyService.exe' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515). 

在installutil日誌文件中沒有日誌,當我嘗試從本地路徑安裝服務時,它成功安裝。

所以我想知道是否有可能在共享路徑上的PC上安裝Windows服務?

感謝您的幫助。

回答

8

您是否嘗試過在該installutil.exe是在installutil.config加入

<runtime> 
    <loadFromRemoteSources enabled="true" /> 
</runtime> 

你也可以嘗試右鍵單擊dll和service exe - > properties - > unblock。

+0

感謝您提供此信息 – paritosh