Get a list of scheduled tasks running on your exchange servers

This is a handy little check.  If you want to see what scheduled tasks are running on your Exchange 2007 servers try this:

Get-ExchangeServer | foreach-object{$srv=$_.Name.ToString(); write-host “`n`n$srv”; schtasks /s \$srv /query}

Enjoy

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.