IAMinerva
HomeBlogAbout
m3M365 NewscoMicrosoft CopilotteMicrosoft TeamsshSharePoint & OneDriveinIntune & SecurityexExchange & OutlookpoPower PlatformazAzure & Entra IDtuTutorials & GuidesevEvents & ConferencesseSecuritywiWindows
IAMinerva

Professional blog dedicated to the Microsoft 365 ecosystem.

Quick links

HomeBlogAboutNewsletter

Stay informed

Get the latest Microsoft 365 news delivered straight to your inbox.

© 2026 IAMinerva. All rights reserved.

Built withNext.js&Tailwind
Accès sécurisé BYOD avec Microsoft Entra Private Access
BlogAzure & Entra IDSecure BYOD Access with Microsoft Entra Private Access
Azure & Entra ID#Microsoft Entra#BYOD#Zero Trust

Secure BYOD Access with Microsoft Entra Private Access

Discover how to enable secure access to internal resources from BYOD devices with Microsoft Entra Private Access. Complete guide and PowerShell scripts.

Houssem MAKHLOUF
March 10, 2026
6 min read

TL;DR par Minerva

généré par IA

Discover how to enable secure access to internal resources from BYOD devices with Microsoft Entra Private Access. Complete guide and PowerShell scripts.

Introduction

Microsoft Entra Private Access has just reached a major milestone in its Zero Trust strategy. While access to internal resources was previously reserved for managed devices (joined or hybrid), the new BYOD (Bring Your Own Device) functionality now opens these resources to personal devices registered in Entra ID.

i

Good to know

The Microsoft Entra Private Access BYOD feature is currently in public preview. Registered devices only benefit from Private Access, not Internet Access.

This evolution addresses the growing need for flexibility in modern enterprises, while maintaining a high level of security through the Zero Trust Network Access (ZTNA) architecture.

Technical requirements and necessary licenses

Existing Private Access infrastructure

Implementing BYOD requires an operational Microsoft Entra Private Access configuration. This infrastructure forms the foundation on which personal device access will rely.

✦

Tip

If you haven't yet deployed Private Access, consult the official documentation to establish your ZTNA infrastructure before enabling BYOD support.

Required Global Secure Access Client

The Global Secure Access Client version 2.26.108 or later is essential. This version brings native support for registered devices and guarantees an optimal user experience.

Download available in the Microsoft Entra administration center:

  • Navigation: Global Secure Access > Connect > Client download
  • Format: MSI package for manual or automated deployment

Simplified licensing model

i

Good to know

No additional licenses are required for BYOD. The feature is included in your existing Microsoft Entra Private Access license.

Recommended administrative roles

To respect the principle of least privilege, use these roles according to your needs:

  • Global Secure Access Administrator: complete configuration
  • Security Administrator: access policy management
  • Cloud Application Administrator: private applications management

BYOD traffic forwarding configuration

Private Access profile configuration steps

1

Access the administration center

