Here are three copilot updates coming our way, and this is what to make of them

Changes aimed at streamline workflows: As Microsoft continues to evolve its AI-powered productivity suite, three significant updates are rolling out across Microsoft 365 in June and July 2025. These changes are designed to streamline workflows, enhance research capabilities, and bring generative AI closer to users in their daily apps. Here is my summary of the three updates, and what you might want to be aware of. Access SharePoint agents in the Microsoft 365 Copilot app Some time ago, Microsoft introduced SharePoint Agents. These agents are integrated into the navigation, and users have to navigate to that specific site in order to access the agent. With this upcoming change, these agents can become available directly from the 365 Copilot App along other "recently used" agents list. This change will significantly reduce context-switching for users who rely on these agents for their daily tasks. Expect this rollout at the end of July . Researcher Agent Integrated into Copilot...

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