Atharv-Chaudhari / Auto-Open-and-Auto-Setup-Daily

For Lazy Dudes, Who are lazy to open few applications daily, they can use this to open them automatically... you can enjoy the coffee in the saved time 😎😎😎

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Auto Open Daily Required Applications with Windows Task Scheduler and Set Up them

This Repo have Simulation of chrome we can do the same process for other applications also...

Steps For adding any task in Windows Task Scheduler :-

  1. In windows search panel search for "task scheduler" and select application "Task Scheduler", will open window as follows.

2) Right Click on Task Scheduler Library and create new folder to keep our custom startup scripts different from system ones...

3) Now in Task Sheduler Library shows our newly created folder right click on it and select 'create basic task'

4) Will open up following window, add respective name and click next

5) In next step we have to choose triggers according to requirement,

6) on next it will show start time of task and respective date and recur every day/month/weekly according to your previous choice, click on next 7) Here we get following options we can choose accoording to our need, we choose option 'start program' for our script

8) On This step it will ask path to script we can add path or use browse option, along with arguments.

9) Subsequently it will show all details about task, we can click on finish to complete process and Done. We have Successfully sheduled task.

Instead of Windows Task Scheduler we can also use a bat file to make job done but it makes we have run bat file to run all tasks...!!

"DRIVE NAME HERE IF YOU HAVE SCRIPT IN DIFFERENT FOLDER FOR EXAMPLE :- 'G:'"
chcp 65001>nul
cd "PATH_TO_SCRIPT_FOLDER"
@echo off
py -u "start.py"
timeout /t 10 >nul

About

For Lazy Dudes, Who are lazy to open few applications daily, they can use this to open them automatically... you can enjoy the coffee in the saved time 😎😎😎


Languages

Language:Python 100.0%