Hello
How do I specify an account that the service should log on as?

use strict;
use warnings;
package PerlSvc;
our %Config;

sub Startup{
        while(ContinueRun()){}
}
sub Install{
        $Config{ServiceName} = 'test';
        $Config{DisplayName} = 'test';
        $Config{UserName} = 'test';
        $Config{Password} = 'test';
        $Config{Description} = 'test';
}
sub Remove{
}
sub Help{
}

Thanks
Eric

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to