Troubleshooting: Control 2.7 - Vendor and Third-Party Risk Management
This playbook provides troubleshooting guidance for Control 2.7.
Common Issues and Solutions
| Issue | Symptoms | Root Cause | Solution |
|---|---|---|---|
| Incomplete connector inventory | Unknown connectors discovered during audits | Limited visibility | Run PowerShell enumeration scripts |
| Missing SOC 2 report | Vendor cannot provide documentation | Vendor maturity | Accept alternatives or conduct independent assessment |
| Custom connector security | Connectors created without review | No approval process | Implement Managed Environments |
| Delayed incident notification | Vendor security incident not reported | Contract gaps | Review and update contract terms |
| DLP policy not blocking | Users can use blocked connectors | Policy misconfiguration | Verify policy scope and propagation |
Detailed Troubleshooting
Issue 1: Unable to Identify All Third-Party Connectors
Symptoms: Incomplete connector inventory, unknown connectors discovered during audits
Solutions:
- Run PowerShell scripts to enumerate connectors across all environments
- Review Power Platform analytics for connector usage
- Check audit logs in Microsoft Purview for connection activity
- Enable connector activity alerts for new deployments
- Survey environment admins for custom connector usage
Issue 2: Vendor Fails to Provide SOC 2 Report
Symptoms: Vendor cannot provide required security documentation
Solutions:
- Accept alternative certifications (ISO 27001, FedRAMP)
- Request bridge letter if report is pending
- Conduct independent security assessment
- Implement compensating controls (enhanced monitoring)
- Escalate to vendor risk committee for risk acceptance or termination
Issue 3: Custom Connector Security Concerns
Symptoms: Custom connectors created without security review
Solutions:
- Implement pre-deployment security review process
- Enable Managed Environments to control solution deployment
- Use solution checker to identify security issues
- Require code review for custom connector APIs
- Block custom connector creation except in designated environments
Issue 4: Vendor Incident Notification Delayed
Symptoms: Vendor security incident not reported timely
Solutions:
- Review contract for notification requirements
- Assess impact to organization and report internally
- Document timeline of vendor notification
- Update vendor risk score based on incident handling
- Consider contract remediation or termination
Issue 5: DLP Policies Not Blocking Connectors as Expected
Symptoms: Users able to use connectors that should be blocked
Solutions:
- Verify DLP policy is applied to correct environments
- Check for conflicting policies (least restrictive wins)
- Confirm connector is correctly classified in policy
- Wait for policy propagation (up to 1 hour)
- Verify environment is marked as Managed
Issue 6: Community Plugin Installed Without Review
Symptoms: Unvetted community connector discovered in environment
Solutions:
- Disable connector immediately
- Review usage and data exposure
- Assess impact of any data that flowed through connector
- Document incident and root cause
- Strengthen preventive controls (DLP, marketplace blocking)
Issue 7: AI Vendor Model Change Without Notice
Symptoms: Agent behavior changed unexpectedly due to underlying model update
Solutions:
- Document behavioral changes observed
- Contact vendor for model change information
- Compare performance against baseline
- Revalidate agent per MRM requirements if material
- Update contract to strengthen notification requirements
Microsoft Platform Update Monitoring
For Copilot Studio agents, the underlying models are managed by Microsoft. Organizations should proactively monitor for platform changes that may affect agent behavior.
Monitoring Channels
| Channel | URL | What to Monitor |
|---|---|---|
| Microsoft 365 Message Center | https://admin.microsoft.com → Message center | Copilot Studio updates, model changes, feature deprecations |
| Service Health Dashboard | https://admin.microsoft.com → Service health | Outages, degraded performance, incident reports |
| Power Platform Release Plans | https://learn.microsoft.com/en-us/power-platform/release-plan/2025wave2/ | Upcoming features, breaking changes |
| Copilot Studio What's New | https://learn.microsoft.com/en-us/microsoft-copilot-studio/whats-new | Feature updates, capability changes |
| Microsoft 365 Roadmap | https://www.microsoft365.com/roadmap | Future features, timeline visibility |
Recommended Monitoring Process
Weekly: 1. Review Message Center for Copilot Studio / Power Platform announcements 2. Check Service Health for any ongoing issues 3. Document any announcements affecting deployed agents
Monthly: 1. Review Power Platform release notes 2. Assess impact of upcoming changes on Zone 2/3 agents 3. Plan re-validation for material changes
Quarterly: 1. Review vendor SLA performance metrics 2. Assess Microsoft platform changes against MRM requirements 3. Update vendor risk assessment score
When to Trigger Re-Validation
Re-validate agents per Control 2.6 (Model Risk Management) when:
- Microsoft announces a model change affecting Copilot Studio
- Agent behavior metrics deviate from baseline by >5%
- Microsoft announces deprecation of features your agent uses
- Service incident impacts data integrity or agent accuracy
- Customer complaints increase without configuration changes
PowerShell: Message Center Monitoring
# Get recent Message Center announcements for Power Platform
Connect-MgGraph -Scopes "ServiceMessage.Read.All"
$messages = Get-MgServiceAnnouncementMessage -Filter "services/any(s:s eq 'Power Platform')" `
-Top 50 | Where-Object { $_.LastModifiedDateTime -gt (Get-Date).AddDays(-7) }
$messages | Select-Object Title, LastModifiedDateTime, Severity | Format-Table -AutoSize
Escalation Path
If issues cannot be resolved using this guide:
- Level 1: Power Platform Admin - Technical configuration
- Level 2: AI Governance Lead - Policy and process
- Level 3: Compliance Officer - Regulatory requirements
- Level 4: Vendor Risk Committee - Risk acceptance decisions
Related Playbooks
- Portal Walkthrough - Step-by-step portal configuration
- PowerShell Setup - Automation scripts
- Verification & Testing - Assessment procedures
Updated: January 2026 | Version: v1.2