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.

21 lines
412 B
Perl

# $status = Win32::Service::StopService($host, $service);
#!/usr/bin/perl -w
use Win32::Service;
$host = 'yourhost';
$service = $ARGV[0];
print "Starting $service on $host.\n";
$status = Win32::Service::StopService($host, $service);
if ($status) {
print "Started $service.\n";
} else {
print_error();
}
sub print_error {
print Win32::FormatMessage( Win32::GetLastError() );
}