Hi @Avyayah ,
We can using T-SQL to backup and restore all user databases automatically at once. Suggest you using the T-SQL from below blogs;
How to Backup All Databases at Once in MS SQL Server
How to Restore Multiple Databases at once in MS SQL Server
> I have the databases that are in full recovery mode as logshipping and simple databases I would like to restore from .bak file where I have multiple backup files.
Did you mean restore all the user databases except the databases that configured log shipping? If so, please do not add the log shipping databases in the restore scripts.
Or you mean databases in simple recovery mode? Suggest you do not set the database in simple recovery mode, in this mode, we can not do a log backup. It can’t restore the databases in point time.
If I misunderstood, please let me know.
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.