mirror of
https://github.com/KelvinTegelaar/CIPP.git
synced 2026-04-25 00:06:06 +03:00
[GH-ISSUE #5111] [Feature Request]: Add Report for Active Sync Versions #2439
Labels
No labels
API
Feature
NotABug
NotABug
Planned
Sponsor Priority
Sponsor Priority
bug
documentation
duplicate
enhancement
needs more info
no-activity
no-priority
not-assigned
pull-request
react-conversion
react-conversion
roadmap
security
stale
unconfirmed-by-user
unconfirmed-by-user
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/CIPP#2439
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dragfang23 on GitHub (Dec 18, 2025).
Original GitHub issue: https://github.com/KelvinTegelaar/CIPP/issues/5111
Please confirm:
Problem Statement
Referring to this: https://www.bleepingcomputer.com/news/microsoft/microsoft-to-block-exchange-online-access-for-outdated-mobile-devices/
"Starting March 1, 2026, devices running ActiveSync versions lower than 16.1 will no longer be able to connect to our services. EAS 16.1 was released as a part of Exchange Server and Exchange Online in June 2016."
Currently no way to pull this out of CIPP, this powershell reports on the devices:
Get-MobileDevice | Where-Object {($.ClientType -eq 'EAS' -or $.ClientType -match 'ActiveSync') -and $.ClientVersion -and ([version]$.ClientVersion -lt [version]'16.1')} | Sort-Object UserDisplayName | Select-Object UserDisplayName, UserPrincipalName, DeviceId, DeviceModel
Keen to get this as a report we can run.
Benefits for MSPs
Save time having to log into each tenant and manually run, its going to affect users on march 2026 who have outdated mobile phones and devices, would be important to notify these users ahead of time.
Value or Importance
nice-to-have but would ad ability for MSP to notify customers who have outdated devices ahead of microsoft shutdown.
PowerShell Commands (Optional)
Get-MobileDevice | Where-Object {($.ClientType -eq 'EAS' -or $.ClientType -match 'ActiveSync') -and $.ClientVersion -and ([version]$.ClientVersion -lt [version]'16.1')} | Sort-Object UserDisplayName | Select-Object UserDisplayName, UserPrincipalName, DeviceId, DeviceModel