Microsoft 365 security intelligence
Peace of mind in your IT.
A grip on every signal.
The MK Cloud & IT dashboard turns complex Microsoft 365 data into clear risks, concrete actions and reports anyone can understand.
Identities are your first line of defence
Every identity sharp.
Access under control.
See instantly where MFA, Conditional Access and sign-in methods need attention, before a weak account becomes a risk.
Mail flow and domain security
Secure mail flow.
Every domain provably strong.
Track delivery, blocks and quarantine alerts, and check SPF, DKIM and DMARC from one clear overview.
From measure to demonstrable evidence
NIS2 in view.
From obligation to progress.
Bring measures, open actions and evidence coverage together, so you know what’s done and where the next step lies.
From signal to next step
Spotting a risk is one thing.
Understanding what it means is another.
See how a finding becomes clear. This is a fictional example, not a scan of your environment.
One account without registered MFA.
The dashboard flags that no multi-factor authentication method is registered for an account.
Illustrative case study
From scattered signals.
To demonstrable control.
A recognisable example of what centralised insight can deliver for an SME with 42 Microsoft 365 accounts.
“We finally saw what needed to happen first, and could clearly explain our progress.”Fictional customer quote for illustration
This is a fictional scenario. Results vary per Microsoft 365 environment.
Free indication · about 1 minute
How does your Microsoft 365 environment measure up?
Answer five short questions and get an instant first indication of your security baseline.
- No technical knowledge needed
- No data is submitted
- An immediate, practical next step
Do all active users use multi-factor authentication?
Are there rules for risky or unusual sign-ins?
Are SPF, DKIM and DMARC all configured for your domain?
Do admins use a separate account for admin work?
Are security settings and licences reviewed periodically?
Your result
This indication is not a security audit and only uses your own answers.
What the dashboard offers
Clear insight.
Without the noise.
A clear overview of your Microsoft 365 environment, with practical explanation and support using the dashboard.
Microsoft 365 insight
Key signals from Microsoft 365 brought together clearly in the dashboard environment.
- Central overview
- Clear signals
- Up-to-date information
Security & NIS2 insight
The dashboard makes checks around MFA, Conditional Access and improvement actions visible, among others.
- Security signals
- Risk insight
- Reporting
Reporting & follow-up
Technical data is translated into clear, understandable priorities for your organisation.
- Clear priorities
- Practical explanation
- Track progress
Dashboard support
Direct contact for questions about how the M365 Security Dashboard environment works and what it shows.
- A fixed point of contact
- Help getting started
- Explanation of insights
M365 Security Dashboard
See what’s going well.
And what needs work.
Our own monitor turns technical Microsoft 365 data into clear risks, concrete actions and customer-friendly reports.
The M365 Security Dashboard continuously gathers technical and organisational evidence of digital resilience. The dashboard supports preparation for NIS2, the Dutch Cyber Security Act and a CYRA-IT self-assessment. It does not replace an official CYRA assessment, self-declaration, audit or certification.
L Some modules require an additional Microsoft licence on the customer's side. See which
Which Microsoft licences do I need? See the explanation +
MK SMS Gateway
Business SMS.
Simply arranged.
With the MK SMS system you send and receive business text messages from one secure web environment. Handy for notifications, reminders and short communication where speed matters.
- Send & receiveManage incoming and outgoing messages centrally.
- Contacts & templatesWork faster with an address book and reusable message texts.
- Automatic processingProcess scheduled messages and files via fixed folders.
- Secure accessUser roles, logging and support for two-factor authentication.
Today
Our process
Clear from
the first conversation.
No opaque projects. We connect the dashboard environment, make the information easy to understand, and provide support using it.
- 01Listening
Get acquainted & take stock
We discuss your organisation and the dashboard insights you want.
- 02Connecting
Set up the dashboard environment
We carefully set up the connection and view of the dashboard.
- 03Supporting
Insight, reporting & support
We keep the dashboard available and help with any questions about the environment.
“Technology is only truly sorted once it gives you peace of mind.”Michael Kerker
About MK Cloud & IT
Personal contact. Clear insight into Microsoft 365.
MK Cloud & IT develops and supports the M365 Security Dashboard environment. You get direct contact, clear explanations, and insight tailored to your organisation.
Alongside the M365 Security Dashboard, MK Cloud & IT offers the SMS Gateway for business messaging. You speak directly with the developer and get a personal walkthrough of your dashboard environment.
Microsoft 365 status
Live insight into the cloud.
Our monitor tracks the public Microsoft 365 service status. You can see when the data was last updated and whether it's still current.
Fetching the latest data.
Who this is for
Not for every business.
But clear when it fits.
Works well for organisations with 50 to 500 Microsoft 365 users, on Business Premium, E3 or E5, with a small internal IT team or external IT partner without a dedicated security team.
Sound familiar?
- “We don't really know how secure our Microsoft 365 environment actually is.”
- “Our accountant or insurer is asking for proof that we're in control.”
- “We need to do something about NIS2, but don't know where we stand.”
- “We see a Secure Score, but not what to fix first.”
- “We're probably paying for licences nobody uses.”
Often relevant for
Also relevant if you're part of the critical supply chain of a larger customer.
Free resource library
Practical downloads.
Ready to use.
Three compact tools to discuss Microsoft 365 security, NIS2 preparation and the dashboard internally.
Security checklist
Microsoft 365 Security Basic Checklist
Twelve practical checks covering MFA, admins, mail security, accounts, devices and logging.
Download checklist ↓NIS2 preparation
NIS2 Preparation Checklist
Ten questions on responsibilities, risks, incident response, continuity and demonstrable evidence.
Download checklist ↓Product overview
M365 Security Dashboard Brochure
A clear overview of the main dashboard modules, our process and capabilities.
Download brochure ↓Real dashboard output
View two complete sample reports.
This is what the dashboard's information looks like once translated into a report for management, preparation and evidence.
M365 Management Report
A management-focused report with an overview, findings, scores and concrete points of attention.
Open sample report ↗NIS2 Evidence Report
An example of measures, evidence coverage and progress in preparing for NIS2.
Open sample report ↗Demo environment · all organisations, users and metrics shown are fictional.
Manual or automatic?
Prefer running PowerShell commands, or a dashboard that does it for you?
With PowerShell you can run individual checks yourself. The MK Dashboard gathers the same signals automatically and turns them into overview, priority and follow-up.
Check per user whether MFA is registered and available.
Import-Module Microsoft.Graph.Reports
Connect-MgGraph -Scopes 'AuditLog.Read.All' -NoWelcome
Get-MgReportAuthenticationMethodUserRegistrationDetail -All |
Select UserDisplayName, UserPrincipalName,
IsMfaRegistered, IsMfaCapable |
Format-Table -AutoSize
Find disabled accounts that still have licences assigned.
Import-Module Microsoft.Graph.Users
Connect-MgGraph -Scopes 'User.Read.All' -NoWelcome
Get-MgUser -All -Property DisplayName,
UserPrincipalName,AccountEnabled,AssignedLicenses |
Where-Object {
-not $_.AccountEnabled -and
$_.AssignedLicenses.Count -gt 0
} | Select DisplayName, UserPrincipalName
Show verification, default setting and authentication for domains.
Import-Module Microsoft.Graph.Identity.DirectoryManagement
Connect-MgGraph -Scopes 'Domain.Read.All' -NoWelcome
Get-MgDomain -All |
Select Id, IsVerified, IsDefault,
AuthenticationType |
Sort-Object IsDefault -Descending |
Format-Table -AutoSize
Individual checks, individual results.
- Run and maintain commands
- Interpret the output yourself
- Export and compare
- Manually decide what's first
Automatic insight. Always in view.
- Checks run centrally
- Risks explained clearly
- Progress and history visible
- Concrete actions by priority
Try examples in a test environment first, and always review the requested Microsoft Graph permissions.
All downloads are for information only. Checklists do not replace a technical audit, official assessment or legal advice.
Frequently asked questions
Short answers.
No fine print.
The questions that come up most about the M365 Security Dashboard, NIS2, and what it is and isn't for.
What is the M365 Security Dashboard? +
The M365 Security Dashboard turns complex Microsoft 365 data into clear risks, concrete actions and reports anyone can understand. It continuously gathers technical and organisational evidence of digital resilience and supports preparation for NIS2, the Dutch Cyber Security Act and a CYRA-IT self-assessment.
Who is the dashboard a good fit for? +
It works well for organisations with 50 to 500 Microsoft 365 users, on Business Premium, E3 or E5, with a small internal IT team or external IT partner without a dedicated security team.
How does the dashboard relate to NIS2? +
The dashboard brings measures, open actions and evidence coverage together for the Cyber Security Act (NIS2), so you know what is already demonstrably in place and where the next step lies.
Which Microsoft 365 licence do I need? +
The dashboard reads whatever Microsoft makes available. If your organisation doesn't have a particular licence, the dashboard shows that honestly instead of an empty field. See the full breakdown by licence →
How quickly will I know where I stand? +
With a no-obligation baseline assessment you'll know where your organisation stands within a week, without it taking weeks of work.
Does the dashboard replace an official audit or certification? +
No. The dashboard supports preparation for NIS2, the Dutch Cyber Security Act and a CYRA-IT self-assessment, but it does not replace an official CYRA assessment, self-declaration, audit or certification.
Ready for more insight?
See what the M365 Security Dashboard shows.
We'll discuss what you want to track, show you the dashboard, and explain what support comes with it. Call, email or send a WhatsApp message for a no-obligation introduction.
2152 LN Nieuw-Vennep
Dashboard support · Business SMS
VAT NL005507726B61