Copilot's AI File Actions Expand from OneDrive to SharePoint soon

If you’ve been using AI file actions in OneDrive, you’ll be pleased to know that the same capabilities are coming to SharePoint document libraries on the web. Starting in September 2025, Microsoft will roll out these features globally, enabled by default for users with a Copilot license.  The new functionality allows users to summarize documents, compare files, generate FAQs, ask questions, and even create audio overview, all without opening the files. These actions will be available through the AI Actions button in the SharePoint toolbar or by hovering over a file. If you’re familiar with the OneDrive experience, you’ll find the interface and capabilities nearly identical, ensuring a smooth transition for users. So, how does this compare to OneDrive? Functionally, it’s the same set of tools, but the key difference is context: OneDrive focuses on personal and shared files, while SharePoint brings these AI capabilities to team and organizational content.  To prepare, inform you...

Live Caption (English) Coming to Teams soon

**Updated with proper commands"
Microsoft is releasing a new feature in Teams called "Live captioning". This enables the end-user to turn on speech to text for their meetings. The message was recently distributed in the O365 Admin portal and is mentioned as roadmap feature 52817,

If you are a user, you need to know this isn't automatically turned on, but yout have to select it from the "call bar".

If you are an admin, you might want to know you can control this feature on a global or per policy basis by the guidelines in the following article at docs.

Through powershell, you can do the following (Teams meetings policies are managed with the SkypeOnlinePowershellModule):
- If you want to disable the option of live captions for Teams meeting attendees, run this command in PowerShell:
Set-CsTeamsMeetingPolicy -Identity "global" -LiveCaptionsEnabledType "Disabled"
- If you want to re-enable the option of live captions for Teams meeting attendees, run this command in PowerShell:
Set-CsTeamsMeetingPolicy -Identity "global" -LiveCaptionsEnabledType "EnabledUserOverride"
- Where PolicyName is any custom policy you may have created. Global would refer to tenant-wide global policy.