M365.FM - Modern work, security, and productivity with Microsoft 365

Secure, Scalable, Governed: Power Platform Best Practices with Craig White [MVP]

47 min · 22 de may de 2026
portada del episodio Secure, Scalable, Governed: Power Platform Best Practices with Craig White [MVP]

Descripción

In this episode of the m365.fm podcast, Mirko Peters sits down with Craig White, double Microsoft MVP, AI Platform Lead, governance specialist, and co-host of the Power Platform Panic Room podcast. With more than twenty years of experience across SQL Server, SharePoint, Microsoft 365, Power Platform, and Copilot Studio, Craig shares deep insights into governance, citizen development, AI readiness, scalable Power Platform adoption, and the future of low-code inside the Microsoft ecosystem. This conversation goes far beyond generic Power Platform discussions. Instead, it focuses on the real-world operational challenges organizations face when trying to scale Power Platform safely while still empowering makers and enabling innovation. WHY GOVERNANCE SHOULD ENABLE — NOT BLOCK One of the strongest themes throughout the episode is Craig’s philosophy around governance. He explains why governance should never be about stopping people from building solutions. Instead, governance should create guardrails that allow organizations to innovate safely at scale. Craig shares how many companies still approach Power Platform with fear, often worrying that citizen developers will create chaos, expose data, or bypass IT processes. But according to Craig, the real danger is not enabling users at all. When organizations completely block innovation, shadow IT simply moves outside the organization. The discussion explores why governance frameworks should feel almost invisible for makers while still protecting the organization through: * Environment strategies * Data Loss Prevention policies * Security boundaries * API governance * Controlled connectors * Lifecycle management Craig explains that the goal is not to remove freedom but to create safe paths for innovation. THE REALITY OF POWER PLATFORM GOVERNANCE Craig highlights how unique Power Platform governance really is compared to traditional Microsoft technologies. Unlike older systems where access was centrally controlled, Power Platform arrived enabled by default. Many organizations never realized employees already had access to build apps, flows, automations, and AI solutions for years. This creates a completely different governance challenge. Craig explains how organizations often discover thousands of apps, flows, and automations already running inside their tenant before governance processes even exist. The episode explores why governance maturity starts with visibility and understanding what already exists inside the environment. The discussion also dives into: * Default environment risks * Tenant settings * Environment provisioning * DLP policies * Governance automation * Connector restrictions * Enterprise administration AI, COPILOT & THE NEXT EVOLUTION OF POWER PLATFORM The conversation naturally shifts toward AI and Copilot Studio, where Craig shares his excitement about the future of AI inside Power Platform. He explains how organizations are rapidly moving from simple automation into: * AI agents * Copilot Studio * Skills-based automation * MCP integrations * AI-assisted governance * Intelligent business workflows Craig also discusses how AI is fundamentally changing administration and governance itself. Instead of manually configuring environments, policies, and settings, future administrators may increasingly rely on AI-powered interfaces and intelligent automation. The episode explores how AI is exposing long-standing governance issues that organizations ignored for years, especially around: * Oversharing * Permissions * Data security * Compliance * Zero trust architecture * Information governance Craig emphasizes that AI does not create governance problems — it reveals the ones organizations already had. WHY CITIZEN DEVELOPMENT IS NO LONGER OPTIONAL Another major focus of the discussion is citizen development. Craig strongly believes modern organizations can no longer rely entirely on centralized IT teams to solve every business problem. Employees closest to the business processes often understand automation opportunities better than anyone else. The episode explores why successful organizations: * Enable internal makers * Build communities * Create champions programs * Support experimentation * Encourage knowledge sharing * Provide safe development environments Craig explains that when employees understand the tools and feel empowered to solve problems themselves, innovation accelerates dramatically. THE IMPORTANCE OF ENVIRONMENT STRATEGY One of the most practical parts of the episode focuses on environment strategy. Craig explains why mature organizations separate: * Development environments * Test environments * Production environments * Personal experimentation spaces He shares how many organizations skip this step early on and later struggle with governance, deployment processes, licensing, and operational support. The discussion also covers why enterprise Power Platform adoption requires: * Dedicated support structures * Governance ownership * Deployment processes * Lifecycle planning * Solution management * Change control POWER PLATFORM MATURITY IN THE AI ERA Craig also shares his perspective on what true Power Platform maturity looks like in modern organizations. Interestingly, he explains that maturity is not about having thousands of apps or flows. Instead, maturity is about measurable business value. The real question becomes: * Are people actively using the solutions? * Are business processes improving? * Are automations saving time? * Are employees empowered? * Is governance working without friction? Craig believes successful organizations eventually reach a point where Power Platform becomes the natural toolset employees instinctively use to solve problems and automate work. THE POWER PLATFORM PANIC ROOM Mirko and Craig also discuss the story behind the Power Platform Panic Room podcast. Craig explains that the rapid pace of AI, Copilot, governance, and Power Platform innovation can feel overwhelming for many administrators and architects. The podcast was created as a safe place for professionals to discuss challenges, learn together, and navigate the rapidly changing Microsoft ecosystem. It is a reminder that even experienced professionals are still learning and adapting alongside the technology itself.  Become a supporter of this podcast: https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support [https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support?utm_source=rss&utm_medium=rss&utm_campaign=rss].

