- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2024 01:00 AM
Hello,
We are cloning our PRD down to sandbox environment. However, after we do that we always have a login problem due to the fact that MFA is active on PRD but sandbox only allows for local login.
Does anyone have a post-clone script to deactivate the MFA after cloning?
Thanks!
Best,
Firat
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2024 01:23 AM
Hi there,
Is this about the out-of-the-box ServiceNow MFA? If so, you could create a very basic script applying gs.setProperty('glide.authenticate.multisso.enabled', false);
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2024 01:23 AM
Hi there,
Is this about the out-of-the-box ServiceNow MFA? If so, you could create a very basic script applying gs.setProperty('glide.authenticate.multisso.enabled', false);
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2024 01:25 AM
(function() {
gs.setProperty('glide.authenticate.multisso.enabled', false);
})();
That's all.
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field