cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
358
Views
0
Helpful
3
Replies

Rerun IPMA wizard

ciscoforum
Level 1
Level 1

Is there a way to remove the configured IPMA and rerun the IPMA wizard. Apparently the server detects the IPMA has been installed even I have removed all the generated stuff. Thanks

1 Accepted Solution

Accepted Solutions

gogasca
Level 10
Level 10

Go to your CCM and search for this file: ipmawmain.asp

Open it with notepad:

We can adapt the ipmawmain.asp file and in the lines of the ASP

it says:

function canInvokeWizard()

{

//Check if wizard is already run once

var scriptSource = "<%=virtualRoot%>_RemoteScripts/rs_ipmawiz.asp"

var co = RSExecute(scriptSource, "isWizardInvokedDB");

if (!rsCallSuccessful(co))

return false;

if ( co.return_value == true )

{

If you change the line to if ( co.return_value == trueE ) then save

it bypasses basically the check and you can rerun the install wizard

Here is a good link to setup IPMA,

http://www.cisco.com/univercd/cc/td/doc/product/voice/c_callmg/3_3/sys_ad/3_

3_2/ccmfeat/fsipma.htm#4

View solution in original post

3 Replies 3

Aaron Harrison
VIP Alumni
VIP Alumni

Not sure how you can reset so the wizard can run but I prefer to set up this myself as you can integrate it with your CSSs etc better than the wizard does and it helps you to understand how the feature works better in the long run...

Aaron Please remember to rate helpful posts to identify useful responses, and mark 'Answered' if appropriate!

gogasca
Level 10
Level 10

Go to your CCM and search for this file: ipmawmain.asp

Open it with notepad:

We can adapt the ipmawmain.asp file and in the lines of the ASP

it says:

function canInvokeWizard()

{

//Check if wizard is already run once

var scriptSource = "<%=virtualRoot%>_RemoteScripts/rs_ipmawiz.asp"

var co = RSExecute(scriptSource, "isWizardInvokedDB");

if (!rsCallSuccessful(co))

return false;

if ( co.return_value == true )

{

If you change the line to if ( co.return_value == trueE ) then save

it bypasses basically the check and you can rerun the install wizard

Here is a good link to setup IPMA,

http://www.cisco.com/univercd/cc/td/doc/product/voice/c_callmg/3_3/sys_ad/3_

3_2/ccmfeat/fsipma.htm#4

Excellent. It works!!