Sir, I find your work is unique on internet. There are not too much support available for these type of contents. appreciation for great efforts. There one question what changes are required in micro code according to our organization that you mention?
Many thanks buddy, We need to actually add our organization domain so that when someone tries to enter the meeting ID , it will reach out to our organization domain.
@@TechnicalVenture I am having some default apps like MS Teams , Webex on touch panel and I want to remove the default app(Teams) that has been present since earlier, do you have any suggestions for the same ? (new Teams needs to keep like shown in video but old default UI wanted to remove)
How do you enable camera and microphone if conducting a MS Teams call from a laptop plugged into WEBEX Roomkit Pro? I have the quad camera plugged into CODEC Pro and when conducting MS Teams I hear distant person through speakers, but cannot get cameras or microphone to work.
There are lot of things in this scenario, Do you want to enable camera and microphone on your laptop or you microphone and camera is not working on webex roomkit pro. If it is not working on webex room kit pro then you need to check the physical cables and the connections. if it is not working on your laptop and working on webex room kit pro then you need to check the settings on your laptop. Can you please let me know in little bit more detail about your setup ?
For MS teams button, you can create an xml file yourself as mentioned in the videos. For the script to enable the teams button, you can reach out to me at technicalventure02@gmail.com Sample script - const xapi = require('xapi'); const domain = ".@m.webex.com"; function onGuiTeams(event) { if (event.PanelId == 'teams_start') { xapi.command('UserInterface Message TextInput Display', { FeedbackId: 'teamsStart', InputType: 'Numeric', Text: 'Join the Teams meeting by typing the meeting ID or the full meeting invite.', Placeholder: 'Meeting ID or full meeting invite', SubmitText: 'Join', Title: 'Join a Microsoft Teams Meeting', Duration: 30, }); } } function TeamsMeeting(event) { if (event.FeedbackId == 'teamsStart') { if (event.Text.search("@m.webex.com") == -1) { xapi.command('Dial', { Number: event.Text + domain, }); } else { xapi.command('Dial', { Number: event.Text, }); } } } xapi.event.on('UserInterface Extensions Panel Clicked', onGuiTeams); xapi.event.on('UserInterface Message TextInput Response', Teamsmeeting);
It will actually dial that number which is your meeting ID and the suffix like a whole URI. For Ex - Meeting ID : 1114523654 and lets say suffix would be a@abc.com then the whole thing it would dial is - 1114523654.a@abc.com You need to check the routing as well for your organization how it works for your WebEx because call is actually going through Cisco Webex or room kit.
Hi I am having a Codec Room Kit Plus. Izzit the same as you mention to load the Ms Teams up to the Touch Panel? Where can I download the scripts and the xml files too. By the way do you have video for Zooms intergration also in Webex?
Xml file you can create it easily. For the script, I will send you the sample script here but if you need the exact script you can reach out to me at technicalventure02@gmail.com
I am having some default apps like MS Teams , Webex on touch panel and I want to remove the default app(Teams) that has been present since earlier, do you have any suggestions for the same ? (new Teams needs to keep like shown in video but old default UI wanted to remove)
You can remove it by going into settings page on the endpoint. Settings --> User Interface --> Features --> Call --> Join MicrosoftTeamsDirectGuestJoin --> Change this option from Auto to Hidden. Once you do this, Default teams app will be hidden.
I use macro you upload to create a MsTeams button but it wont work. After entering ms meeting code, it says unable to join meeting. Is there any ms seeting?
That was a sample buddy, You need to make changes on that one according to your organization details, Like you need to add suffix of your domain name which it will add as well after entering the meeting ID.
@@TechnicalVenture please upload a video about kiosk mode. Can we build a auto reception system on cisco desk pro or deskmini without hosting a server? Thanks in advance
I was able to add the MS Teams button and it prompts for the meeting ID, but when I click the JOIN button, it just goes away without launching a meeting. I idea what might be causing this?
That was a sample code, You need to make changes on that one according to your organization details, Like you need to add suffix of your domain name which it will add as well after entering the meeting ID. How these things are configured in your environment, how the call routing works, What is the suffix or regex it is taking.
We CVI integration from 3rd party like poly , when u start the ms team meeting, u will see a meeting id which is integrated with poly CVI , input this id as meeting id . MS teams and webex RK registered to webex is two different cloud ,u need cisco video interop CVI to integrate both of them.
This is the Macro which I used : const xapi = require('xapi'); const domain = ".@m.webex.com"; function onGuiTeams(event) { if (event.PanelId == 'teams_start') { xapi.command('UserInterface Message TextInput Display', { FeedbackId: 'teamsStart', InputType: 'Numeric', Text: 'Join the Teams meeting by typing the meeting ID or the full meeting invite.', Placeholder: 'Meeting ID or full meeting invite', SubmitText: 'Join', Title: 'Join a Microsoft Teams Meeting', Duration: 30, }); } } function TeamsMeeting(event) { if (event.FeedbackId == 'teamsStart') { if (event.Text.search("@m.webex.com") == -1) { xapi.command('Dial', { Number: event.Text + domain, }); } else { xapi.command('Dial', { Number: event.Text, }); } } } xapi.event.on('UserInterface Extensions Panel Clicked', onGuiTeams); xapi.event.on('UserInterface Message TextInput Response', TeamsMeeting);
I have Cisco Webex room codec after i registered to webex user profile I can not login to codec, through web portal (IP ) of the Codec . Could you advise how can I fix this
That means there is some issue with the Macro code which you used. If you are using the one which i used then you need to make changes to this macro code which I used as this was just a demo code.
We need to setup Video Integration with MS teams, You can find that under Services Tab , Click on Hybrid and you will be able to see Video Integration with MS teams. Now Cisco is also rolling out Zoom, Google Meet and MS teams button on their Cisco Webex Device in the new Room OS update.
Sir, I find your work is unique on internet. There are not too much support available for these type of contents. appreciation for great efforts. There one question what changes are required in micro code according to our organization that you mention?
Many thanks buddy, We need to actually add our organization domain so that when someone tries to enter the meeting ID , it will reach out to our organization domain.
@@TechnicalVenture I am having some default apps like MS Teams , Webex on touch panel and I want to remove the default app(Teams) that has been present since earlier, do you have any suggestions for the same ? (new Teams needs to keep like shown in video but old default UI wanted to remove)
How do you enable camera and microphone if conducting a MS Teams call from a laptop plugged into WEBEX Roomkit Pro? I have the quad camera plugged into CODEC Pro and when conducting MS Teams I hear distant person through speakers, but cannot get cameras or microphone to work.
There are lot of things in this scenario, Do you want to enable camera and microphone on your laptop or you microphone and camera is not working on webex roomkit pro. If it is not working on webex room kit pro then you need to check the physical cables and the connections. if it is not working on your laptop and working on webex room kit pro then you need to check the settings on your laptop.
Can you please let me know in little bit more detail about your setup ?
Sir , In this case , will the Teams icon appear also on the OSD screenshot ?
Does this only work on Webex registered devices with Room OS?
or VC devices registered with on-prem
It works on both, On prem as well as cloud registered.
what is the main difference between this MS team button and the option to enable microsoft teams calendar button
how to associate with the MS Teams button and the Macro action?
Hi sir
Are you going to upload ribbon sbc and ms teams videos as well ?
Not sure about Ribbon SBC as of now but I will upload MS teams starting from this Saturday - June 03
hello from Lyon, France
thank's for your video, where i can find the script for button MS Teams in my room 55 tablette ?
For MS teams button, you can create an xml file yourself as mentioned in the videos.
For the script to enable the teams button, you can reach out to me at technicalventure02@gmail.com
Sample script -
const xapi = require('xapi');
const domain = ".@m.webex.com";
function onGuiTeams(event) {
if (event.PanelId == 'teams_start') {
xapi.command('UserInterface Message TextInput Display', {
FeedbackId: 'teamsStart',
InputType: 'Numeric',
Text: 'Join the Teams meeting by typing the meeting ID or the full meeting invite.',
Placeholder: 'Meeting ID or full meeting invite',
SubmitText: 'Join',
Title: 'Join a Microsoft Teams Meeting',
Duration: 30,
});
}
}
function TeamsMeeting(event) {
if (event.FeedbackId == 'teamsStart') {
if (event.Text.search("@m.webex.com") == -1) {
xapi.command('Dial', {
Number: event.Text + domain,
});
}
else {
xapi.command('Dial', {
Number: event.Text,
});
}
}
}
xapi.event.on('UserInterface Extensions Panel Clicked', onGuiTeams);
xapi.event.on('UserInterface Message TextInput Response', Teamsmeeting);
@@TechnicalVenture Hi, this sample script is not working
can you please tell us how ms team schedule meeting integrate with Cisco webx or room kit
It will actually dial that number which is your meeting ID and the suffix like a whole URI.
For Ex -
Meeting ID : 1114523654 and lets say suffix would be a@abc.com then the whole thing it would dial is - 1114523654.a@abc.com
You need to check the routing as well for your organization how it works for your WebEx because call is actually going through Cisco Webex or room kit.
@@TechnicalVenture thanks bro
Hi I am having a Codec Room Kit Plus. Izzit the same as you mention to load the Ms Teams up to the Touch Panel? Where can I download the scripts and the xml files too. By the way do you have video for Zooms intergration also in Webex?
Xml file you can create it easily.
For the script, I will send you the sample script here but if you need the exact script you can reach out to me at technicalventure02@gmail.com
I will create one video for zoom integration in webex
I am having some default apps like MS Teams , Webex on touch panel and I want to remove the default app(Teams) that has been present since earlier, do you have any suggestions for the same ? (new Teams needs to keep like shown in video but old default UI wanted to remove)
You can remove it by going into settings page on the endpoint.
Settings --> User Interface --> Features --> Call --> Join MicrosoftTeamsDirectGuestJoin --> Change this option from Auto to Hidden.
Once you do this, Default teams app will be hidden.
Tanks for everything.
I use macro you upload to create a MsTeams button but it wont work. After entering ms meeting code, it says unable to join meeting. Is there any ms seeting?
That was a sample buddy, You need to make changes on that one according to your organization details, Like you need to add suffix of your domain name which it will add as well after entering the meeting ID.
@@TechnicalVenture always thanks sir
@@TechnicalVenture please upload a video about kiosk mode. Can we build a auto reception system on cisco desk pro or deskmini without hosting a server?
Thanks in advance
I was able to add the MS Teams button and it prompts for the meeting ID, but when I click the JOIN button, it just goes away without launching a meeting. I idea what might be causing this?
That was a sample code, You need to make changes on that one according to your organization details, Like you need to add suffix of your domain name which it will add as well after entering the meeting ID. How these things are configured in your environment, how the call routing works, What is the suffix or regex it is taking.
We CVI integration from 3rd party like poly , when u start the ms team meeting, u will see a meeting id which is integrated with poly CVI , input this id as meeting id . MS teams and webex RK registered to webex is two different cloud ,u need cisco video interop CVI to integrate both of them.
Please share the macro for MS team and zoom CRC
This is the Macro which I used :
const xapi = require('xapi');
const domain = ".@m.webex.com";
function onGuiTeams(event) {
if (event.PanelId == 'teams_start') {
xapi.command('UserInterface Message TextInput Display', {
FeedbackId: 'teamsStart',
InputType: 'Numeric',
Text: 'Join the Teams meeting by typing the meeting ID or the full meeting invite.',
Placeholder: 'Meeting ID or full meeting invite',
SubmitText: 'Join',
Title: 'Join a Microsoft Teams Meeting',
Duration: 30,
});
}
}
function TeamsMeeting(event) {
if (event.FeedbackId == 'teamsStart') {
if (event.Text.search("@m.webex.com") == -1) {
xapi.command('Dial', {
Number: event.Text + domain,
});
}
else {
xapi.command('Dial', {
Number: event.Text,
});
}
}
}
xapi.event.on('UserInterface Extensions Panel Clicked', onGuiTeams);
xapi.event.on('UserInterface Message TextInput Response', TeamsMeeting);
I have Cisco Webex room codec after i registered to webex user profile I can not login to codec, through web portal (IP ) of the Codec . Could you advise how can I fix this
I followed all the proces but still the teams button won't prompt to meeting id and passcode.
That means there is some issue with the Macro code which you used.
If you are using the one which i used then you need to make changes to this macro code which I used as this was just a demo code.
@@TechnicalVenturewhat type of changes Bro
YOu can change the software channel to beta version to see tha MS Teams icon
Hii sir pls upload the MS Teams video
Yes buddy, it will be there on coming saturday - June 3rd
Can I use only Microsoft Teams on Cisco Web without purchasing a Cisco Webex license?
what configuration do we need on cloud (Control hub) or onprem for this to work?
We need to setup Video Integration with MS teams, You can find that under Services Tab , Click on Hybrid and you will be able to see Video Integration with MS teams.
Now Cisco is also rolling out Zoom, Google Meet and MS teams button on their Cisco Webex Device in the new Room OS update.
can I get that dummy code please
Hello sir plz could u share with me javacecript code?
Xapi Peripherals AllowedHosts Hosts : what should we have to put here