December 2015
Intermediate to advanced
760 pages
14h 31m
English
This recipe illustrates how to list SQL Server Jobs using PowerShell.
Do a visual check of your SQL Server Jobs in your instance. You should see the following jobs after you run the script in this recipe:

These are the steps to list SQL Server Jobs:
#import SQL Server module Import-Module SQLPS -DisableNameChecking #replace this with your instance name $instanceName = "localhost" $server = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Server -ArgumentList $instanceName
Add the following script ...
Read now
Unlock full access