some scheduled tasks not running, modified several settings/options for each task
You need to provide details in order for us to help you. Is the task not being triggered? Or is the Task Scheduler running the task, but the program it executes doesn't appear to do anything? What settings/options are you changing?
In the Task Scheduler, in the Actions pane select "Enable All Tasks History". Then you can review the History tab for each task to see what the Task Scheduler did with it. Verify that they are being triggered.
You need to capture stdout and stderr from whatever programs you are running to see what console output they produce.
Create a bat file that executes your program. Echo %date% %time% as the first and last line the .bat so that you know when the task starts and ends.
@echo %date% - %time% MyScript is starting.
SomeProgram.exe
@echo %date% - %time% MyScript is ending. SomeProgram RC=%errorlevel%
Then change the scheduled task to execute program "cmd.exe".
In the arguments field set it will look like this example:
/c C:\Scripts\MyScript.bat 1>>"C:\Scripts\Logs\MyScript-%date:~10,4%-%date:~4,2%%date:~7,2%.log" 2>&1
That will create a daily log file of all executions of the task. It will capture stdout and stderr for programs that get called. Be sure to include the double quotes around the file name because of the space in the hours when there is only a single digit.
Then analyze the log file for success/error messages from the program(s).