If you clone a sql server, any existing jobs, dts will get clonned with the server, but you will not be able to manage them. this data is contained in the msdb database.
You will get the following error when trying to manage this data;
Error 14274: Cannot add, update, or delete a job (or its steps or schedules) that originated from an MSX server. The job was not saved.
msft article 281642 recommends you rename the server back to the orginal name, export the jobs to scripts and re-import them.
A simpler solution is to run a sql update script to change the orginating server name to the new server.;
UPDATE [msdb].[dbo].[sysjobs]
SET [originating_server]=''
WHERE [originating_server]=''
you can also find other server name references in the msdb database |