I had been running SQL Server 2019 Developer Edition on my Win10 PC for a couple of years, and had a maintenance plan that ran every night to shrink and then backup all user databases to an external drive, and then delete backup files older than 1 week.
Last week I rebuilt my PC, and installed Win11. I set up a maintenance plan following what I had done previously. In case it helps, here is the designer that shows the main details...

I can supply more details if needed, but the designer shows pretty much everything of use.
I set this to run every night, but none of the databases are backed up.
The event viewer shows an Error entry for SQLISPackage150 with the message "Package "Backup" failed." Doesn't give me any more information.
If I try running the job manually, I get an error message...
Execution failed. See the maintenance plan and SQL Server Agent job history logs for details.
===================================
Job 'Backup.Subplan_1' failed. (SqlManagerUI)
Program Location:
at Microsoft.SqlServer.Management.SqlManagerUI.MaintenancePlanMenu_Run.PerformActions()
If I look at the message for the actual job, all it says is "_Job 'Backup.Subplan_1' failed. (SqlManagerUI)_", which doesn't help at all.
As an experiment, I copied the SQL for one of the backups...
BACKUP DATABASE [Northwind]
TO DISK = N'E:\SQL Server backups\Northwind_backup_2022_12_12_161327_7041409.bak'
WITH NOFORMAT, NOINIT,
NAME = N'Northwind_backup_2022_12_12_161327_7041409', SKIP, REWIND, NOUNLOAD, STATS = 10
...into a new Query Analyser window, and it ran fine.
At this point I'm a bit lost. I have no idea why the job is failing, as it's not giving me any information.
Anyone able to help? Please let me know if there is any more information I can give.