- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-13-2015 09:11 AM
Hi All,I am trying to peform System Clone from Sandbox to Dev instance...When I am trying to define Target instance on Source.. getting the error:Destination does not allow clone requests (Typically used by live production instances, a property was set that prevents the instance from being cloned over) So when I try to check in System properties to set to "True"...I could not able to find"All Properties" Module under System Properties..Can one help please.Adv Thanks.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-14-2015 07:28 AM
Try using the method I suggested above by typing sys_properties.list into the type filter text box at the top of the leftnav.
Edit: Here's a link to a wiki article describing this method: Navigating Applications - ServiceNow Wiki
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-13-2015 03:11 AM
I was checking this on cloning demo instances and it is not allowed to update the property.
So I just tried using background script.
1. Take elevated privileges.
2. Type 'Scripts - background' in the filter.
3. Enter below script:
var gr = new GlideRecord('sys_properties');
if(gr.get('sys_id', 'sys id of the property on your instance')){
gr.value = 'true';
gr.update();
}
// Note: Running background script can cause data loss
Thanks
Deepak
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-11-2022 03:57 PM
Thanks, while this let me change the value, i couldnt clone to a dev instance, the final check in the clone setup process prevented it