2

-Hello,

I am trying to install a windows service from a shared folder like this:

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

And having this error:

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).

There is no log at installutil log file and when i try to install service from a local path it installs successfully.

So i wonder is it possible to install a windows service on a pc from a shared path?

Thanks for your help.

Orhan Obut
  • 8,756
  • 5
  • 32
  • 42
antistar
  • 198
  • 2
  • 8

1 Answers1

13

Have you tried adding

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

in the installutil.config where the installutil.exe is at?

You can also try rightclicking the dlls and service exe -> properties -> unblock.

Drakarah
  • 2,244
  • 2
  • 23
  • 23