git-auto
git-auto copied to clipboard
How to autostart in the background with parameters in Windows system?
Hi, Just like the question :)
I am a newbie as well, but I am trying this: https://community.spiceworks.com/how_to/17736-run-powershell-scripts-from-task-scheduler
Hope someone experienced can answer the question :)
For Linux/MacOS you can run the script then append &
to the end of the command to run it in the background.
Alternatively you can use nohup
. Append nohup
to the start of the command before calling the script.
You can find more detailed information in this article (How to Run Linux Commands in Background)