Sign in to the Microsoft Entra portal (https://entra.microsoft.com) with an account having appropriate privileges.

2

Navigate to Traffic Forwarding

Go to Global Secure Access > Connect > Traffic forwarding. This section centralizes redirection profile management.

3

Configure assignments

Under Private access profile, select User and group assignments. Add users or groups authorized to use their personal devices.

Microsoft Entra Private Access BYOD configuration showing traffic forwarding profile and user and group assignments in the Entra admin center

!

Warning

Ensure that only users authorized by your security policy are assigned to the BYOD profile. Too broad an assignment can create security risks.

Deployment of client on BYOD devices

Global Secure Access Client installation

1

Download the client

Retrieve the GlobalSecureAccessClient.exe file from the Entra administration portal.

2

Run the installation

Launch the installer with administrator privileges. The installation is automated and requires no manual configuration.

⚡PowerShell
1# Silent installation for mass deployment
2msiexec /i "GlobalSecureAccessClient.msi" /quiet /norestart
3

Verify the installation

After installation, the client appears in the Windows system tray and is ready for first connection.

Microsoft Entra Private Access BYOD Global Secure Access Client installation successfully completed on Windows

Device registration process

First connection and registration

On first launch, the Global Secure Access Client automatically initiates the device registration process.

Microsoft Entra Private Access BYOD Global Secure Access client notification requesting sign in on Windows device

1

User authentication

Enter your work credentials in the Microsoft authentication window.

Microsoft Entra Private Access BYOD user sign in window displayed during Global Secure Access authentication

2

Registration confirmation

When the system asks "Sign in to all apps, websites, and services on this device?", select Yes. This action registers the device as Entra registered in your tenant.

Microsoft Entra Private Access BYOD device registration prompt asking to sign in to all apps and services

3

Restart and persistence

Restart the device to finalize registration. The connection will be automatically restored at startup.

✦

Tip

Device registration creates a unique identity in Entra ID, enabling the application of conditional access policies specific to BYOD devices.

Connection status verification

Global Secure Access Client interface

The client interface displays three essential pieces of information:

ElementExpected statusMeaning
Join typeEntra registeredPersonal device registered
Private Access channelConnectedActive secure tunnel
OrganizationTenant nameTenant correctly identified

Microsoft Entra Private Access BYOD connection status showing Entra registered device and private channel connected

Validation in the administration portal

To confirm registration on the server side:

⚡PowerShell
1# PowerShell script to verify registration
2Connect-MgGraph -Scopes "Device.Read.All"
3$user = Get-MgUser -UserId "user@domain.com"
4Get-MgUserRegisteredDevice -UserId $user.Id | Select-Object DisplayName, DeviceId, RegistrationDateTime

Microsoft Entra Private Access BYOD Entra registered device listed in Entra ID user device overview

Useful PowerShell scripts for administration

Report of registered BYOD devices

⚡PowerShell
1# Generate a report of BYOD devices
2Connect-MgGraph -Scopes "Device.Read.All", "User.Read.All"
3
4$registeredDevices = Get-MgDevice -Filter "trustType eq 'Workplace'" -All
5$report = @()
6
7foreach ($device in $registeredDevices) {
8 $owner = Get-MgDeviceRegisteredOwner -DeviceId $device.Id
9 $report += [PSCustomObject]@{
10 DeviceName = $device.DisplayName
11 DeviceId = $device.DeviceId
12 Owner = $owner.AdditionalProperties.userPrincipalName
13 RegistrationDate = $device.RegistrationDateTime
14 LastActivity = $device.ApproximateLastSignInDateTime
15 }
16}
17
18$report | Export-Csv -Path "BYOD_Devices_Report.csv" -NoTypeInformation

Cleanup of inactive devices

⚡PowerShell
1# Identify and remove BYOD devices inactive for more than 90 days
2$inactiveDate = (Get-Date).AddDays(-90)
3$staleDevices = Get-MgDevice -Filter "trustType eq 'Workplace' and approximateLastSignInDateTime lt $inactiveDate" -All
4
5foreach ($device in $staleDevices) {
6 Write-Host "Removing inactive device: $($device.DisplayName)"
7 Remove-MgDevice -DeviceId $device.Id -Confirm:$false
8}

Security considerations and best practices

Recommended conditional access policy

!

Warning

Implement conditional access policies specific to BYOD devices to maintain an appropriate level of security.

Examples of recommended controls:

  • Multi-factor authentication mandatory for all BYOD access
  • Device compliance: updated antivirus, encryption enabled
  • Geographic restrictions according to your needs
  • Time-limited sessions

Monitoring and audit

Enable detailed logging to track:

  • Connection attempts from BYOD devices
  • Access to sensitive resources
  • Behavioral anomalies

Glossary of technical terms

TermDefinition
BYOD (Bring Your Own Device)Policy enabling the use of personal devices to access company resources
Entra registeredRegistration type for personal devices in Microsoft Entra ID
Zero Trust Network Access (ZTNA)Security architecture verifying each access without implicit trust
Global Secure Access ClientSoftware agent enabling secure connection to resources via Entra
Private Access ProfileConfiguration defining accessible resources and authorized users

Conclusion

Microsoft Entra Private Access BYOD represents a significant advance in modern access management. By enabling secure integration of personal devices without compromising security, this solution addresses current hybrid work challenges while maintaining Zero Trust principles.

Organizations can now gradually abandon traditional VPN solutions in favor of a unified architecture, offering improved user experience and simplified management.

Useful links and resources

Official Microsoft documentation

  • Microsoft Entra Private Access overview
  • Global Secure Access Client deployment guide
  • Conditional access policy configuration

Additional references

  • Microsoft Zero Trust architecture
  • Enterprise BYOD best practices
  • Microsoft Graph PowerShell module
Share:
HM

Houssem MAKHLOUF

Microsoft 365 enthusiast & IT professional.

Previous article

Create a Microsoft Forms by Importing a Word or PDF Document

Mar 10, 2026
Next article

Microsoft Entra Passkeys: A New Step for Windows Hello

Mar 11, 2026

Related articles

Réseau de données avec une loupe et graphiques informatiques.azure

Azure Copilot Observability Agent: Diagnosing Your Applications

Discover Azure Copilot Observability Agent: automatically diagnose application problems and reduce resolution time with Azure AI.

Jun 29, 20267 min
Cadenas stylisé avec des éléments graphiques abstraits et du texte sur la sécurité.securite

New Microsoft 365 Security Adoption Model

Discover the Microsoft 365 security adoption guide based on Zero Trust principles: modular approaches and modern strategies.

Jun 29, 20264 min
Arbre stylisé en doré sur fond noir avec des éléments circulaires.azure

Choosing the Right Extension Type in Microsoft Entra

Discover Microsoft Entra extension types and choose the optimal configuration for your directory objects based on their usage.

Jun 27, 20264 min