copilot
53 TopicsAI-powered intranet solution built on SharePoint - Fresh Intranet - SharePoint Partner Showcase
We are excited to start a new blog post series focused on the different partner offerings around SharePoint in Microsoft 365. In this first post, we focus on Advania’s Fresh Intranet – an AI powered intranet solution built natively on Microsoft SharePoint.2.4KViews3likes0CommentsBring the power of SharePoint page creation into Microsoft 365 Copilot
Today, we’re excited to introduce a new milestone: creating SharePoint pages with AI directly in Microsoft 365 Copilot. It builds on a year of progress that’s transformed Copilot in SharePoint from simple text editing to generating polished pages in seconds.2.9KViews1like4CommentsCopilot readiness and resiliency with Microsoft 365: Ignite 2025 Edition
At Microsoft Ignite 2025 today, we’re excited to announce innovations that empower customers to get ready to deploy Copilot with SharePoint Advanced Management (SAM) capabilities natively in Microsoft 365 Copilot and bring resiliency with Microsoft 365 Backup & Archive. And as customers generate more data than ever, the role of backup and archive becomes increasingly important – enabling resilient recovery at terabyte scale to keep organizations safe, compliant, and operational.2.5KViews2likes0CommentsSharePoint and OneDrive at Microsoft Ignite 2025: What to Expect
Next week Microsoft Ignite 2025 lands in San Francisco’s Moscone Center for the first time! Bringing a wave of innovation that’s reshaping the industry for AI-driven content management, secure collaboration, and seamless digital experiences.1.1KViews1like2CommentsCopilot Studio - Access SharePoint List
Hi There, for a testing prupose, I want to create an agent with Copilot Studio. I want to access SharePoint List via action="Get items" from SharePoint. I selected/entered in "Inputs" section: Site Address = http:// .... List Name = Employee List Top Count = 5000 Filter Query = Dynamically The list has employee information, around 10 columns, and 150 rows. When I submit such "Who is Jasmin?" or any other similar question such "Who is Jasmin Tailor?" Overall: I am searching about existing employee and not existisng in the list, ... I get always this error message: Error Message: The connector 'SharePoint' returned an HTTP error with code 400. Error Code: ConnectorRequestFailure Conversation Id: 3c0377a0-83c1-412b-9d1a-761f8202203a Time (UTC): 2025-04-15T16:49:08.414Z First time I run this agent with this action, I was asked to connect, which worked fine. However I still get this error message. I am the creator of the agent and I am also the owner of this sharepoint list. Any idea, what am I doing wrong? Or can I somewhere check if this "Get itrems" action or other actions are temporarily not working? THANKS ! Regards, Aykut396Views0likes4CommentsCopilot answers in Sharepoint search results?
I would really like to add a copilot AI answer in the Sharepoint search result page, mainly for the intranet hub, to help our users better find answers across the intranet and also make the search bar a more complete search experience. Something we could toggle on and maybe we could point out a specific agent we've created for the intranet. I feel people are quickly starting to expect to have an AI summary in their search. Would also make sense when so many use the search bar i Sharepoint to incorporate it there, instead of having to go to a different place to use Copilot. It would make search easier.49Views0likes0CommentsAI- based Post Sorting
I have developed a Post and Comment module inside SPFx. where i have 3 sharepoint list:- Posts Comments Reaction here is the SPFX, with 2 posts and the first post has 2 comments:- Currently the Posts and their Comments will be shown sorted by the created date , here is the method to show the posts:- async getPostsPage(pageSize: number = 10, afterId?: number) { let url = `${this.siteUrl}/_api/web/lists/getByTitle('SocialPosts')/items` + `?$select=Id,Title,Body,Created,Author/Id,Author/Title,LikeCount,CommentCount` + `&$expand=Author&$orderby=Id desc&$top=${pageSize}`; if (afterId) url += `&$filter=Id lt ${afterId}`; const data = await this.getJson<{ value: any[] }>(url); return data.value.map(v => ({ Id: v.Id, Title: v.Title, Body: v.Body, Created: v.Created, AuthorId: v.Author?.Id, AuthorTitle: v.Author?.Title, LikeCount: v.LikeCount || 0, CommentCount: v.CommentCount || 0 })) as import('../Models/Models').Post[]; } and the comments:- // ---------- Comments ---------- async getComments(postId: number): Promise<Comment[]> { const url = this.commentsUrl() + `?$select=Id,Body,Created,Author/Id,Author/Title,LikeCount,Post/Id,PostId` + `&$expand=Author,Post&$filter=PostId eq ${postId}&$orderby=Created asc`; const data = await this.getJson<{ value: any[] }>(url); return data.value.map((v) => ({ Id: v.Id, Body: v.Body, Created: v.Created, AuthorId: v.Author?.Id, AuthorTitle: v.Author?.Title, LikeCount: v.LikeCount || 0, PostId: v.PostId ?? v.Post?.Id, })); } but the client is asking us if there is a way to order the items using AI algorithm so it show the most relevant posts and comments first? which approach i can follow? to allow order items inside SPFx using AI algorithm instead of Created date?? any advice?35Views0likes0CommentsNew blog: Do We Really Need to Buy More SharePoint Storage?
I’ve published a new blog post exploring a common question: Do we really need to buy more SharePoint storage? In this article, I cover: How SharePoint storage is calculated What counts towards your storage quota Practical strategies to optimise storage before purchasing more When it actually makes sense to buy additional storage 📖 Read the full post here: Do You Really Need More SharePoint Storage? | Optimisation Guide If you’re managing SharePoint Online or Microsoft 365 storage, this guide will help you make informed decisions and avoid unnecessary costs.71Views5likes0Comments