11-07-2016 11:48 AM
Hi team,
My customer plans to migrate to ISE and today they use the UCP feature in ACS to change enable passwords. Will this feature be included in ISE?
Thanks,
Diego
Solved! Go to Solution.
03-22-2017 10:52 AM
OK, I'm past the error after a bit of research, (bug CSCuw29841-using an illegal<or > character in password--which explains the intermittency of the problem) and am ready to try the new script. Where do I find the URL for the My devices portal? Is this the administration -->"My Devices" MENU item's URL (the menu item that takes you to the My Devices Portal(default) and User Password Change Portal? Or is it the url of the My Devices Portal (default)? Thanks!
03-22-2017 10:54 AM
When you open the my devices portal the portal id is part of the URL
03-22-2017 12:47 PM
I actually found the portal id only after clicking "portal test URL". It is portal=0af591e0-0f22-11e7-a828-cc46d6f7a563 I replaced it in the script, but the browser still hangs like before.
03-23-2017 05:31 AM
Hi Julie,
Could you please try to use this script?
<script>
$('#ui_changepwd_submit_button').on('click', function(evt){
sessionStorage.setItem('passwordChanged', true);
});
$(document).on('pageshow', function() {
var error = $('.cisco-ise-errors');
var hasErrors = error.length > 0;
var passwordChanged = sessionStorage.getItem('passwordChanged') == "true";
if (!hasErrors && passwordChanged) {
alert('Password has been changed');
sessionStorage.setItem('passwordChanged', false);
var logoutUrl = $('[href="Logout.action?portal=0af591e0-0f22-11e7-a828-cc46d6f7a563"]').attr('href');
window.location = logoutUrl;
};
});
</script>
It should works only with portal ID, which you told before.
Thanks.
03-23-2017 06:04 AM
To clarify from developer
I inserted customer's portal ID for that script.
I think customer accidentally deleted something like quote and it wont work.
I tested it on different portal, so it should work.
This is one way to Sign out. However I tested a few more ways, but they are not works.
04-05-2017 08:08 AM
This script works! After you get the "password has been changed" message, you get an "error loading page" for about 8 seconds before getting back to the sign on page, but that is a minor thing, and everything else works great. Thank you very much!
03-22-2017 10:37 AM
OK, I'm past the error, (bug CSCuw29841-using an illegal<or > character in password) and am ready to try the new script. Where do I find the URL for the My devices portal? Is this the administration -->"My Devices" MENU item's URL (the menu item that takes you to the My Devices Portal(default) and User Password Change Portal? Or is it the url of the My Devices Portal (default)? Thanks!
08-31-2017 08:06 AM
Maybe something broke this in a recent update. Very well done but I enabled it today and it never moved from "my devices" to change password. So the first script doesn't seem to be working.
08-31-2017 08:40 AM
Did you allow JavaScript In the admin settings?
Sometimes copy paste has issues as well
09-01-2017 12:59 AM
Hi Damon,
I have tested that script today and it works.
Could you please try to use this script with increased delay ?
<script>
$(function(){
setTimeout(function(){
$('.ui-panel-content-wrap').hide();
$('.ui-link-inherit').first().click();
}, 2000);
});
</script>
Thanks.
05-17-2019 09:51 AM - edited 05-17-2019 10:12 AM
Tested this in ISE 2.6 and it does not seem to be working. Posted a new thread for this:
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide