Join Teams work meetings from Microsoft Teams (free) and vice versa

Microsoft Teams (Free) users can currently join Teams for work (or school) meetings only as guests, which requires them to use a browser and results in a sub-optimal experience. The new feature rolling out will allow these users to join Teams for work (or school) meetings in one click, without being redirected to the browser or asked to fill in their name/surname. They will also be able to continue collaborating with the meeting organizer and other participants via meeting chat after the meeting.  The feature will work in the opposite way as well, so Teams for work (or school) will just as easily be able to join meetings hosted by a Teams Free user with one click. This is associated with Roadmap ID: 167326

Backing up your Lync 2010 Standard edition

When it comes to Lync 2010 Backup and restore, there are a lot of good articles out there to help you one your way. But none of these examples really satisfied my needs.
And as the Lync 2013 Preview has been released, backing up your existing Lync environment before installing the preview is a really smart thing to do.

I am not going to pretend I wrote all of this, as much of it is almost copy/paste from other posts. But I have been tweaking what others have done before me, and added elements I wanted in my script.

I would like to send a great thank you to  Traci Herr, who did most of the job for me over at: http://bit.ly/eGjGrl

In addition to the original script, I have altered the SQL backup to run within the PS script based on this Wiki post: http://bit.ly/ROnG6v So a great thank you to the contributors there is also in order.

Lastly, I have added a send to .zip file and a clean up routine. This way, I have it all in a singe zip file (which can then be backed up by the system file backup), and I will not run out of disk space (You have no idea how much data you might end up with after a few backups)

The script itself can be downloaded here. And will be posted on my script page shortly.

Here are a few things to consider before you run this on your own servers.

  • This script is for a Standard Edition Server (I will look into a Enterprise edition shortly).
  • The script must be run on a server where Lync PS is available, and this must be imported if you are to run this as a scheduled task (See the script for details).
  • If you want to backup your RGS information, you will have to install reskit tools as well (and import the script commands as I do in my script)
  • My script creates a directory C:\lyncbackup\, this may be edited if you like.
  • I have not been able to enumerate the filepath for a local share on a STD Lync server. This must be edited for autpmation (See script for details)
  • Certificates will only be backed up if you allowed for this when requesting and creating certificates.
  • The creation of the zipfile can take a while. The script finishes before the zipfile is finished (If anyone know how to wait for this task before quitting the script, please let me know).
That's all there is to it.

As always, I appreciate feedback or suggestions on improvements.

Comments

Anonymous said…
Hi Lasse, good post.

Tips: to find the UNC path for the fileshare STD or single EE use this command

Get-CsService -FileStore | Select-Object -ExpandProperty UncPath
Thanks Ståle,

I am aware of this particular command. And on my enterprise edt Lync script, I am using something similar to this to connect to the Lync share. However, when I tried this approach to connect to the STD edition (making the server connect to itself), it failed. The only solution I figured out at the time, was using the File path (c:\xxxxxx).

I guess there is a security setting, or right issue when the server tries to map to itself through an unc path.

If you know a way to enumerate the filepath, I would be happy to learn.

Cheers!
Lasse