Get-DbaAgentJob -sqlinstance $sqlinstance |
? nextrundate -lt $(get-date).addminutes(15) |
? nextrundate -gt $(get-date) |
select name, nextrundate

#Powershell to show what #sqlserver agent jobs are running in the next 15 minutes, using the #dbatools module