don't make sense......
service start at system startup, when no one is even logged.
having a console on the screen at this time when no user is logged would be
a security issue, wouldn't it?
on the other hand you could write your own code where the service listen to
a socket or rmi or shared memory or pipe or MSMQ or whatever.....
It could be a security issue, but wouldn't be in this instance, basically we
need all the features of a windows service, (auto start, retstart etc), but
we need to be able to have some sort of console output, ideally that would be
with a console.
I've found the switch in the install utility "/LogToConsole={true|false}",
i'm just a little unsure of how to actually use it.
> don't make sense......
> service start at system startup, when no one is even logged.
[quoted text clipped - 25 lines]
> > Thanks for any help.
> > Rob
dan.c.roth@gmail.com - 12 May 2005 09:55 GMT
Hi
Yes I have done that with a tray icon....
There is a setting "Allow service to interact with desktop" in the
service properties.
But you can do it in code with
InParam["DesktopInteract"] = true;
in the ProjectInstaller.cs
Regards,
Daniel Roth
MCSD.NEt
> It could be a security issue, but wouldn't be in this instance, basically we
> need all the features of a windows service, (auto start, retstart etc), but
[quoted text clipped - 33 lines]
> > > Thanks for any help.
> > > Rob