the application failed to start because it's side by side configuration failed

i am trying to install a window service onto my computer but i get the error the application failed to start because it's side by side configuration failed

i tried installing Microsoft Visual C++ 2008 SP1 Redistributable Package but that didn't work.

the service i am trying to install is based on this: http://code.msdn.microsoft.com/windowsdesktop/CppWindowsService-cacf4948
Last edited on
do you use .Net? If so it might be the wrong version

or/and a dll is missing. you can use a tool like dependency walker to determine what's necessary for your program
i used visual studio 2008 to make the project

how do i know which dll is missing?
like I said above: use dependency walker

http://www.dependencywalker.com/
If I remember correctly that sample won't work properly with MS VS 2008 on Vista or 7, this is what is called "DLL Hell". You should MS VS 2010 if you can, or you could try statically linking to your libs but IDK if that will work.
@coder777 i don't really understand how that dependency walker works

@Computergeek01 i can't change to VS2010. everything actually works fine on the computer i created the program on but when i try run it on a different computer it doesn't work
Just recompile the application in release mode and distribute that, do not deploy debug versions !

Dpedency walker has a help file, just read it and you will find what dll is missing.
Last edited on
Topic archived. No new replies allowed.