-2

clicking the run button. Will the script continue to run in the background after I close the browser tab? if not, any way to let it keep running?

Luk Aron
  • 1,235
  • 11
  • 34
  • 2
    You can answer that question for yourself by starting the script, closing the browser and returning later and looking at the executions to how long it ran. – Cooper Jul 26 '21 at 18:11

1 Answers1

0

Yes. Once you run it, it will continue to run even if the browser is closed. Apps Script is being run on Google's servers.

It halts when the script ends (success/fail) or reaches the limit of execution which is 6 minutes.

NightEye
  • 10,634
  • 2
  • 5
  • 24