F5F Stay Refreshed Software Operating Systems Create a script to start applications automatically.

Create a script to start applications automatically.

Create a script to start applications automatically.

T
Tyclonek
Member
81
01-18-2020, 09:34 AM
#1
Here’s a simple example of a batch file that launches multiple programs at startup. Replace `{program1}, {program2}, ...` with the actual paths you want to run.

```batch
@echo off
echo Starting programs...
echo Program 1: %{program1}
echo Program 2: %{program2}
echo Program 3: %{program3}
pause
```

Save this as `startup.bat` and place it in your task scheduler startup folder.
Just update the paths in the echo commands to match your needs.
T
Tyclonek
01-18-2020, 09:34 AM #1

Here’s a simple example of a batch file that launches multiple programs at startup. Replace `{program1}, {program2}, ...` with the actual paths you want to run.

```batch
@echo off
echo Starting programs...
echo Program 1: %{program1}
echo Program 2: %{program2}
echo Program 3: %{program3}
pause
```

Save this as `startup.bat` and place it in your task scheduler startup folder.
Just update the paths in the echo commands to match your needs.

J
JokerFame
Senior Member
670
01-25-2020, 09:26 AM
#2
Launch the application
J
JokerFame
01-25-2020, 09:26 AM #2

Launch the application

A
Athame_
Senior Member
734
02-01-2020, 07:55 AM
#3
Set up a new startup directory in your profile. Generate a script named startup.bat inside that folder. Execute commands to launch all shortcuts in the startup area. Configure a scheduled task that runs startup.bat with admin privileges upon login. Any application you wish to launch can be added by placing a shortcut there.
A
Athame_
02-01-2020, 07:55 AM #3

Set up a new startup directory in your profile. Generate a script named startup.bat inside that folder. Execute commands to launch all shortcuts in the startup area. Configure a scheduled task that runs startup.bat with admin privileges upon login. Any application you wish to launch can be added by placing a shortcut there.

L
l_h_y
Member
105
02-06-2020, 05:28 PM
#4
I'll try it out when I restart my computer next time.
L
l_h_y
02-06-2020, 05:28 PM #4

I'll try it out when I restart my computer next time.

B
BosnaKingz
Member
166
02-06-2020, 07:12 PM
#5
Great job! Everything worked smoothly.
B
BosnaKingz
02-06-2020, 07:12 PM #5

Great job! Everything worked smoothly.

M
MoonMidnight
Member
159
02-08-2020, 01:18 PM
#6
Great to hear that. No issues.
M
MoonMidnight
02-08-2020, 01:18 PM #6

Great to hear that. No issues.