Comentarios

0

Sé la primera persona en comentar

¡Regístrate ahora y forma parte de la comunidad de M365.FM - Modern work, security, and productivity with Microsoft 365!

Prueba gratis

Empieza 7 días de prueba

$99 / mes después de la prueba. · Cancela cuando quieras.

  • Podcasts solo en Podimo
  • 20 horas de audiolibros al mes
  • Podcast gratuitos

Todos los episodios

618 episodios

episode Breaking the Scale Barrier: Building Multi-Tenant SaaS on Power Pages artwork

Breaking the Scale Barrier: Building Multi-Tenant SaaS on Power Pages

Building multi-tenant SaaS on Power Pages changes the way architects think about Dataverse scalability. Most developers traditionally viewed Power Pages as a portal platform intended for forms, authentication, and moderate business applications. Enterprise-scale SaaS workloads were assumed to require fully custom Azure infrastructure and external databases. Elastic Tables challenge that assumption by introducing Cosmos DB-backed storage directly inside Dataverse, allowing Power Pages to support large-scale operational workloads while preserving the familiar Dataverse developer experience. WHY STANDARD DATAVERSE TABLES HIT LIMITS Standard Dataverse tables are optimized for relational transactional workloads such as CRM systems, account management, and business processes. They perform extremely well for structured business entities but begin struggling under workloads dominated by telemetry ingestion, event logging, audit history, and append-heavy operational data. As tenant counts grow, noisy-neighbor effects appear because all tenants compete for the same relational backend resources. The architecture problems become especially visible when SaaS platforms start accumulating massive volumes of operational records. Bulk write operations slow down, storage costs increase rapidly, and query performance degrades under high-ingestion scenarios. These are not flaws in Dataverse itself but rather signs that the workload no longer aligns with the strengths of Azure SQL-backed storage. * Azure SQL excels at relational workloads * Operational SaaS data behaves differently * Multi-tenant contention creates performance issues * Storage costs rise quickly at scale ELASTIC TABLES AND COSMOS DB Elastic Tables replace the underlying SQL engine with Azure Cosmos DB while preserving the same Dataverse APIs, security model, and Power Pages integration patterns developers already know. From the outside, the experience still feels like standard Dataverse development. Underneath, however, the storage model becomes horizontally scalable and partition-aware. Cosmos DB distributes records across logical partitions using PartitionId values. This enables Elastic Tables to scale write throughput horizontally rather than relying on a single database instance. Microsoft specifically designed Elastic Tables for telemetry, event streams, operational logging, and large append-heavy workloads that traditionally break relational systems at scale. * Horizontal partitioning improves scalability * Bulk ingestion becomes dramatically faster * TTL support enables automatic data expiration * Dataverse APIs remain unchanged for developers PERFORMANCE DIFFERENCES THAT MATTER Elastic Tables dramatically outperform standard tables during batch operations such as CreateMultiple and UpdateMultiple requests. Community benchmarks showed improvements ranging between two and ten times faster for bulk ingestion scenarios. This advantage exists because Cosmos DB distributes writes across partitions simultaneously rather than funneling all operations through a single relational engine. At the same time, Elastic Tables are not universally superior. Standard relational queries and traditional CRUD operations may still perform better on SQL-backed Dataverse tables. Successful SaaS architectures therefore separate operational workloads from relational business entities rather than attempting to move everything into Elastic storage. * Elastic Tables dominate high-volume writes * Standard tables remain stronger for relational queries * Batch ingestion benefits most from Cosmos DB * Hybrid architectures deliver the best results PARTITION STRATEGY DEFINES SUCCESS Partition design is the single most important Elastic Table decision because the partition key cannot be changed after deployment without migration. For multi-tenant SaaS platforms, tenantId naturally becomes the foundation of the partition model because nearly every query is scoped to a tenant context. Large enterprise customers introduce additional complexity. A single “elephant tenant” can overwhelm a partition if all records share the same partition key. Hierarchical Partition Keys solve this by introducing multiple partition levels such as tenantId, userId, and sessionId. This spreads traffic and storage evenly while preserving efficient query routing. The resulting architecture supports both small tenants and extremely large enterprise customers without requiring different application logic or separate development patterns.  SECURITY AND TENANT ISOLATION Security in multi-tenant SaaS depends on structural isolation rather than trusting developers to consistently apply tenant filters. The architecture combines Dataverse business units, web roles, table permissions, and partition-aware query routing to create layered tenant isolation across both the platform and storage layers. Business units define tenant boundaries inside Dataverse, while tenantId-based partition routing ensures Cosmos DB queries physically access only the relevant tenant partitions. This layered approach strengthens compliance readiness for SOC 2, ISO 27001, GDPR, and enterprise procurement reviews. * Business units isolate tenants at the platform layer * Partition routing isolates tenants at the storage layer * Web roles enforce frontend access permissions * Defense-in-depth improves compliance readiness POWER PAGES AS THE FRONTEND EXPERIENCE Power Pages functions best as the authenticated frontend experience layer rather than the ingestion engine itself. User-facing reads and writes operate through the Web API, while backend services such as Azure Functions or Power Automate handle high-throughput ingestion using CreateMultiple operations. This separation keeps portals responsive while allowing ingestion pipelines to scale independently. Query shaping, pagination, caching, and asynchronous loading patterns become essential for maintaining fast user experiences within Power Pages request limits.  JSON COLUMNS AND FLEXIBLE DATA MODELS Elastic Tables support JSON-based schema flexibility by allowing semi-structured metadata inside string columns. This enables tenant-specific customizations without requiring constant Dataverse schema changes. Entire activity feeds or operational datasets can be stored as compact JSON payloads instead of thousands of relational rows. The flexibility comes with governance responsibilities. Field-level security does not apply inside JSON structures, meaning sensitive information should always remain in strongly typed Dataverse columns where security policies can be enforced properly.  Become a supporter of this podcast: https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support [https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support?utm_source=rss&utm_medium=rss&utm_campaign=rss].

