10-07-2015 11:56 AM - edited 03-17-2019 04:30 AM
I have a large 11.x deployment and would like to find a way to bulk enable Conference Now for all users. I cannot find a setting for it in the usual Bulk Admin > Update Users > Query area. Nor can I find any kind of enterprise or service parameter. I really do not want to have to go user by user and enable this for every user and I would like to avoid dealing with a BAT spreadsheet for a couple thousand users.
Anyone found a way yet?
Solved! Go to Solution.
10-07-2015 12:30 PM
I don't think we have a native way to enable that via BAT or the GUI, besides the spreadsheet, and I'm not even sure about that.
You might be able to set this via AXL, or in the DB.
10-07-2015 12:30 PM
I don't think we have a native way to enable that via BAT or the GUI, besides the spreadsheet, and I'm not even sure about that.
You might be able to set this via AXL, or in the DB.
01-20-2017 09:49 AM
Additionally, running any User Update via custom file un-checks the Conference Now box.
So, I updated 293 user PINs, and now have to go back and check 293 conf now boxes.
04-06-2017 03:47 PM
Hello,
Below are the steps for enabling the section "Enable End User to Host Conference Now" using Bulk Administration Tool.
1. Export the users: Go to Cisco Unified CM Administration > Bulk Administration > Users > Export Users > Download the file > Change from ".txt" to ".csv" > Look for "Enable End User to Host Conference Now" > Set to "t" > Save.
Note. You must modify are PIN and Digest Credentials for CUCM to allow you to upload the file without issues. PIN is used for Extension Mobility and Digest Credentials for Phone SIP Authentication.
2. Import modified File: Go to Cisco Unified CM Administration > Bulk Administration > Users > Update Users > Custom File.
This will allow you to modify this section "Enable End User to Host Conference Now" for all users in CUCM using BAT.
Thank you,
Osvaldo Perez
Cisco TAC.
11-26-2017 03:50 AM
This worked for me.
Thanks
01-09-2018 12:06 PM
Hi Osvaldo,
Thanks for this.
When you say "You must modify are PIN and Digest Credential" do you mean the credential policy and default credential policy or simply. Would this require resetting each of the pin's?
Is there a way to have BAT ignore the fields during import? So not to modify the existing pins?
Thanks
Nick
07-30-2018 01:19 PM
Hi Nick,
Did you ever get an answer to this as I have the same question? I would like to enable the feature for all users but do not want to reset their existing PINs.
07-30-2018 03:58 PM - edited 07-30-2018 04:03 PM
Alternatively, you can update this checkbox for users via CLI using the run sql command.
Here's an example of me checking, then setting, then checking again, on my own account.
admin:run sql select userid, enableusertohostconferencenow from enduser where userid in ('user1', 'user2') userid enableusertohostconferencenow ========= ============================= user1 f
user2 f admin:run sql update enduser set enableusertohostconferencenow = 't' where userid in ('user1', 'user2') Rows: 2 admin:run sql select userid, enableusertohostconferencenow from enduser where userid in ('user1', 'user2') userid enableusertohostconferencenow ========= ============================= user1 t
user2 t admin:
If you have a list of user IDs, you simply add them as comma separated strings within the parenthesis.
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