Answer the question
In order to leave comments, you need to log in
What programs are there to launch other programs and restart them?
The goal is for the program to launch programs from the list, and then reboot them an hour later, what options are there?
Answer the question
In order to leave comments, you need to log in
Hmm.. Once I made a similar utility for one project: download here Maybe it will help.
This is a utility under Windows to launch programs with a time limit.
run <program> <timeout>
If the program name contains spaces, it must be enclosed in quotes. The timeout is specified in seconds
Example: run "c:\windows\system32\ping.exe -n 10 ya.ru" 5
Run ping with a time limit of 5 seconds
Depends on the operating
system Ubuntu has such a solution. In general, it all comes down to writing a script.
Here is an example of a bash script honestly found on the Internet:
#! /bin/sh
# /etc/init.d/blah
#
# Some things that run always
touch /var/lock/blah
# Carry out specific functions when asked to by the system
case "$1" in
start)
echo "Starting script blah "
echo "Could do more here"
;;
stop)
echo "Stopping script blah"
echo "Could do more here"
;;
*)
echo "Usage: /etc/init.d/blah {start|stop}"
exit 1
;;
esac
exit 0
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question