Hi there,
What about to load license file manually? NET Reactor Help > SDK >
License.dll > Manually load a license using a filename
/*** Load the license. ***/
public void LoadLicense(string filename)
{
License.Status.LoadLicense(filename);
}
Alex
On May 9, 10:39 am, Tristan Reeves <
tree...@gmail.com> wrote:
> Hi,
> I'd say it might be because when you run as a service, the working
> directory is sometimes system32 -- maybe it's looking for the license file
> there, instead of the directory that actually contains your exe. (eghttp://
stackoverflow.com/questions/884963/what-directory-does-a-windo...
> )
>
> Now, it seems like it's not a simple problem to overcome, especially since
> nr looks for the license file before you have a chance to do anything.
>
> One solution I can think of is:
> Have a "bootstrapper" program (no nr protection) that runs as a service.
> The whole purpose of the bootstrapper is to launch the real executable,
> with the CORRECT working directory.
>
> Hope this can help you,
> Tristan.
>
> On Wed, May 9, 2012 at 6:25 AM, Michael Cardwell
> <
italo.cardw...@gmail.com>wrote: