New Feature in Microsoft Teams: Forwarding Messages to and from Channels

An upcoming Microsoft Teams feature will allow users to forward posts and reply messages to and from channels, enhancing collaboration by reducing limitations on the type of content that can be forwarded.  Change for users: Currently, users cannot forward messages to and from channels. With this new feature, users can select the three-dot More actions menu on any channel post or reply message and choose Forward. In the Forward this message dialog box, users can select any destination chat or channel, with channels now included in the people picker. Admin Impact: This feature will be enabled by default. Admins can control message forwarding for individual teams or at the tenant level using sensitivity labels control data important to the organization. If a sensitivity label is applied, message forwarding will be disabled, blocking users from sharing content outside the channel. The feature will according to the Roadmap ID 469508 be rolling out in January or February 2025.

Don't forget to specify sql instance on install-csdatabase

I was upgrading a Lync 2010 standard edition server to 2013, when I came across a problem with the "Install-CsDatabse" command. The technet article (http://technet.microsoft.com/en-us/library/jj688013.aspx) is pretty good, but it left me with the impression "RTC" was the default database for the command.

I was using the following command:

Install-CsDatabase -CentralManagementDatabase -SqlServerFqdn myserver.domain.com -Verbose

But all I was getting was an error message saying the server\instance was not available:


According to the article, RTC is the default instance, and I made the mistake of beliving RTC was the default instance for the command as well. After reading a couple of logs, trying to make it work, I realized the default instance for the command is DEFAULT, not RTC.

When installing a database on a Standard Edition 2013 server, remember to specify the RTC instance, and save yourself some troubleshooting :).

This command worked like a charm:

Install-CsDatabase -CentralManagementDatabase -SqlServerFqdn myserver.domain.com -SqlInstanceName rtc