Thats not really a problem, would be a fast change, just need to find the correct code to make the change.
I dont mind sharing this bit of code/
i.RegistrationInfo.Author = "CleanMem Mini Monitor - PcWinTech.com"
i.RegistrationInfo.Description = "CleanMem Mini Monitor"
i.Settings.ExecutionTimeLimit = "PT0S" 'disable
i.Settings.DisallowStartIfOnBatteries = False
i.Settings.StopIfGoingOnBatteries = False
i.Settings.AllowHardTerminate = True
i.Settings.AllowDemandStart = True
i.Settings.MultipleInstances = TASK_INSTANCES_PARALLEL
i.Settings.RunOnlyIfIdle = False
i.Settings.RunOnlyIfNetworkAvailable = False
i.Triggers.Create TASK_TRIGGER_LOGON
i.Principal.RunLevel = TASK_RUNLEVEL_HIGHEST
Set ii = i.Actions.Create(TASK_ACTION_EXEC)
ii.Id = "CleanMem Mini Monitor"
ii.Path = App.Path & "\mini_monitor.exe"
ii.WorkingDirectory = App.Path
ii.Arguments = "/startup"
Set iii = t.GetFolder("\")
Set iiii = iii.RegisterTaskDefinition("CleanMem Mini Monitor", i, TASK_CREATE, Null, Null, TASK_LOGON_INTERACTIVE_TOKEN, "")
DoEvents
So 2 things. First what is truly best for the default? I have to keep in mind a default for a new user.
2nd. See if I can find the code section to make the changes.
Shane