P
P
powerful8882020-12-14 16:05:53
Software and Internet Services
powerful888, 2020-12-14 16:05:53

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

3 answer(s)
S
Sand, 2020-12-14
@sand3001

Task Scheduler + script to start/restart programs to help you

A
Alexander Lykasov, 2020-12-14
@lykasov-aleksandr

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

Y
Yuriy Vorobyov, 2020-12-14
@YuriyVorobyov1333

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

In the "start" section, you need to add a call to start your program. Call it by specifying the full path and giving it the parameter "start" or "stop"

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question