Scheduling Execution of julia Scripts

I have a Julia (1.4, windows machine ) data analysis and plotting scripts of the customers which I update every day. now how I can Scheduling for the execution automatically after like a day or every 6 hours?

I did it in the python
1: creating python scripts
2: creating a bat file
3: schedule using Administrative Tools
is it similar in Julia?

thank you

Step 2 is not needed for scheduling.
You can schedule Julia scripts with commands like:

/path/to/julia.exe your-script.jl
1 Like