If you want to delete a Job, you can do this programmatically with C#. This sample shows you how to delete the BackupDB Job in the Samples folder.
Example Title |
Copy Code
|
---|---|
// // Get a connection to our JAMS Server // You will probably have to change the node name "localhost" // to the name of your JAMS Server // var server = Server.GetServer("localhost"); // // Delete the BackupDB job in the Samples folder. // Job.Delete(@"\Samples\BackupDB", server); |