#Powershell to get all the job steps for all the SQL Agent jobs which have ‘backup’ in the name:
get-SqlAgentJob -ServerInstance Whatever | ? name -like “backup” | get-SQLAgentJobStep | select *
#Powershell to get all the job steps for all the SQL Agent jobs which have ‘backup’ in the name:
get-SqlAgentJob -ServerInstance Whatever | ? name -like “backup” | get-SQLAgentJobStep | select *