in reply to Long running Perl scripts (on purpose)
For entirely unattended, background operations, start at boot and continue regardless of user, Win32::Daemon is probably the way to go though there is some learning curve involved. You have to understand the modes of operation for windows services and how to control and interact with them. Also, Jan Krynicky's Win32::Daemon::Simple is easier to get started with.
If the user needs to interact with the app, either by querying it or configuring it, or if the app should only run for a specific user, then Win32::SysTray may be a more appropriate way to go.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Long running Perl scripts (on purpose)
by kansaschuck (Sexton) on Feb 06, 2008 at 04:16 UTC | |
by BrowserUk (Patriarch) on Feb 06, 2008 at 11:49 UTC |