Force post clone cleanup scripts on TARGET instanceDescriptionIf for any reason, the post clone cleanup scripts did not execute on the target instance post clone, please use the below script to force it. This will create a scheduled job based on the clone_cleanup_script table.Instructions1. Go to Scripts - Background on the TARGET instance2. Copy Paste the following script and make sure you have the following configurations on the Background scripts form before executing it. Scope ==> GlobalRecord for rollback?==> UncheckedExecute in sandbox?==> UncheckedCancel after 4 hours==> Unchecked var logCleanupJobs = "";var cleanupGr = new GlideRecord("clone_cleanup_script");cleanupGr.query();while (cleanupGr.next()) {var schedule = new ScheduleOnce();schedule.setLabel(cleanupGr.name);schedule.setAsSeconds(60);schedule.script = "gs.log(\"To run schedule job: " + cleanupGr.name + "\", \"New Clone Engine\");" + cleanupGr.script;schedule.schedule();logCleanupJobs += "scheduled: " + cleanupGr.name + "; ";}gs.print("%%logCleanupJobs%%");gs.print(logCleanupJobs);gs.print("%%");