Can't create a any schedule - Nullable Object must have a value

Product: PowerShell Universal
Version: 2.9.2

Trying to create my first schedule, but no matter what options I choose or schedule type, it doesn’t create and the notification just says “Invalid Configuration: schedules.ps1 Nullable Object must have a value”

  1. No idea which object is null that wants a value
    and
  2. If an object is nullable, does that mean by definition it can not have a value?

seems like an oxymoron of an error message.

any help?

Can you share what’s currently in your schedules.ps1 file? You can view it by going to Settings \ Configurations

New-PSUSchedule -Script “Jasci Inbound\Inventory Adjustment.ps1” -TimeZone “America/Los_Angeles” -Continuous -Credential “Default” -Name “Inventory Adjustment”

New-PSUSchedule -Cron “* * * * *” -Script “Jasci Inbound\Inventory Adjustment.ps1” -TimeZone “America/Los_Angeles” -Credential “Default” -Name “Inventory Adjustment” -Timeout 5

I’ve also tried to just blank these lines out, save, and then create a new job from scratch, same error…