Erwin Bierens

Knowledge is Power

Get the hell out of Islands Mode

2019-04-18 4 min read Microsoft Teams Erwin Bierens

What’s happening?

More and more organisations are starting explore Microsoft Teams, and in doing this it’s important to understand the interopability options while running in coexistence (Skype for Business Online and Microsoft Teams next to each other).

Like all other vendors, backward compatibility is always difficult ;-) Teams is in this case no exception.

First of all, if your tenant was created before november 2018 you are probally running in Islands mode. You can check this by going to the Teams Admin Portal.

Continue reading

Create Team and Channels with PowerShell

2019-04-12 1 min read Microsoft Teams Powershell Erwin Bierens

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"

Setup Charles Proxy for Microsoft Teams

2019-03-30 2 min read Microsoft Teams Erwin Bierens

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 $)

Continue reading

Microsoft Teams - Live Events

2019-03-26 2 min read Microsoft Teams Erwin Bierens

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.

Continue reading

Remove unknown VM image from ESXi

2019-02-12 1 min read VMWare Erwin Bierens

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.

Continue reading

Audiocodes MediaPack Loses Static IP Address

2019-01-29 1 min read Audiocodes Erwin Bierens

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.

Continue reading

Skype for Business and Microsoft Teams Network Testing

If you want to easy test your network connection to Skype for Business Online and Microsoft Teams server from a GUI perspective?This is possible with a tool created by Korneel Bullens and is located in the Network Planner inside FastTrack. The setup is really easy and the outcome is very clear.

/

Network Testing Companion Installation and Usage Guide

Prerequisites

Installation

Anyone who has administrator rights to the computer can install the Network Testing Companion. The tool is hosted on PowerShell Gallery and can be installed as follows:

Continue reading
Older posts Newer posts