education
496 TopicsJoin us for a professional development session on the new AI-powered Teach module in M365 Copilot
Join us on Wednesday, November 19th, 2025, for an in-depth professional development webinar on the new AI-powered "Teach" module in M365 that is fully rolled out and available to everyone. This will be a 45-minute hands-on webinar where the Product Management team will walk through the new updates in detail and you can follow-along at home with your own M365 Education account! This webinar will be available at both 8:00am Pacific Time and 4:00pm Pacific time to cover as many global time zones as possible around the world. And don’t worry – we’ll be recording these and posting on our Microsoft Education YouTube channel so you’ll always to able to watch later or share with others! Here is our training agenda for the webinar 👇 How to use the new AI-powered "Teach" module in M365. Includes: ✅ Lesson plans ✅ Copilot Quizzes ✅ Standards integration ✅ Learning Activities ✅ Differentiate reading materials ✅ Teams EDU integration and Classwork ✅ First look at OneNote EDU and Teach Module integration We look forward to having you attend the event! How to sign up OPTION 1: November 19th, Wednesday @ 8:00am Pacific Time Register here OPTION 2: November 19th, Wednesday @ 4:00pm Pacific Time Register here We look forward to seeing you! Mike Tholfsen Group Product Manager Microsoft Education30Views0likes0CommentsStep-by-Step: Setting Up GitHub Student and GitHub Copilot as an Authenticated Student Developer
To become an authenticated GitHub Student Developer, follow these steps: create a GitHub account, verify student status through a school email or contact GitHub support, sign up for the student developer pack, connect to Copilot and activate the GitHub Student Developer Pack benefits. The GitHub Student Developer Pack offers 100s of free software offers and other benefits such as Azure credit, Codespaces, a student gallery, campus experts program, and a learning lab. Copilot provides autocomplete-style suggestions from AI as you code. Visual Studio Marketplace also offers GitHub Copilot Labs, a companion extension with experimental features, and GitHub Copilot for autocomplete-style suggestions. Setting up your GitHub Student and GitHub Copilot as an authenticated Github Student Developer399KViews14likes16CommentsCalling all IT Admins - webinar on configuring Microsoft 365 Copilot Chat and new updates for 13+
Calling all IT admins — join us for a workshop where we’ll walk through how to configure Microsoft 365 Copilot Chat, from your tenant all the way to the end-user experience. We’ll cover the latest features now available — including the new 13+ student configuration options, CSV, SDS and Powershell uploads, Copilot agents & extensibility, and updated licensing & security controls. By the end, you’ll be able to confidently deploy, manage, and optimize Copilot Chat in your environment so your users can safely harness AI productivity from day one. This webinar will be led by Bill Sluss and Jethro Seghers, Principal Product Managers from the Microsoft Education team When: Wednesday, October 29th @ 8am Pacific Time Register: https://msit.events.teams.microsoft.com/event/7b0cfbc2-e169-461b-9ea2-48effc009d4c@72f988bf-86f1-41af-91ab-2d7cd011db471.5KViews1like1CommentPhi-4: Small Language Models That Pack a Punch
What Are Small Language Models, and Why Should You Care? If you've been following AI development, you can probably recall "bigger is better" being the mantra for years. GPT-3.5 was 175 billion parameters, GPT-4 is even larger, and everyone seemed to be in an arms race to build the biggest model possible. But here's the thing: bigger models are expensive to run, slow to respond, and often overkill for what you actually need. Small Language Models (SLMs) flip this script. These are models with fewer parameters (typically 1-15 billion) that are trained really thoughtfully on high-quality data. The outcome of this is models that can run on your laptop, respond instantly, and still handle complex reasoning tasks. You can extrapolate from this, increased speed, privacy, and cost-effectiveness. Microsoft's been exploring this space for a while. It started with Phi-1, which showed that small models trained on carefully curated "textbook-like" data could punch way above their weight class. Then came Phi-2 and Phi-3, each iteration getting better at reasoning and problem-solving. Now we have Phi-4, and it's honestly impressive. At 14 billion parameters, it outperforms models that are 5 times its size on math and reasoning tasks. Microsoft trained it on 9.8 trillion tokens over three weeks, using a mix of synthetic data (generated by larger models like GPT-4o) and high-quality web content. The key innovation isn't just throwing more data at it but they were incredibly selective about what to include, focusing on teaching reasoning patterns rather than memorizing facts. The Phi family has also expanded recently. There's Phi-4-mini at 3.8 billion parameters for even lighter deployments, and Phi-4-multimodal at 5.6 billion parameters that can handle text, images, and audio all at once. Pretty cool if you're building something that needs to understand screenshots or transcribe audio. How Well Does It Actually Perform? Let's talk numbers, because that's where Phi-4 really shines. On MMLU (a broad test of knowledge across 57 subjects), Phi-4 scores 84.8%. That's better than Phi-3's 77.9% and competitive with models like GPT-4o-mini. On MATH (competition-level math problems), it hits 56.1%, which is significantly higher than Phi-3's 42.5%. For code generation on HumanEval, it achieves 82.6%. Model Parameters MMLU MATH HumanEval Phi-3-medium 14B 77.9% 42.5% 62.5% Phi-4 14B 84.8% 56.1% 82.6% Llama 3.3 70B 86.0% ~51% ~73% GPT-4o-mini Unknown ~82% 52.2% 87.2% Microsoft tested Phi-4 on the November 2024 AMC-10 and AMC-12 math competitions. These are tests that over 150,000 high school students take each year, and the questions appeared after all of Phi-4's training data was collected. Phi-4 beat not just similar-sized models, but also much larger ones. That suggests it's actually learned to reason, not just memorize benchmark answers. The model also does well on GPQA (graduate-level science questions) and even outperforms its teacher model GPT-4o on certain reasoning tasks. That's pretty remarkable for a 14 billion parameter model. If you're wondering about practical performance, Phi-4 runs about 2-4x faster than comparable larger models and uses significantly less memory. You can run it on a single GPU or even on newer AI-capable laptops with NPUs. That makes it practical for real-time applications where latency matters. Try Phi-4 Yourself You can start experimenting with Phi-4 right now without any complicated setup. Azure AI Foundry Microsoft's Azure AI Foundry is probably the quickest way to get started. Once you're logged in: Go to the Model Catalog and search for "Phi-4" Click "Use this Model" Select an active subscription in the subsequent pop-up and confirm Deploy and start chatting or testing prompts The playground lets you adjust parameters like temperature and see how the model responds. You can test it on math problems, coding questions, or reasoning tasks without writing any code. There's also a code view that shows you how to integrate it into your own applications. Hugging Face (for open-source enthusiasts) If you prefer to work with open-source tools, the model weights are available on Hugging Face. You can run it locally or use their hosted inference API: # Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="microsoft/phi-4") messages = [ {"role": "user", "content": "What's the derivative of x²?"}, ] pipe(messages) Other Options The Phi Cookbook on GitHub has tons of examples for different use cases like RAG (retrieval-augmented generation), function calling, and multimodal inputs. If you want to run it locally with minimal setup, you can use Ollama (ollama pull phi-4) or LM Studio, which provides a nice GUI. The Azure AI Foundry Labs also has experimental features where you can test Phi-4-multimodal with audio and image inputs. What's Next? Phi-4 is surprisingly capable for its size, and it's practical enough to run almost anywhere. Whether you're building a chatbot, working on educational software, or just experimenting with AI, it's worth checking out. We might explore local deployment in more detail later, including how to build multi-agent systems where several SLMs work together, and maybe even look at fine-tuning Phi-4 for specific tasks. But for now, give it a try and see what you can build with it. The model weights are MIT licensed, so you're free to use them commercially. Microsoft's made it pretty easy to get started, so there's really no reason not to experiment. Resources: Azure AI Foundry Phi-4 on Hugging Face Phi Cookbook Phi-4 Technical Report233Views0likes0CommentsMicrosoft 365 Copilot Chat for Students 13+
With Microsoft 365 Copilot Chat coming to students aged 13 and older this summer, we’re ushering in a new era of AI-assisted learning while maintaining a strong focus on privacy, security, and keeping administrators in control. This blog post is your admin-ready guide to ensure your organization is set up to deliver safe, compliant, and productive experiences with Copilot Chat. Learn more and hear from K-12 institutions who participated in our private preview in today’s announcement: Empowering teen students to achieve more with Copilot Chat and Microsoft 365 Copilot Copilot Chat is an AI-powered assistant, offered with Microsoft 365, that helps users find answers, generate insights, and complete tasks—drawing from web-based content and, publicly available information, and limited user file uploads. Unlike Microsoft 365 Copilot, it does not have access to organizational data like emails, documents, or meetings through the Microsoft Graph. This version is ideal for institutions who are looking for a free AI chat solution while maintaining a strict boundary from internal or sensitive data sources. Review an overview of AI solutions from Microsoft Education: aka.ms/EducationAIPortfolio 🏷️ Tenant Identifier: Set the Education Segment for Proper Feature Access We recommend all Education customers take additional steps to manage appropriate deployment: Validate your school type as Higher education, Primary/Secondary/K-12, or Other (research institution, academic library, etc.) to help us tailor the search and chat experience for your users. To do this, you will need a PowerShell script: ConfigureTenantEduType.ps1 that you can download here. To run the script, open PowerShell in administrator mode. Also make sure you have the username and password available of a global administrator on your tenant. On your first run, the necessary packages will be installed, hence the administrator mode. Usage: .\ConfigureTenantEduType.ps1 - When no parameter is used the actual setting of the tenant will be retrieved. .\ConfigureTenantEduType.ps1 1 - This sets the tenant identifier to K-12 .\ConfigureTenantEduType.ps1 2 - This sets the tenant identifier to HED. .\ConfigureTenantEduType.ps1 3 - This sets the tenant identifier to other. 📘 Please read our Managing Copilot Chat access for Faculty and Higher Education 18+ student | Microsoft Community Hub for full details. ✅ Why AgeGroup Matters—and How to Set It To enable Microsoft 365 Copilot Chat for students, the ageGroup attribute in Entra ID (formerly Azure AD) must be set correctly. This field ensures compliance with child privacy regulations like COPPA and FERPA by verifying whether a user is under 18. Here’s how to check and set it: Use Microsoft Graph API or Microsoft Entra Admin Center to view and update the ageGroup attribute. Acceptable values: Minor, NotAdult, Adult For students aged 13 and up, use NotAdult. Any student set to NotAdult will have access to Microsoft 365 Copilot Chat. Use bulk update tools or provisioning solutions to automate setting this for all student accounts. 📘 Please read our AgeGroup blog post for full details. 🛠️ Managing Agents in Microsoft 365 Admin Center Copilot now supports agent-based AI experiences that can be scoped, customized, and secured. With the Microsoft 365 admin center, you can: Enable/disable Copilot features for specific user groups Manage access to custom Copilot agents Use the Copilot Control System to monitor usage and enforce security policies from day one To learn more, check out the Manage agents for Microsoft 365 Copilot in Integrated Apps - Microsoft 365 admin | Microsoft Learn and leverage the Agent Success Kit – Microsoft Adoption 🔐 Security and Data Protection You Can Trust Copilot Chat brings the same enterprise-grade security and compliance protections you've come to expect from Microsoft 365. As a part of this enterprise data protection your data stays private (we won’t use your data except as you instruct) and your data isn’t used to train foundation models. Learn more about enterprise data protection. Highlights include: Built-in data residency and encryption Access controls and permission-based data retrieval Protection from prompt injection and harmful content Advanced reporting on readiness, usage, and security posture One important consideration: Copilot does not change or override your existing permissions model. It respects the access a user already has in Microsoft 365—whether that’s to files, emails, chats, or other content. However, this also means that if a document is overshared or accessible more broadly than intended, Copilot may surface its content to anyone with permission to see it. Access to the content is not caused by Copilot—it’s visibility and access that already exists in your tenant. Copilot simply makes that visibility more transparent. Admins should review and remediate over-permissioned content using tools like Microsoft Purview, SharePoint access reviews, or sensitivity labels to avoid unintended exposure of sensitive data. Administrators can go further by using features like SharePoint Advanced Management, sensitivity labels, and Restricted SharePoint Search. 🔍 Next Steps 🏷️ Set your tenant’s education segment (K-12/HED/Other) ✅ Audit and update ageGroup attributes. 🛠️ Configure Microsoft 365 Admin Center to have the right settings for Agents creation and consumption. 🔐 Review your security and data protection settings for Copilot. ⚙️ Explore the Microsoft 365 Copilot technical readiness guide. Microsoft 365 Copilot Chat – Microsoft Adoption With these steps, you’re not just enabling Copilot—you’re empowering safer, smarter learning with AI.15KViews2likes8CommentsAI-powered teaching and learning for all Microsoft 365 education customers
Welcome to our monthly update for Microsoft Education and thank you so much for being part of our growing community! In our main Microsoft Education blog this morning, we announced the details of how Microsoft Education is bringing even more value to all EDU customers with Microsoft 365, including a new set of capabilities designed for relevant and powerful use by educators and students. These features will be included in all of the academic SKUs (A SKUs) at no additional cost, and many will be rolling out starting today, while others will be rolling out later this year and into early next year. Topics: AI for educators at no additional cost AI for learners at no additional cost Microsoft 365 Copilot Chat Microsoft 365 LTI (LMS integration updates) Microsoft 365 Copilot (add-on required) Learning Accelerator updates Learning Zone on the Copilot+ PC – public preview now available Minecraft EU updates We’re also introducing an academic offering for Microsoft 365 Copilot in education at $18 (USD) per user per month for educators, staff, and students ages 13 and older starting in December 2025. 1. AI for Educators at no additional cost Teach in the Microsoft 365 Copilot App We recently introduced the updated Microsoft 365 Copilot app, your hub for the latest AI functionality. Now, we are bringing AI-powered features to all educators with Teach in the Microsoft 365 Copilot app. In one place, educators can easily create lesson plans, draft materials like quizzes and rubrics, and quickly make modifications like adjust reading levels, differentiate instructions, and align to relevant standards. As we continue to add more AI value in education, it will surface in the Teach module. Teach is your one stop shop for creating and adapting education content in a guided interface, designed for Education institutions. Teaching capabilities can assist you in drafting the best content for your class, including lesson plans, rubrics, learning activities and more! Guided: Create and adapt content in guided interfaces, reducing the need for advanced prompting techniques, while still giving you full control. Grounded: Leverage Education standards from 35 countries, your own content, and your class details to ground and create content relevant to your class. Available where you are: In the Microsoft 365 Copilot App on Web, Windows or Mac. When: Rolling out now with support for Lesson Plans, Rubrics, and Flashcards. Coming Soon: Support for Quizzes, Minecraft Lessons, Fill in the Blank activities, and modifying existing content. Learn more about Teach in the Microsoft 365 Copilot App here. Curriculum planning Curriculum planning tools in Teach empowers educators to design, organize, and adapt instructional materials with ease. By leveraging AI-powered tools, teachers can create lesson plans, activities, and assessments that align with educational standards and meet the diverse needs of their students. Whether starting from scratch or refining existing resources, curriculum planning provides a guided, flexible approach to support effective teaching and learning. Lesson plans with standard support Easily build standards-aligned lesson plans from a selection of over 35 countries. Educators can choose subject, grade level, language, relevant content and context, standards, and duration to tailor each lesson plan to their classroom needs. The platform enables ongoing editing and refinement—adjust the tone, length, or language, and receive further suggestions to ensure every lesson plan is effective and engaging. When: Lesson plans rolling out now Homework & Assessments Homework & Assessments tools in Teach help streamline homework and assessment creation for educators. With Rubrics and Quiz creation, teachers can easily build standards-aligned rubrics and quizzes, customize criteria and questions, and refine content to fit classroom needs. These tools support ongoing editing and suggestions, helping educators deliver clear, effective assessments that align with learning goals and standards. Rubrics with standards support Effortlessly create rubrics aligned to global standards from over 35 countries. Educators can select relevant criteria, customize performance levels, and ensure each rubric matches their subject, grade, and instructional goals. The platform supports ongoing editing—adjust the language, tone, or detail, and receive further suggestions to refine your rubric for clarity and effectiveness. Standards integration helps educators provide consistent, high-quality feedback and assessment for every student. When: Rubrics rolling out now Quiz creation with standards Create standards-aligned quizzes quickly with Quiz creation, powered by Forms. Start by selecting your subject, grade level, language, and relevant standards. Add a description, set the desired number of questions and quiz duration, and generate a draft. All editing and adjustments are done directly in Forms, where you can refine questions and further tailor the quiz to your students’ needs. When: Preview in November, 2025 Modify content Modify content tools are designed to help educators quickly adapt existing materials, rather than create new content from scratch. Whether you have resources from previous years, colleagues, or online sources, this feature streamlines the process of updating and customizing materials for your current needs. Align to standards Align to standards takes your input—whether it’s a lesson idea, instructions, or other classroom materials—and adapts the content to align with the standards you choose. This tool streamlines the process of meeting curriculum requirements by automatically tweaking your materials, ensuring they match the specific standards relevant to your subject and grade level. When: Preview in November, 2025 Modify reading level Quickly adjust the reading level of any text to meet the needs of individual students or your entire class. Simply insert your text or upload a file, then choose the desired reading level. You can also select key terms to preserve, ensuring important vocabulary remains unchanged while the rest of the content is adapted for accessibility and understanding. When: Preview in November, 2025 Differentiate instructions Differentiate instructions empowers educators to tailor learning experiences for diverse student needs. Easily adapt assignments, instructions, or activities to provide multiple pathways for understanding and engagement. Whether you’re supporting individual learners or groups, this tool helps you modify content, adjust complexity, and personalize directions—ensuring every student receives the right level of challenge and support. When: Preview in November, 2025 Expand with examples Enrich your materials by adding a chosen number of real world, historical, or scientific examples—tailored to support and clarify learning for every student. When: Preview in November, 2025 AI in Classwork and Class Notebook AI teaching tools are also coming to Classwork in Microsoft Teams and OneNote Class Notebook, providing easy ways to create content and share with students all in one place. Starting with lesson plans and flashcards in Teams today, and other features from Teach coming later to Teams and Class Notebook. When: Lesson plans and flashcards available now in Classwork and coming soon to OneNote Class Notebook. Suggested AI feedback for Educators Suggested AI feedback is a new feature that makes it easier for you when you want to provide feedback to students as part of your Assignments flow. Use the Feedback field as a scratchpad as you review the student work, and have AI help enhance and summarize it for you. Or, if you are using rubrics, you can have AI review your rubric selection and summarize it. This feature always uses your input as the basis of the suggested summarized feedback, and you will always need to confirm the suggested update and add potential edits, before returning to the student. When: Available now Set expected AI use in Assignments Set expected AI use in Assignments helps educators clearly communicate guidelines and recommendations for how students should use AI tools when completing assignments. Teachers can outline best practices and expectations, helping students understand appropriate and effective ways to leverage AI in their work. This feature encourages thoughtful, responsible use of AI to support learning. When: Preview Q1 2026 2. AI for learners at no additional cost Study and Learn Agent Bring the interactive, conversational Study and Learn Agent in the Microsoft 365 Copilot App to your students. Study and Learn helps learners understand concepts, practice skills with activities like flashcards, and prepare for tests with study guides and quizzes. Additional activities including fill-in-the-blanks, matching, and others that will continue to be added. Purpose-built for learning in collaboration with learning science experts, Study and Learn aims to help foster reflective and critical thinking. Over time, it will provide a more personalized, adaptive, inclusive experience to make learning relevant and bolster motivation. When: Preview fall 2025 Learning activities We’re excited to share that Learning Activities are now generally available for all educators and students 13+! Learning activities is a new Microsoft Education experience designed to help educators and students transform passive content into active learning. With just a few clicks, educators and students can now create engaging practice activities like flashcards directly from existing learning content. Our first learning activity will be AI generated flashcards in Teach and Classwork. We will also be launching a stand-alone web app for educators and students to create activities. We are hard at work building more learning activities that will be coming soon including fill-in-the-blanks, mind maps, and matching. When: Summer 2025 3. Microsoft 365 Copilot Chat Available for students 13+ Recently, we announced teen student availability coming this summer for Copilot Chat and Microsoft 365 Copilot and now it is at general availability. To prepare, administrators should review guidance to enable Copilot Chat for students and ensure appropriate access: Enable Copilot Chat access for students Copilot Chat is included with Microsoft 365 at no additional cost and offers secure AI chat powered by GPT-5 with the ability to maintain IT control through enterprise data protection and management. It also includes features like file upload, image generation, Copilot Pages, and agents. Copilot Chat now in Word, Excel, PowerPoint, Outlook and OneNote In addition, Microsoft recently announced that Copilot Chat is available in many of your favorite Office apps such as Word, Excel, PowerPoint, OneNote and Outlook. This is available today for all Microsoft 365 subscribers in Education. 4. Create with AI in Microsoft365 LTI® for Learning Management Systems A new, streamlined learning management system experience for Microsoft Education The new Microsoft 365 LTI brings Microsoft 365 for Education capabilities for learning management systems (like Canvas, PowerSchool Schoology, Blackboard, Moodle, D2L Brightspace) together into a single tool and streamlined user experience. Educators will be able to Create with AI, which makes features from Teach accessible in Learning Management Systems. This will include Lesson plans, Minecraft lessons, modifying content, rubric and instructions generation, suggested feedback, quiz creation, and more. Microsoft 365 LTI also provides seamless access to Learning Accelerators, Reflect, OneDrive, Teams, and our Microsoft 365 for Education tools directly into your LMS course, without having to deploy multiple tools, and without overcrowding the menus where LTI tools are accessed. Whether adding content to a course, creating an assignment, or scheduling an online meeting for a class, you can easily access Microsoft 365 directly in your LMS workflow. When: Create with AI – preview in early 2026 LTI® is a trademark of the 1EdTech® Consortium, Inc. (1edtech.org) 5. Microsoft 365 Copilot (add-on required) We’re excited to introduce an academic offering for Microsoft 365 Copilot in education at $18 (USD) per user per month for educators, staff, and students ages 13 and older starting in December 2025. Deeply integrated into apps used every day, Microsoft 365 Copilot combines the power of AI with your data – documents, presentations, emails, meetings, chats, institutional knowledge, and more – plus the web to deliver relevant responses with sources. It also delivers cutting-edge capabilities like comprehensive agent access including Researcher and Analyst, Copilot Tuning for increased customization, and the Copilot Control System to protect institutional data. Study guide in Copilot Notebooks Copilot Notebooks in Microsoft 365 Copilot is your AI-powered workspace to stay focused on what matters most. Bring together Copilot chats, Microsoft 365 files, OneNote pages, meeting notes, and links—all in one place. Listen to an audio overview hosted by two voices. Ask questions and Copilot will analyze your notebook content, surface insights, and help you draft new content. Copilot Notebooks available now at microsoft365.com/copilot. (A Microsoft 365 Copilot license is required.) Coming to preview in Fall 2025, the new study guide feature will help learners turn scattered materials into an organized study space. Upload notes, lecture slides, handouts, and links to generate a custom guide with engaging activities, quizzes, and topic deep dives. Summary and topic pages include explanations, worked examples, and questions that help learners understand, think and apply their learning. With flashcards, quizes, and fill-in-the-blanks, learning becomes active and personalized – for college, K-12, and adults learners alike. Copilot Notebooks are available inside OneNote alongside all the rest of your classic Notebooks to keep everything together and easy to find. When: Copilot Notebooks available now, Study Guide preview November 2025 6. Learning Accelerator updates AI Transcript Feedback in Speaker Progress is now GA! We are excited to share our new narrative AI feedback feature in Speaker Progress is now fully rolled out to all users! We are bringing generative AI to Speaker Progress to give students robust feedback on their speeches. Educators can choose to enable AI feedback, select a speech type, and evaluation criteria. Student speeches will then receive summary feedback and in line comments to help them improve the content and qualitative aspects of their presentations. The educator is fully in control and must review AI Feedback before it is shared with students. When: Available Now! 7. Microsoft Learning Zone enters public preview Earlier this year, we introduced Microsoft Learning Zone, a new app built for Copilot+ PCs to help educators create interactive, personalized lessons in minutes. Now available in public preview, the app combines research-informed tools and trusted on-device AI to help educators save time, engage students, and keep content and data secure. We are grateful to the educators, researchers, and partners who have helped shape the experience so far. In the months ahead, we will continue to expand Learning Zone with new features, rich content partnerships, and deeper integration into classroom workflows. When: Learning Zone is now in public preview. If your school is planning to explore Learning Zone, please note that an IT administrator must enable the app before it can be used. View instructions here. 8. Minecraft Education’s AI Foundations curriculum Crack the case of AI misuse as a rookie detective Join Detective Reed Smart to investigate curious cases of AI misuse in this mystery from Minecraft Education! Analyze deepfakes, spot AI-generated content, and learn how AI works as you follow clues and analyze evidence across three cases. Build AI and information literacy skills that will help you get wise and stay cautious of online information. Ready to crack the case? Full video here: https://www.youtube.com/embed/_JuQXY6UZ2Q?si=fvHbLiX3nLcOE5mA Join this hands-on training designed to empower educators to teach AI literacy using Minecraft Education’s AI Foundations curriculum and Microsoft Copilot. Through interactive demos and ready-to-use resources, you’ll explore how to make AI concepts engaging and accessible for students—no prior experience with AI or Minecraft required! Minecraft Education Crack the case of AI misuse as a rookie detective ________ And finally, just to recap all the news we have for you this month, here’s a quick review of all the features that are generally available or are rolling out now: AI for educators at no additional cost Teach in the Microsoft 365 Copilot App Classwork integration AI Feedback Standards integration Learning Activities AI for learners at no additional cost Study and Learn Agent Learning Activities Microsoft 365 Copilot Chat Now available for teens (13+) Now available in Word, Excel, PowerPoint, Outlook and OneNote Microsoft 365 LTI (LMS integration updates) Create with AI Microsoft 365 Copilot (add-on required) Study guide in Copilot Notebooks Learning Accelerator updates Speaker Progress Narrative AI feedback Learning Zone on the Copilot+ PC – public preview now available Minecraft Education's AI Fundations Curriculum Mike Tholfsen Group Product Manager Microsoft Education8KViews3likes7CommentsWhat's New in Microsoft EDU - October 2025 (AI for all edition)
Join us on Wednesday, October 22nd, 2025 for our latest "What's New in Microsoft EDU" webinar! This will be a special one where we go into depth about all of the AI powered tools for educators and students who use Microsoft 365 in Education that we just announced. These 30-minute webinars are put on by the Microsoft Education Product Management group and happen once per month, this month both 8:00am Pacific Time and 4:00pm Pacific time to cover as many global time zones as possible around the world. And don’t worry – we’ll be recording these and posting on our Microsoft Education YouTube channel in the new “What’s New in Microsoft EDU” playlist, so you’ll always to able to watch later or share with others! Here is our October 2025 webinar agenda: M365 Copilot and AI updates for Educators and Students Learning Zone public preview and the Copilot+ PC Microsoft 365 LTI for Learning Management Systems AMA - Ask Microsoft EDU Anything (Q&A) We look forward to having you attend the event! How to sign up OPTION 1: October 22nd, Wednesday @ 8:00am Pacific Time Register here OPTION 2: October 22nd, Wednesday @ 4:00pm Pacific Time Register here This is what the webinar portal will look like when you register: We look forward to seeing you there! Mike Tholfsen Group Product Manager Microsoft Education1.9KViews1like0CommentsWhat's the difference between School Data Sync (Plan 1) and School Data Sync (Plan 2)?
https://docs.microsoft.com/en-us/schooldatasync/create-users-for-k12-and-hed#prerequisites-for-sds mentions among the "perquisites to enable SDS for user creation" are School Data Sync (Plan 1) or School Data Sync (Plan 2). Microsoft Partners have access to documents that explain Office 365 Education Plan A1 includes School Data Sync (Plan 1) while both Microsoft 365 and Office 365 Education Plan A3 and A5 include School Data Sync (Plan 2). However, I can't find any details about the differences between the SDS plans on: https://www.microsoft.com/en-us/microsoft-365/academic/compare-office-365-education-plans https://docs.microsoft.com/en-us/office365/servicedescriptions/office-365-platform-service-description/office-365-education, which doesn't even mention SDS https://docs.microsoft.com/en-us/office365/servicedescriptions/office-365-platform-service-description/microsoft-365-education https://www.microsoft.com/en-us/education/buy-license/microsoft365/ [EDIT] https://www.microsoft.com/en-gb/licensing/product-licensing/microsoft-365-enterprise?activetab=m365-enterprise:primaryr7 mentions "School Data Sync Plan 2 (plan details can be found https://docs.microsoft.com/en-us/schooldatasync/)" - but there are no details about the plan there Does anyone know what the distinction is between School Data Sync (Plan 1) and School Data Sync (Plan 2)?Solved4.6KViews0likes4CommentsAI Agents in Free Copilot Chat.
Hi all! When Agents were first introduced into Copilot Chat for free, you used to be able to upload 20 knowledge resources. Now this has been cut back to 4 web URLS only, and each of these can only be 2 forward slashes deep - we are really struggling on using agents successfully. Based in the UK, all of the Department for Education content is more than // deep in their web. We can't upload docs from the PDF's and most other juicy web content is much deeper in the domains than 2 x // I would love to hear from other Copilot Chat Agent users in how you are working with the barriers of the free version in your setting. Paid licenses are just not an option on UK school budgets sadly. Thanks all!18Views0likes0Comments