installed software didn't work.........

  • Thread starter Thread starter Newbie
  • Start date Start date
N

Newbie

Did anybody know what's going onat the following condition ??

I installed my own program in XPE, however the software cannot started. In
the process of the installation had no error message popup also the
software can self register. So why I the software can not start? When I open
a task manager I can see the execute file had been open but it close within
a second. I have try to make the software to be a component, the result was
the same. Did anybody have an idea what i am missing ??? Thanks for anyone
can help me.

Newbie
 
Installed?

You find out all dependencies that your software have on other files.

Use dependency walker to find out about missing files. Also try to start
your app from command line.

What programming language did you use?
Also you should make some error handling in your program that could tell you
what problem could be?

Regards,
Slobodan
 
Slobodan,

I found all dependencies file, and add in my xpe image, however it still not
work. My program used VC++. I try another 3rd party software it run properly
but my program didn't . Which componenet or file is missing, could you give
me some idea. Thanks for your reply.

Newbie.
 
VC++ application don't have many dependencies.

Have you used MFC?
If you have and you don't use static linking then you will only need mfc
library.

If your app uses some dynamic linking or COM components then best way for
you would be to use remote debugging from Visual Studio, and to trace your
code to the point of error.

No need for this but you could use bigger hammer approach with applications
like.
Regmon, Filemon, etc.
Or even Kernel Debugger.

Regards,
Slobodan
 
Back
Top