28 de may de 20261 h 26 min
episode Your PowerShell Scripts Are Obsolete artwork

Your PowerShell Scripts Are Obsolete

For years, PowerShell scripts were the backbone of enterprise automation. Administrators built massive libraries of scripts to onboard users, manage licenses, provision devices, configure mailboxes, and automate repetitive operational tasks across Microsoft 365. Those scripts worked because enterprise environments were relatively predictable. Inputs were structured, workflows followed a fixed path, and administrators could usually anticipate the most common failure scenarios ahead of time. That model is now collapsing under the weight of modern cloud complexity. Enterprise environments have become dynamic systems filled with constantly changing APIs, hybrid infrastructures, compliance policies, device states, conditional access rules, and unpredictable user behavior. Traditional automation struggles because scripts are deterministic by design. They can only execute the logic that developers explicitly coded into them. The moment an environment behaves differently than expected, the script either breaks or requires another layer of conditional logic to keep functioning. Modern enterprise IT problems are no longer simple execution problems. They are reasoning problems. WHY DETERMINISTIC LOGIC NO LONGER SCALES Most PowerShell automation today is built around predefined workflows: * Check if a user exists * Assign licenses * Configure mailbox settings * Send notifications The problem is that real enterprise operations almost never follow clean workflows anymore. Tickets arrive as messy natural-language requests filled with incomplete context, ambiguous symptoms, and multiple overlapping problems. One issue may involve Azure AD, Intune, Conditional Access, Exchange Online, and SharePoint simultaneously. Instead of executing a fixed sequence, modern systems need to: * Interpret context dynamically * Correlate data across systems * Adapt to unexpected conditions * Decide what action makes sense next This is where autonomous agents fundamentally change the architecture of automation. THE SHIFT FROM SCRIPTS TO REASONING AGENTS The future of enterprise automation is not about replacing PowerShell. It is about transforming PowerShell into an intelligent execution layer controlled by reasoning systems capable of understanding goals, interpreting environments, and dynamically orchestrating workflows. Autonomous agents introduce a completely different operational model. Instead of hardcoding every possible decision tree into a script, agents analyze the current situation and determine which tools should be used based on live context. These systems do not simply “run commands.” They reason about the problem itself.  HOW AGENTS ACTUALLY THINK An autonomous workflow typically follows a repeating loop: * Analyze the ticket or request * Build a plan dynamically * Execute the required tools * Evaluate the results * Adapt if assumptions fail Unlike traditional scripts, agents do not panic when something unexpected happens. If an API throttles requests, if a device is missing compliance data, or if a user record is incomplete, the agent recalculates its next move rather than terminating the workflow entirely. This creates systems that are dramatically more resilient, scalable, and adaptive than deterministic automation. SEMANTIC KERNEL AS THE ORCHESTRATION ENGINE One of the most important concepts discussed in this episode is Semantic Kernel and its role in orchestrating AI-driven automation across Microsoft 365 environments. Semantic Kernel is not simply a PowerShell wrapper. It acts as the reasoning layer between large language models and enterprise tooling. By exposing PowerShell functions as structured plugins with descriptions, parameters, and expected outputs, administrators can teach AI systems when and why tools should be used.  WHAT SEMANTIC KERNEL ENABLES Semantic Kernel allows organizations to: * Turn PowerShell cmdlets into AI-callable tools * Build multi-step adaptive workflows * Dynamically orchestrate Microsoft Graph operations * Enable contextual reasoning instead of static execution The result is a shift from traditional “runbook automation” toward intelligent orchestration systems capable of handling ambiguity and complexity. MICROSOFT GRAPH BECOMES THE ENTERPRISE DATA FABRIC Microsoft Graph sits at the center of this new architecture. Rather than querying disconnected systems independently, autonomous agents use Graph as the unified interface across Microsoft 365 services including Azure AD, Intune, Exchange, Teams, SharePoint, and more. This creates a powerful operational model where agents can correlate information across multiple workloads simultaneously. An agent troubleshooting a Teams access issue may automatically: * Verify Azure AD identity health * Check Conditional Access policies * Inspect Intune compliance states * Review mailbox synchronization * Analyze Teams licensing assignments Instead of forcing administrators to manually jump between dashboards, the agent builds a complete operational picture automatically. WHY SECURITY MODELS MUST EVOLVE One of the most critical discussions in this episode centers around authentication and identity governance. Traditional automation relies heavily on long-lived service principals with broad tenant-wide permissions. That model becomes extremely dangerous once autonomous systems begin operating continuously at scale. The future moves toward: * Just-in-time authentication * Task-scoped tokens * Managed identities * Continuous Access Evaluation (CAE) * Policy-driven authorization Rather than giving agents permanent access to an entire tenant, modern systems issue short-lived credentials scoped to specific operations. This dramatically reduces blast radius if a system is compromised. HUMAN-IN-THE-LOOP GOVERNANCE Autonomous does not mean uncontrolled. The episode strongly emphasizes that enterprise AI systems must operate within strict governance boundaries. Low-risk operations may execute autonomously, while high-risk actions require explicit human approval. Examples of autonomous operations include: * Reading compliance states * Gathering diagnostic data * Checking mailbox configurations * Verifying user licenses Examples requiring approval include: * Resetting MFA methods * Modifying Conditional Access * Deleting users or devices * Assigning privileged permissions This creates a collaborative operational model where agents accelerate diagnostics and execution while humans retain authority over high-impact decisions. Become a supporter of this podcast: https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support [https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support?utm_source=rss&utm_medium=rss&utm_campaign=rss].

