Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to execute windows service using following command C:\Windows\system32>installutil.exe MyNewService.exe

but i am getting below error: Exception occurred while initializing the installation: System.IO.FileNotFoundException: Could not load file or assembly 'file:///C:\Win dows\system32\MyNewService.exe' or one of its dependencies. The system cannot fi nd the file specified..

I tried various blogs saying some problem with spaces and all but i cant find suitable modifications to my code. Anybody can tell me which modifications i required?

share|improve this question
Is your service located in that folder? – Patrick Jan 23 at 18:02
is c:\windows\system32\ the location of MyNewService.exe? – tgolisch Jan 23 at 18:02
No my application location is G:\MyProjects\MyNewService\MyNewService – Aquarius24 Jan 23 at 18:05
but when i run command prompt from visual studio as an administrator and changes the path also it shows like that only – Aquarius24 Jan 23 at 18:06

4 Answers

up vote 1 down vote accepted

This error is because your "installutil.exe" is not located in the "C:\Windows\system32" This is a .NET framework file and will be found under the version of .NET framework. For example for Framework 4.0 you can find this file here: "C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319"

I will recommend opening a command prompt window and 'cd' into "C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319', then execute the following command.

installutil.exe G:\MyProjects\MyNewService\MyNewService.exe

This should fix your issue.

share|improve this answer

It may be a permissions issue for the System32 folder. Try moving your service executable (and other related files) out to something like C:\MyNewService\ and call the install like this C:\Windows\system32>installutil.exe C:\MyNewService\MyNewService.exe

share|improve this answer

Unfortunately that is a very generic error that could have many issues behind it. Basically the .NET runtime was unable to fully load the file, this could mean there is a problem with the file itself in odd cases, or most likely one of its dependencies could not be located.

Note that dependencies often chain, so an assembly that you reference could reference another assembly that is missing. A couple of recommendations:

  • Double check whether any of your dependencies are not strong signed.
  • If they aren't strong signed they should be in the same directory as your service.
  • If they are strong signed they should either be in the GAC (make sure it is the right one, putting a .NET 4 DLL in the .NET 2 GAC won't work) or in the same directory.
  • If the dependency is in the GAC, try putting a copy in the local directory to avoid any problems.
  • Finally if you are still having issues, look into debugging dependencies, specifically the Fusion Log, note that there are many ways to get to that date, I just linked to the first result.
share|improve this answer

Thanks for your concern I got the solution . Actually I was giving installutil MyNewService.exe

instead i have to give installutil MyNewService.exe fullpath....

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.