01-29-2005 11:46 AM - edited 03-13-2019 07:50 AM
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
Solved! Go to Solution.
01-30-2005 07:23 PM
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
01-30-2005 06:43 AM
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...
01-30-2005 07:23 PM
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
01-31-2005 01:14 PM
Excellent. It works!!
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