28 de may de 20261 h 12 min
episode Stop Using Folders: The Future of Graph-Based Architecture artwork

Stop Using Folders: The Future of Graph-Based Architecture

For decades, enterprises built their digital workplaces around folders, directories, and deeply nested hierarchies. The assumption was simple: if information was organized into the right structure, people would always be able to find it. But in 2026, that assumption is collapsing under the weight of modern data complexity. Work no longer starts with navigation. It starts with context. This episode explores why traditional folder structures are becoming obsolete and how graph-based architecture is redefining the future of Microsoft 365, SharePoint, and enterprise collaboration. Instead of organizing files by location, modern systems organize information by meaning, relationships, and intent. The result is a complete shift away from static hierarchies toward intelligent connected knowledge networks. THE NAVIGATION MYTH Most organizations still accept “folder hell” as a normal part of work. But the cost is enormous. Research shows employees spend nearly nineteen percent of their day simply searching for information across folders, drives, and disconnected repositories. That represents a massive productivity tax hidden inside everyday collaboration. The problem is not just speed. Folder structures force users to remember where another human decided to save something years earlier. That creates constant cognitive overload and turns collaboration into an exercise in digital archaeology. WHY FOLDERS FAIL AT SCALE * Deep hierarchies overwhelm human memory * File duplication creates conflicting versions of truth * Teams waste time navigating instead of creating * Information becomes trapped inside organizational silos The traditional directory model assumes data belongs in one place at one time. Modern enterprise information does not work that way anymore. THE COLLAPSE OF STATIC HIERARCHIES A single document today often serves multiple purposes simultaneously. A contract may represent a legal record, a revenue event, a project milestone, and a customer relationship artifact all at once. Traditional folders force organizations to choose one “correct” location, even though the data naturally exists across multiple business dimensions. That limitation creates one of the biggest enterprise problems in modern collaboration systems: duplication. When users cannot decide where a file belongs, they create copies. Those copies slowly diverge, producing conflicting versions of the truth across departments and workflows. What begins as organization eventually becomes fragmentation. The folder model was designed for physical filing cabinets. Enterprise data is no longer physical. It is relational. THE RISE OF MICROSOFT GRAPH AND SEMANTIC ARCHITECTURE This episode dives deep into the rise of Microsoft Graph and semantic indexing as the foundation of next-generation information architecture. Instead of treating files as isolated objects stored in containers, graph-based systems understand relationships between people, projects, meetings, conversations, documents, and workflows. The system no longer focuses on where information lives. It focuses on what the information means. The Microsoft Graph transforms enterprise content into an interconnected neural network of organizational knowledge. Through vector-based semantic indexing, systems can now understand concepts, intent, and contextual relationships instead of relying purely on keyword matching. KEY GRAPH-BASED CONCEPTS DISCUSSED * Semantic indexing and vector similarity * Context-aware information discovery * Relationship-driven architecture * AI-powered organizational intelligence In the graph model, the system proactively surfaces the right information based on meetings, conversations, tasks, and collaboration signals — often before users even begin searching. SHAREPOINT PREMIUM AND THE METADATA ENGINE One of the biggest architectural changes discussed in this episode is the evolution of SharePoint Premium from static document storage into an intelligent metadata processing engine. Modern SharePoint environments no longer depend on manual filing discipline. As documents enter the system, AI-powered metadata extraction automatically identifies vendors, invoice totals, contracts, project references, deadlines, and business context. This transforms documents from passive files into active data objects connected across the enterprise graph. HOW METADATA CHANGES EVERYTHING * Documents become searchable by meaning * AI automatically extracts business context * Flat content architectures replace nested drives * Information becomes dynamically connected The future is not about storing files better. It is about making information computationally understandable. THE FUTURE OF GRAPH-BASED USER INTERFACES The episode also explores how graph architecture changes the user experience itself. Traditional interfaces present information as lists and folders, forcing users into serial navigation patterns that increase cognitive load. Graph-based interfaces instead visualize relationships between projects, people, meetings, tasks, and documents as interconnected nodes. This mirrors how the human brain naturally processes patterns and associations. Instead of navigating rigid trees, users interact with contextual maps of organizational knowledge. The result is faster discovery, reduced mental friction, and dramatically improved visibility into project relationships and collaboration patterns. THE CULTURAL SHIFT AWAY FROM FOLDER THINKING One of the most important themes in this episode is that graph-based architecture is not just a technology shift — it is a cultural transformation. Most organizations still train employees where to save files instead of teaching them how to interact with intelligent systems. Folder structures create a false sense of control because they mimic physical storage models people have used for decades. Moving to graph-based systems requires organizations to embrace transparency, metadata, discoverability, and relationship-driven collaboration. THE BIGGEST ADOPTION CHALLENGES * Folder nostalgia and legacy habits * Fear of losing “ownership” over information * Resistance to transparent collaboration * Dependence on old navigation workflows The organizations that successfully transition will stop treating information like isolated documents and start treating it like a living organizational intelligence network. THE END OF THE DIRECTORY ERA This episode argues that the traditional directory is reaching its endpoint. Folders solved a problem for the computing limitations of the 1970s. But modern enterprise AI systems no longer need humans to manually organize information into static containers. Semantic understanding, graph relationships, metadata extraction, and AI-powered context are replacing navigation entirely. The future competitive advantage is not how much data your organization stores. It is how quickly your systems can connect people to the right information at the right moment. FINAL THOUGHTS The transition from folder hierarchies to graph-based architecture represents one of the most important shifts happening across Microsoft 365 and enterprise collaboration today. The future belongs to systems that understand relationships, context, and meaning instead of relying on humans to manually maintain directory structures. If your organization still depends on deeply nested folders to manage knowledge, you may already be operating on an outdated architectural model. Stop navigating. Start connecting. Follow M365FM for deeper conversations on Microsoft Graph, SharePoint Premium, AI-powered collaboration, semantic indexing, metadata architecture, and the future of enterprise knowledge systems. Become a supporter of this podcast: https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support [https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support?utm_source=rss&utm_medium=rss&utm_campaign=rss].

