I am trying to create a Cron expression that runs every day at 8:00 AM and 3:30 PM. I understand how to create an expression that runs once a day, but not at multiple set times.
Use two lines: 0 8 * * * for 08:00 and 30 15 * * * for 15:30. Cron pairs every listed minute with every listed hour, so 0,30 8,15 would run four times.