windows service in VB

  • Thread starter Thread starter Isa Janfada
  • Start date Start date
I

Isa Janfada

Hello,

I have a windows service I am trying to execute gpg from inside it, but of
some reasons it does not work. The problem is that as a standalone program
the gpg works fine, it encrypts well the files that I want but when I put
the exakt the same code inside serivice it does not work. I tried with
Process. start(), I tried with Shell.

I suspect it must to do with security but i can not figure out how. Any
ideas?

Thanks
 
I suspect it must to do with security but i can not figure out how.
Any ideas?


Try running your service with the Local System account which has more
permissions.

Also... attach a debugger to your service and follow it through?
 
Back
Top