Ayer13 min
episode Shaping the Future of Work with Fabio Bonolo MVP artwork

Shaping the Future of Work with Fabio Bonolo MVP

The future of work is evolving faster than ever before, and in this exciting episode of the M365 podcast, Microsoft MVP Fabio Bonolo joins Mirko Peters for an in-depth conversation about AI, Microsoft Copilot, modern workplace transformation, productivity, leadership, and the rapidly changing world of work. Fabio brings a unique mix of technical expertise, business strategy, leadership experience, and community passion to the discussion, making this episode essential listening for IT professionals, business leaders, Microsoft 365 enthusiasts, and anyone trying to navigate the AI-powered workplace revolution. Fabio Bonolo is a Microsoft MVP, Team Leader Productivity at isolutions Switzerland, international speaker, and passionate advocate for helping organizations unlock the full value of Microsoft 365 and AI technologies. During the episode, Fabio shares his personal journey from sales executive to one of the most recognized voices in the Microsoft modern work ecosystem. His transformation accelerated during the rise of Microsoft Copilot in 2023, when he realized AI was going to fundamentally change how organizations work, collaborate, and innovate. One of the strongest themes throughout the conversation is that the future of work is no longer just about technology — it is about empowerment, mindset, culture, and helping people adapt confidently to change. Fabio explains that organizations are entering a completely new era where employees will spend less time clicking through applications and more time guiding, observing, and collaborating with AI-powered agents and automation systems. According to Fabio, the rise of autonomous AI agents and Copilot experiences represents one of the biggest workplace shifts in modern history. KEY TOPICS COVERED IN THIS EPISODE * The evolution of Microsoft Copilot and AI in the workplace * Why AI adoption is changing digital transformation forever * The future of productivity in hybrid work environments * Leadership and communication during AI transformation * Change management strategies for Microsoft 365 adoption * Building successful Copilot adoption programs * The role of company culture in AI readiness * Empowerment, employee growth, and workplace innovation * Data quality and governance for Microsoft Copilot * How modern organizations should approach AI education Fabio also discusses how organizations continue to underestimate the importance of change management when implementing Microsoft Copilot and AI technologies. Many businesses rush into AI adoption without preparing their employees, defining use cases, or establishing proper governance structures. Fabio emphasizes that successful AI transformation requires ongoing training, workshops, communication, and long-term investment in employee education. Organizations that simply purchase Copilot licenses without a strategy often struggle to generate real business impact. A major highlight of the episode is Fabio’s perspective on productivity in the AI era. Instead of measuring productivity purely through dashboards or saved minutes, Fabio encourages organizations to focus on employee experience, workplace culture, and business outcomes. He explains that productivity means different things depending on company culture, leadership style, and employee expectations. AI should not only help people work faster — it should help them work smarter, collaborate better, and focus on more meaningful tasks. FABIO BONOLO’S ADVICE FOR AI ADOPTION * Invest heavily in training and employee education * Start with real business pain points and practical use cases * Build strong change management programs early * Focus on data quality before rolling out Copilot * Create internal ambassador or champion networks * Align AI strategy with business strategy and company culture * Encourage continuous learning and experimentation The discussion also explores one of the most important but overlooked areas of Microsoft Copilot adoption: data quality and governance. Fabio explains that Copilot’s biggest strength — using organizational data — can also become its biggest weakness if companies fail to manage their information properly. Poorly structured files, duplicate content, outdated documents, and weak data governance can dramatically reduce the effectiveness of AI-generated insights and recommendations. Fabio highlights the growing importance of creating a healthy data culture inside organizations. Technology alone is not enough. Businesses must educate employees about the value of data, proper file management, collaboration standards, and information governance. Without strong data culture and governance policies, organizations risk creating digital chaos that negatively impacts Copilot performance and AI adoption success. WHY CHANGE MANAGEMENT FAILS IN MANY ORGANIZATIONS * Leaders expect immediate AI productivity gains * Employees are overwhelmed by rapid technological change * Companies underestimate training requirements * AI expectations are often unrealistic * Governance and data readiness are ignored * Communication between leadership and employees is weak Another fascinating section focuses on leadership, empowerment, and communication in modern organizations. Fabio shares his philosophy as a team leader and explains how authentic leadership creates trust, collaboration, and innovation. He believes leaders should focus on empowering employees, helping them grow personally and professionally, and building environments where people feel motivated, inspired, and supported. His leadership style centers around transparency, authenticity, communication, and continuous learning. Communication is another central theme throughout the conversation. Fabio explains that open communication between leaders and employees becomes even more important during periods of AI transformation and organizational change. Employees need safe environments where they can ask questions, express concerns, and learn without fear. According to Fabio, leaders who actively use AI tools themselves are far more successful at encouraging adoption than leaders who only mandate change from above. The episode also dives into the overwhelming pace of innovation in the Microsoft ecosystem. From Copilot Studio and AI Foundry to autonomous agents and Power Platform integrations, Fabio acknowledges that many professionals feel exhausted trying to keep up with constant updates and buzzwords. His advice is simple but powerful: find your niche, focus deeply on what matters most to your role, and avoid trying to master every single new technology at once. FABIO’S TOP RECOMMENDATIONS FOR MODERN WORK PROFESSIONALS * Find your niche inside the Microsoft ecosystem * Stay curious and continue learning consistently * Attend Microsoft community events and conferences * Follow MVPs and trusted experts for updates * Focus on business impact, not only technology * Prioritize human connection in hybrid work * Balance innovation with realistic expectations Beyond technology, the conversation touches on human connection, hybrid work, and the social side of the workplace. Fabio believes that AI is actually increasing the value of human interaction. As automation handles more repetitive tasks, employees increasingly appreciate authentic conversations, teamwork, collaboration, and in-person relationships. This shift is reshaping how organizations think about hybrid work, company culture, and employee engagement in the AI era. The episode concludes with an inspiring reflection on what it truly means to shape the future of work. For Fabio, it is about helping others grow, building communities, sharing knowledge globally, and contributing positively to the evolution of work through technology, leadership, and collaborati Become a supporter of this podcast: https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support [https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support?utm_source=rss&utm_medium=rss&utm_campaign=rss].

