I can't find a way to create a new folder with win32com in the Windows Task Scheduler, i can only open an already created one such has
import win32com.client as win32
service = win32.gencache.EnsureDispatch('Schedule.Service')
service.Connect()
root_folder = service.GetFolder("\\")
is there way to create a new one without going into the scheduler itself?