powershell command to get timmer job last run time:

 Get-SPTimerJob | select Displayname, LastRunTime | Where-Object {$_.displayname -like "* abcdef *"}
*'s help to do a wild card search over all items with this abcdef as a subsitring in them .

Comments

Popular posts from this blog