Ayer55 min
episode Designing the Hybrid Workplace with Onyinye Madubuko MVP artwork

Designing the Hybrid Workplace with Onyinye Madubuko MVP

The future of work is no longer a distant concept — it is happening right now. In this powerful episode of the M365 podcast, Microsoft MVP Onyinye Madubuko joins Mirko Peters to explore how organizations can successfully design hybrid workplaces that improve collaboration, employee experience, and productivity using Microsoft 365, Microsoft Teams, Viva Insights, and AI-powered tools like Microsoft Copilot. Onyinye shares her remarkable journey from engineering and communications into the Microsoft ecosystem, where she now helps organizations transform digitally through modern workplace strategies. With nearly 15 years of IT experience, she explains how businesses often underutilize their Microsoft licenses and fail to unlock the true value of tools already available to them. This episode dives deep into the practical side of hybrid work adoption, digital transformation, AI readiness, and employee productivity in modern organizations. One of the standout conversations focuses on employee experience in hybrid work environments. Onyinye explains how Microsoft Viva Insights can help employees manage focus time, reduce burnout, and improve work-life balance through AI-driven recommendations and productivity insights. She highlights how organizations can empower employees rather than monitor them, using data responsibly to create healthier workplace habits and more effective collaboration patterns. KEY TOPICS DISCUSSED IN THIS EPISODE * Designing inclusive Microsoft Teams Rooms for hybrid collaboration * Improving employee productivity with Viva Insights * AI-powered meeting experiences with Microsoft Copilot * Reducing meeting fatigue and improving workplace culture * Copilot adoption strategies and rollout best practices * Change management for Microsoft 365 transformation * Women in tech and building intentional communities * Certification paths and Microsoft Learn opportunities The episode also explores the technical and human side of Microsoft Teams Rooms. Onyinye explains why meeting room design matters more than ever in hybrid work scenarios. From camera placement and lighting to acoustics and accessibility, she shares practical recommendations organizations should consider when creating modern meeting spaces that support both in-office and remote employees equally. Artificial Intelligence is another major focus throughout the discussion. Onyinye breaks down how Microsoft Copilot is changing the way people collaborate, summarize meetings, generate insights, and automate repetitive tasks. She emphasizes that successful AI adoption is not just about deploying licenses — it requires governance, security assessments, training, and strong change management processes. Organizations that ignore data governance and oversharing risks may struggle to maximize the value of Copilot in Microsoft 365 environments. MICROSOFT COPILOT ROLLOUT BEST PRACTICES * Start with a security and governance assessment * Review SharePoint and OneDrive sharing policies * Deploy Copilot in pilot phases before organization-wide rollout * Train champions inside departments to support adoption * Build prompt libraries and encourage knowledge sharing * Measure usage and optimize licensing regularly Onyinye also shares practical advice for leaders who want to reduce meeting overload and improve productivity in Microsoft Teams. She introduces useful features like meeting follow-up options, intelligent recap capabilities, and AI-generated summaries that help employees stay informed without attending unnecessary meetings. This approach enables organizations to create more focused collaboration while reducing digital fatigue in hybrid work environments. Another valuable section of the episode centers around change management and adoption strategies for Microsoft 365 and Copilot. Onyinye explains why organizations should begin with departments like HR and IT, where use cases are easier to demonstrate and adoption tends to happen faster. She stresses the importance of understanding business pain points before introducing new tools and technologies. When employees clearly see how Microsoft Copilot can solve everyday challenges, adoption becomes significantly easier and more sustainable. WHY CHANGE MANAGEMENT MATTERS * Employees adopt technology faster when real pain points are solved * Training and communication are critical for long-term success * Champions inside departments accelerate adoption * AI tools should simplify work, not create confusion * Organizations must align technology with workplace culture For professionals looking to build careers in Microsoft technologies, Onyinye strongly recommends leveraging Microsoft Learn, certifications, applied skills, and community engagement. She discusses how certifications helped validate her expertise and opened new opportunities throughout her career. She also encourages women entering tech to find intentional communities, connect with mentors, volunteer, and continuously learn through Microsoft’s free learning platforms. This episode is packed with valuable insights for IT leaders, Microsoft 365 administrators, workplace strategists, change managers, and anyone interested in the future of hybrid work. Whether your organization is just starting its Microsoft Copilot journey or looking to optimize modern workplace adoption, Onyinye Madubuko provides actionable guidance grounded in real-world experience and successful transformation projects. CONNECT WITH ONYINYE MADUBUKO * Microsoft 365 MVP * Modern Workplace Transformation Expert * Co-organizer of the Microsoft 365 Dublin User Group * Advocate for Women in Technology and STEM Careers FINAL TAKEAWAY One of the most inspiring moments in the episode comes at the very end when Onyinye shares the best career advice she ever received: “Ask questions. No question is stupid.” That mindset of curiosity, learning, and continuous improvement perfectly reflects the future of modern work and digital transformation in the AI era. Become a supporter of this podcast: https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support [https://www.spreaker.com/podcast/m365-fm-modern-work-security-and-productivity-with-microsoft-365--6704921/support?utm_source=rss&utm_medium=rss&utm_campaign=rss].

Ayer50 min