Knowledge is Power

Priority Notifications in Microsoft Teams


Read more ⟶

Busy on Busy in Teams


What is Busy on Busy?

Busy on Busy will help you handle a call when a user is already in a call or conference, or has a call placed on hold.

New or incoming calls can be rejected with a busy signal or forwarded to voice mail. The Busy on Busy will work across your devices. /

Enable Busy on Busy in the MoPo

Go to the Teams Admin panel Link

Selec the Voice Menu and go to Calling Policies

Read more ⟶

Migration to Hugo Framework


Read more ⟶

Upgrade your Office 365 ProPlus to 64-bit


Why should I upgrade?

Recently Microsoft started to recommend its 64-bit edition of the Office 365 pro plus suite to be installed as the default Office installation.

Office ProPlus and Office 2019 will now be installed with 64-bit as the default setting. Previously, the default setting was 32-bit at installation. This change will begin rolling out in mid-January, 2019.

/

Message from admin center office 365

Office ProPlus and Office 2019 will now be installed with 64-bit as the default setting. Previously, the default setting was 32-bit at installation. This change will begin rolling out in mid-January, 2019.

Read more ⟶

Get the hell out of Islands Mode


Read more ⟶

Create Team and Channels with PowerShell


Create Team and Channels with Powershell

Creating multiple Teams within Microsoft Teams can be a immense process and time-consuming, but you can easily create your Teams with the use of PowerShell. If you dont have installed the Microsoft Teams PowerShell Module follow this link.

/

The Code

    $TeamName = "Contoso"
    $TeamDescription = "Contoso is a fictional company used by Microsoft as an example company and domain."
    $TeamVisability = "Public" #Public or Private
    $TeamOwner = "example@contoso.com"

    Connect-MicrosoftTeams

    $group = New-Team -DisplayName "$TeamName" -Description "$TeamDescription" -AccessType "$TeamVisability"

    Add-TeamUser -GroupId $group.GroupId -User "$TeamOwner" -Role "owner"

    New-TeamChannel -GroupId $group.GroupId -DisplayName "Sales"
    New-TeamChannel -GroupId $group.GroupId -DisplayName "Marketing"
    New-TeamChannel -GroupId $group.GroupId -DisplayName "Security"
Read more ⟶

Setup Charles Proxy for Microsoft Teams


What is Charles Proxy

Charles is an HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP and SSL / HTTPS traffic between their machine and the Internet. This includes requests, responses and the HTTP headers (which contain the cookies and caching information).

Install Charles Proxy

You can download the latest version from charlesproxy.com For a full version you will need to buy a license. (It’s worth the $)

Read more ⟶

Microsoft Teams - Live Events


Live Events

With Microsoft Teams live events, users in your organization can broadcast video and meeting content to large online audiences.

Teams delivers chat-based collaboration, calling, meetings, and with live events, so you can expand the audience of your meetings. Teams live events is an extension of Teams meetings, enabling users to broadcast video and meeting content to a large online audience. These are meant for one-to-many communications where the host of the event is leading the interactions and audience participation is primarily to view the content shared by host. The attendees can watch the live or recorded event in Yammer, Teams, and/or Microsoft Stream, and can interact with the presenters using moderated Q & A or a Yammer conversation.

Read more ⟶

Remove unknown VM image from ESXi


I’m running a standalone ESXi 6.7.x, during the import of a VM via the web client I cancelled the operation, I now have this entry in the web client that point to a vmx file that doesn’t exists anymore.

Problem

In the list of virtual machines in the web client I have, as virtual machine name, the path of the vm that doen’t exists and in Status field you will see the “Unknown” value.

Read more ⟶

Audiocodes MediaPack Loses Static IP Address


By default the Audiocodes MediaPacks, sent out a BootP request during a cold start of the device. If you have a enterprise DHCP server active in the network this will probaly respond (undesired) to this request and will give you a DHCP release from the DHCP pool. This way the MediaPack will receive a new IP address from the DHCP pool everytime it will have a cold start.

The setting ‘BootPSelectiveEnable = 1’ enables the device’s integral BootP client to filter unsolicited BootP/DHCP replies and accepts only BootP replies that contain the text ‘AUDC’ in the vendor specific information field of the request.

Read more ⟶