You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
405 B
Perl

$status = Win32::Service::StartService($host, $service);
#!/usr/bin/perl -w
use Win32::Service;
$num_args = scalar( @ARGV );
$host = '';
$service = "yourServiceName";
$status = Win32::Service::StartService($host, $service);
if ($status) {
print "Started $service.\n";
} else {
print_error();
}
sub print_error {
print Win32::FormatMessage( Win32::GetLastError() );
}