For years, getting one file into a company’s data lake meant a support ticket to data engineering or a crash course in Azure tooling. A finance analyst who needed vendor data in place before the morning report had no clean option, even though she knew how to drag a file into a folder.
The Fabric OneLake Explorer closes that gap. It maps an organization’s entire OneLake into Windows File Explorer, so every workspace, lakehouse, and warehouse shows up as an ordinary local folder, with no portal and no scripts for routine work.
The timing is hard to ignore. Microsoft Fabric now serves more than 25,000 paying customers, including roughly 80 percent of the Fortune 500, and the Explorer reached general availability in March 2026. This guide walks through how it works, how to install and deploy it, how it compares to Azure Storage Explorer, and how to govern it in regulated industries.
Key Takeaways
- The Fabric OneLake Explorer maps a Fabric data lake into Windows File Explorer, removing the need for code or the portal for routine file operations.
- It uses the Windows Cloud Files API for on-demand access, so files appear locally as placeholders and download only when opened.
- Authentication runs through Microsoft Entra ID, which means existing Conditional Access and Microsoft 365 policies apply with no extra setup.
- It enforces the same workspace and item permissions as the Fabric portal and creates no new access path to data.
- The tool became generally available in March 2026 and installs silently through Intune or winget for enterprise rollouts.
- Deletions are immediate with no recycle bin, and managed Delta table files must never be edited through the Explorer.
Setting Up OneLake Access for the First Time?
Kanerika gets your Fabric environment running right.
What Is the Fabric OneLake Explorer?
OneLake is a single logical data lake for an entire organization. Like OneDrive, it comes with every Microsoft Fabric tenant and acts as the one place where analytics data lives.
The Fabric OneLake Explorer makes that idea literal. It surfaces every OneLake workspace the signed-in user is allowed to see, arranged as a hierarchy of workspaces, then Fabric items such as lakehouses and warehouses, then the Files and Tables folders inside each.
The application is not a sync client. It uses the Windows Cloud Files API for on-demand access, so files show up as placeholders and pull from OneLake only when opened.
A lakehouse holding terabytes of data will not consume terabytes of local disk. That distinction matters for laptops and virtual desktops with limited storage.
Through the Explorer, a user can reach the data they already have rights to:
- Every workspace they are permitted to see
- The Files folder of any lakehouse, holding Parquet, Delta, CSV, JSON, and unstructured files
- The Tables folder of any lakehouse, for inspection
- Warehouse file paths
- Shortcut folders, where data in AWS S3, Google Cloud Storage, or ADLS Gen2 appears as an ordinary local folder
What it deliberately leaves out is just as important:
- No compute, so no SQL queries and no notebook execution
- No pipeline-scale or bulk ingestion
- No background sync watching for local changes
- No recycle bin, so a deletion removes the file from OneLake at once
How the Fabric OneLake Explorer Works: Cloud Files API, ABFS, and Entra ID
The Fabric OneLake Explorer sits on the Windows Cloud Files API, the same foundation behind OneDrive placeholder files. Underneath, it talks to OneLake over the ABFS protocol, the Azure Blob File System.
OneLake supports the same ADLS Gen2 APIs and SDKs, which keeps it compatible with existing ADLS Gen2 tooling. Authentication runs through Microsoft Entra ID, so the application inherits whatever identity and access policies an organization already runs for Microsoft 365.
The system tray icon is the agent that does the work in the background. It holds authentication state, drives the Cloud Files API connection, and reports status.
When a user installs the application, they pick which account to sign in with. To switch accounts, they right-click the OneLake tray icon, choose Account, then Sign Out, which exits the application and pauses sync. When workspaces stop loading, the signed-in account is the first thing to check.
Several layers carry direct practical consequences:
- Windows File Explorer integration gives familiar drag and drop with no separate window
- The Cloud Files API keeps files local in appearance but undownloaded until opened
- The ABFS transport means a firewall must allow
*.dfs.core.windows.net - Entra ID brings single sign-on and automatic Conditional Access
- Microsoft Purview records every upload, download, and delete as an audit event
Understanding these layers explains most of the behavior teams run into later.

Keeping Files in Sync
Changes made through the Fabric OneLake Explorer sync to OneLake on their own, but changes made anywhere else do not appear until they are pulled in. To refresh after an edit in the Fabric portal, a Spark notebook, or another tool, right-click the workspace, item, or folder and select OneLake, then Sync from OneLake.
The same right-click menu jumps to the web portal, with View workspace online and View item online options that move between local files and Fabric without a browser detour.
Sync only runs while the machine is online and the application is open. Edits made offline show as sync pending until saved again, and files deleted offline reappear on the next refresh if they still exist in the service.
Managed vs Unmanaged Delta Tables in OneLake File Explorer
This is one of the most searched practical questions about the tool and one of the least documented in the official guides. Getting it wrong corrupts tables.
Managed tables are created without a LOCATION parameter, and Fabric decides where their files land in the Tables folder. Browsing a managed Delta table through the Explorer shows raw Parquet files and the _delta_log directory. Modifying or deleting anything in _delta_log directly will corrupt the table and break Delta time travel.
Unmanaged or external tables are created with an explicit LOCATION, their files live in the Files folder, and they allow more flexibility for file-level work.
The rule is simple. Use the Explorer to read managed table files for inspection, and never write to, rename, or delete files in the Tables folder of a managed Delta table. Every Delta table operation belongs in Fabric compute, whether notebooks, pipelines, or SQL analytics endpoints, so the log stays intact.
| Operation | Managed Delta Table | Unmanaged (External) Table | Files Folder |
|---|---|---|---|
| Browse or inspect files | Safe | Safe | Safe |
| Download files locally | Safe | Safe | Safe |
| Upload new files | Do not use | Use with caution | Safe |
| Delete files | Will corrupt table | Use with caution | Safe |
| Rename files | Will break Delta log | Will break references | Safe |
| Schema changes | Fabric compute only | Fabric compute only | N/A |
| Insert or update rows | Fabric compute only | Fabric compute only | N/A |
The pattern to remember is that the Files folder is the safe zone for direct file work, while the Tables folder of a managed table is read-only territory for anything beyond inspection. Treat any write to a managed table through the Explorer as a mistake waiting to surface.
OneLake File Explorer Version History and GA Status
OneLake File Explorer has shipped steadily since its first release. Excel editing arrived in late 2023, letting a user open a CSV or XLSX from OneLake, edit it, close it, and have the change sync back automatically. Update notifications and TLS 1.3 support followed in 2024, client-side diagnostic logs became available from version 1.0.10, and a Release Notes menu option from version 1.0.11.
The application now runs on .NET 8, and the May 2026 build is version 1.1.0.0. The fastest way to confirm the installed version on any machine is to right-click the tray icon and select About.
The larger milestone is status. The OneLake File Explorer reached general availability on March 31, 2026, which moves it out of preview and into a supported default for enterprise use.
Outgrowing the Explorer for Big Loads?
We at Kanerika migrate SSIS and legacy pipelines into Fabric.
OneLake File Explorer File Size Limits: When to Use Pipelines Instead
OneLake File Explorer is built for everyday file work, not bulk data movement. Very large single files and folders holding many thousands of small files will slow the interface or fail to transfer because on-demand access pages through the Cloud Files API one request at a time. Folders with tens of thousands of small files should be restructured with partitioning or handled through pipeline tooling.
Every file open also triggers a network call to OneLake’s ABFS endpoint. High-latency connections, such as an overseas office reaching a US-based Fabric region, will feel slow. Files needed repeatedly should be downloaded locally first rather than reopened from the lake each time.
| Task | Better Tool | Why |
|---|---|---|
| Routine single-file upload or download | OneLake File Explorer | Drag and drop, no credentials beyond Entra sign-in |
| Very large single files | Fabric Data pipelines, AzCopy, Azure SDK | The Explorer is not built for bulk transfer |
| Folders with many thousands of files | Pipeline tooling, partitioned structure | Cloud Files API pagination causes interface lag |
| Hundreds of files in parallel | AzCopy with parallel threads | It outperforms drag and drop by a wide margin |
| Any change to a managed Delta table | Fabric compute (notebooks, pipelines, SQL) | Direct edits corrupt the Delta log |
The decision comes down to scale and intent. For a single analyst moving a handful of files, the Explorer wins on simplicity, while pipelines and AzCopy win the moment volume or automation enters the picture.
How to Install and Silently Deploy OneLake File Explorer
Installation takes a few minutes on a standard Windows machine. A few prerequisites have to be in place first:
- Windows 10 version 1709 or later, or Windows 11, on a 64-bit platform
- A Microsoft Fabric license, free or paid, with workspace access set by permissions
- A Microsoft Entra ID organizational account rather than a personal Microsoft account
- Network access to
*.dfs.core.windows.net, allowlisted on strict firewalls - A direct network path, since the tool does not support proxy environments
The steps themselves are short.
- Download the
.msixinstaller from the Microsoft Download Center and confirm the version against the official release notes. - Run the installer and follow the prompts.
- Sign in with the organizational Microsoft account when prompted.
- Open Windows File Explorer, where OneLake now appears in the left panel.
- Expand OneLake, then a workspace, then a lakehouse or warehouse, then the Files or Tables folder.
After install, a quick check confirms everything works. At least one workspace should be visible, the signed-in account should be the Fabric tenant account rather than a personal one, and copying a small CSV into a lakehouse Files folder should show up in the Fabric portal within seconds.
Opening a Parquet file confirms the on-demand fetch works. If the OneLake tray icon is missing, the Cloud Files API driver did not register, and a restart followed by a reinstall usually fixes it.
Silent Deployment via Intune and winget
For multiple machines, the .msix package supports silent installation. The correct winget command is winget install --id=Microsoft.OneLakeFileExplorer -e. In Intune-managed environments, the MSIX package distributes as a line-of-business app through Microsoft Endpoint Manager.
The application auto-updates by default, but that path needs Microsoft Store access, which many enterprises block, so update management belongs in Intune with auto-update disabled and new MSIX versions pushed on a controlled cadence. Tenant admins can also disable the tool for the whole organization from the Microsoft Fabric admin portal, which stops it from launching and closes it on machines where it is already running. Mac and Linux users cannot run it at all, and Azure Storage Explorer is the cross-platform alternative.
Fabric OneLake Explorer vs Azure Storage Explorer
Both tools reach OneLake, but they suit different people and different work. OneLake File Explorer fits daily file operations on Windows for business users and analysts. Azure Storage Explorer fits deeper engineering work, cross-platform access, and debugging.
| Capability | OneLake File Explorer | Azure Storage Explorer |
|---|---|---|
| Platform | Windows only | Windows, Mac, Linux |
| Authentication | Entra ID, automatic | Entra ID plus SAS tokens |
| Browse Fabric workspaces natively | Yes | Through manual connection |
| Upload and download files | Yes, drag and drop | Yes |
| Edit files in Excel and sync back | Yes | No |
| View Delta log and partition files | Browse only, no write | Full file-level access |
| View storage metrics and container stats | No | Yes |
| Inspect ABFS path structure | No | Yes |
| Ease for non-technical users | High | Medium |
| Enterprise deployment | Intune or winget | Manual per machine |
| Best for | Daily operations, business users | Engineering, debugging, cross-platform |
The practical split is clean. A business analyst uploading a CSV for a pipeline reaches for the Explorer, while an engineer inspecting a _delta_log after a failed run or working from a Mac reaches for Azure Storage Explorer. Kanerika sets both up during Fabric rollouts so each role uses the tool that fits its work.
Curious How the Pieces Fit Together?
OneLake, lakehouses, and compute, explained.
OneLake File Explorer Permissions and OneLake Security Roles
The Fabric OneLake Explorer respects the same workspace permissions as the Fabric portal. Within a workspace, individual Fabric items can carry permissions separate from workspace roles, and those workspace roles form the first security boundary.
There is no separate permission model for the Explorer to manage. Access maps directly to Fabric roles:
- A Workspace Viewer can browse but cannot upload or delete
- A Contributor, Member, or Admin can browse, upload, and delete
- An item-level lakehouse reader sees only that lakehouse and cannot write
If a user cannot see a workspace in the Fabric portal, they cannot see it in the Explorer either, so the tool adds no shadow access path.
OneLake Security and Access Controls
OneLake security adds finer control on top of workspace roles. It is a role-based access model that lives natively with the data, enforced consistently whether a user queries through Spark, views a Power BI report, or explores through a Fabric data agent.
It supports folder, row, and column-level permissions, and the security even follows data accessed outside Fabric through apps such as Excel. ReadWrite access lets a user write through Spark notebooks, the Explorer, or OneLake APIs, which means a business user can be granted write access to one landing folder without access to the wider lakehouse. OneLake security reached general availability in May 2026, so data owners can now define these roles as a standing control rather than a preview feature.
Two more controls come for free with Entra ID and Purview. Because the Explorer authenticates through Entra ID, existing Conditional Access policies apply automatically, so an organization can require compliant devices, enforce MFA, or block unmanaged endpoints using the same rules it already runs for Microsoft 365. File operations through the Fabric OneLake Explorer also generate audit events in Microsoft Purview, capturing uploads, downloads, and deletes, which gives regulated industries a compliance trail with no extra instrumentation beyond enabling Purview audit logging.
Before rollout, three messages save the most support tickets:
- The tool is not a backup, since a deletion is immediate
- Changes are live, since a copied-in file reaches pipelines and notebooks the moment the upload finishes
- Access does not expand, since installing the Explorer never grants data a user could not already reach
How Do You Govern Fabric at Scale?
Access, compliance, and lineage in one guide.
Data Governance and Compliance in Regulated Industries
Frictionless data access is the feature, and it is also the risk surface, because easy access without guardrails is easy exfiltration. When a user opens a file, it caches temporarily on the local machine.
For organizations under GDPR, HIPAA, or other residency rules, files with PII or regulated data can reach endpoints. Microsoft Purview DLP policies can flag or block sensitive transfers using the same endpoint rules that govern SharePoint and OneDrive.
Sensitivity labels travel with the data. A file marked Confidential or Highly Confidential keeps that label when downloaded through the Fabric OneLake Explorer, which lets endpoint DLP act on it. Governance moving with the file is what makes the tool safe for finance and healthcare deployments, where regulated data reaches business machines and must stay controlled the whole way.

How OneLake File Explorer Fits into Microsoft Fabric Architecture
The Fabric OneLake Explorer is one entry point into a larger system, and a few connections make it more useful than it first appears.
Shortcuts surface external data as local folders. OneLake shortcuts connect a multi-cloud estate without moving data, whether it sits in Azure, AWS, Google Cloud, Oracle, on-premises, or platforms such as SAP, Snowflake, and Azure Databricks. In the Explorer, a shortcut to an S3 bucket appears as a normal folder, and a user browses it with no AWS credentials and no S3 console.
OneLake is also the data layer that feeds Fabric analytics and AI. Files dropped into a lakehouse landing folder through the Explorer become available to Fabric notebooks, semantic models, and Fabric data agents within minutes, with no intermediate ETL step. Kanerika’s Karl agent uses OneLake as its persistent foundation for real-time analytics insights, so a file contributed by a business user can feed automated insight rather than sitting unused in a shared drive.
For teams migrating from SSIS, Azure Data Factory, Informatica, or SQL Server, the Fabric OneLake Explorer is often the first Fabric tool business users meet. FLIP handles the pipeline conversion while the Explorer handles the human layer, giving analysts and operations teams a familiar way to interact with Fabric while engineering completes the migration. That split reduces the change-management burden that usually stalls adoption.
OneLake File Explorer Use Cases Across Data Roles
The tool lands in different parts of an organization depending on the role:
- Self-service ingestion lets finance, operations, and field staff drop Excel or CSV files into a lakehouse landing folder for a downstream pipeline to pick up, with no portal training and no engineering ticket. Built-in Excel editing lets a user open a file, edit it, close it, and have the change sync back.
- Fast output validation lets engineers pull Parquet files locally after a run and check schema or row counts in DuckDB or a pandas notebook, faster than clicking through the portal.
- Local modeling lets data scientists download raw Parquet for R or Python work without configuring an ABFS mount.
- Migration staging lets teams drag source directories into lakehouse Files folders for smaller datasets or spot checks while FLIP handles the structured pipeline work.
- Reference data management lets actuarial or compliance teams deposit files on a schedule, with Purview logging every deposit for review.
| Use Case | Primary User | Signal It Fits |
|---|---|---|
| Self-service file ingestion | Business analyst, field operations | Zero portal training needed, files follow a predictable schema |
| Output validation after a run | Data engineer | Quick schema or row-count check, no full QA pipeline needed |
| File staging during migration | Data engineering and IT | Smaller datasets or spot checks alongside pipeline work |
| Local modeling | Data scientist | Files needed locally, an ABFS mount would only add friction |
| Reference data management | Data steward, compliance | Scheduled deposits that need an automatic audit trail |
Across these roles the common thread is removing a step that used to require either an engineer or a portal. Pipelines stay in place either way. What the tool removes is the friction that kept business users from contributing data at all.
Troubleshooting Common OneLake File Explorer Issues
Most problems trace to one of a few root causes. The wrong account, missing permissions, a blocked endpoint, or a conflict with Windows update behavior covers nearly all of them.
| Issue | Likely Cause | Fix |
|---|---|---|
| No workspaces visible after install | Signed into a personal Microsoft account | Sign out from the tray icon, sign in with the organizational account |
| File upload fails silently | Viewer role cannot upload | Confirm the role in the Fabric portal and request Contributor access |
| Lakehouse files will not load | Firewall blocking *.dfs.core.windows.net | Add the Fabric ABFS endpoints to the firewall allowlist |
| Application will not connect at all | Proxy environment, which is unsupported | Work with the network team to create a direct route to the endpoint |
| Auto-update fails on corporate machines | Store access blocked by policy | Manage updates through Intune and disable auto-update |
| Deleted file reappears in Tables folder | Delta checkpoint regenerating files from _delta_log | Never manage managed Delta table files through the Explorer |
| Very slow directory listing | Folder holds many thousands of files | Restructure with partitioning or use pipeline tooling |
| Files appear empty after download | On-demand fetch interrupted by network instability | Re-download, check the connection, validate critical files |
For sync issues, client-side logs live under %temp%\OneLake\Diagnostics\, reachable by right-clicking the tray icon and choosing Diagnostic operations then Open logs folder. Placeholders and any downloaded files live under %USERPROFILE%\OneLake - Microsoft\ on the local machine. File icons also signal state in Windows File Explorer: a blue cloud means online-only, a green tick means downloaded locally, and sync arrows mean a transfer is in progress or has an error. Permission changes can take up to two hours to propagate, so a sign-out and sign-in often clears a stale view.
Known Limitations
A few documented constraints cause sync failures that look like bugs, so teams should check them first:
- Workspace or file names with a “/” character, encoded characters such as %23, GUID-like patterns, or Windows reserved characters fail to sync
- Windows File Explorer is case insensitive while OneLake is case sensitive, so when two files share a name in different cases, Explorer shows only the oldest
- Files marked read-only on the local machine are not synced, which is by design to protect local permissions
- The application will not start if Windows Search is disabled
Microsoft Fabric Governance: How Kanerika Secures Enterprise OneLake Access
Kanerika is a Microsoft Solutions Partner for Data and AI with the Analytics Specialization and has implemented Fabric across financial services, healthcare, logistics, and manufacturing. The recurring lesson is that organizations which retrofit governance after rollout spend more time and money than those that build it in from the start.
Kanerika’s KANGovern framework treats Explorer access as a first-class policy concern, which in practice means:
- Reviewing workspace permissions before the tool reaches business users
- Enabling Purview audit logging and connecting it to the SIEM before any file operations begin
- Scoping DLP policies to OneLake as part of the initial baseline
- Configuring folder-level OneLake security roles for lakehouses shared across teams
KANGuard, the monitoring layer for Fabric environments, watches Purview audit logs for anomalous access such as unusual download volumes, off-hours activity, or operations from unrecognized endpoints.
The measurable side comes from the migration work that usually accompanies these rollouts. Kanerika’s FLIP accelerator automates pipeline conversion from SSIS, Azure Data Factory, and Informatica into Fabric-native pipelines, cutting overall migration effort by 50 to 60 percent and annual licensing costs by 75 percent.
That governance-first approach shows up in client work, as the Southern States Material Handling rollout demonstrates.
How Southern States Material Handling Cut Data Silos with Microsoft Fabric
Southern States Material Handling, a Toyota and Raymond forklift dealer, runs a national network of service centers and warehouses. Kanerika rebuilt its reporting on Microsoft Fabric with OneLake as the shared data layer.
Challenge
- Data sat in silos across SQL Server, SharePoint, and other systems, which made reporting slow and inconsistent
- KPI accuracy was low, so managers hesitated to trust the numbers
- Service, parts, and fleet teams had no real-time view of operations
Solution
- A Microsoft Fabric Lakehouse unified the sources, with OneLake as the single store and access layer
- Kanerika cleaned the data and built role-based Power BI dashboards on a tiered model of one executive dashboard, three managerial scorecards, and ten operational reports
- Field and operations teams contribute data through a familiar Windows interface while Fabric handles validation and routing
Results
- 90 percent data accuracy across operational reporting
- 85 percent higher operational visibility for managers
- 8 to 10 percent lower inventory costs
- 3 to 5 percent improvement in labor efficiency
These outcomes come from Microsoft’s published SSMH customer story. As the company’s CIO, Delano Gordon, described it, Kanerika’s flexibility in matching Microsoft Fabric with SSMH’s goals is building a system designed to drive better results across operations.
Want Results Like These for Your Team?
We handle deployment, governance, and migration.
Wrapping Up
OneLake File Explorer will not replace pipelines or a governance framework. What it removes is friction, the analyst who could not upload without help, the engineer clicking through the portal to inspect one file, the admin with no clean way to put Fabric in front of non-technical staff. The payoff comes from pairing that access with deliberate governance, with Purview logging, DLP policies, and reviewed permissions in place before the install reaches anyone. For organizations mid-migration from Azure Data Factory, SSIS, or SQL Server, the tool helps the new environment feel native to people who never touched the old one, and adoption is where Fabric investments succeed or stall.
FAQs
Is OneLake File Explorer free to download and use?
The application is free. Access to OneLake data through it depends on the user’s Microsoft Fabric license and the workspace permissions granted by admins, not on the application itself. Any Fabric license tier works, and what a user can see and do is decided entirely by their assigned roles within each workspace and item.
Does OneLake File Explorer work on Mac or Linux?
No, the application is Windows only and runs on 64-bit Windows 10 version 1709 or later and Windows 11. Mac and Linux users should use Azure Storage Explorer instead, signing in with Entra ID credentials to browse OneLake paths. That tool also gives engineers fuller file-level access for debugging tasks that the Windows Explorer does not expose.
Can the Fabric OneLake Explorer be used to edit Delta tables?
A user can browse the physical files of a Delta table, including the Parquet files and the _delta_log directory, for inspection. Modifying or deleting those files through the Explorer will corrupt the table and break time travel. Every Delta table operation, from schema changes to row updates, must go through Fabric compute such as notebooks, pipelines, or SQL endpoints to keep the log intact.
Does it sync automatically like OneDrive?
Not in the background. It uses the Windows Cloud Files API for on-demand access, so files download when opened and upload when copied in, with no constant watching for local changes. The one exception is Excel editing, where opening a CSV or XLSX, making changes, and closing the file starts the sync to OneLake automatically and shows the update in the Fabric portal right after.
Will an IT department see when files are downloaded through the Explorer?
Yes, when Microsoft Purview audit logging is enabled, which it should be in any enterprise deployment. Upload, download, and delete operations all generate audit events that administrators with Purview access can review. This is what gives regulated industries the evidence trail they need, and it is also why governance teams should enable logging before rollout rather than after.
Can OneLake File Explorer be deployed silently to multiple machines?
Yes. IT admins can distribute the MSIX package through Microsoft Intune as a line-of-business app, or run winget install –id=Microsoft.OneLakeFileExplorer -e for developer machine automation. For controlled environments, disabling Store-based auto-update and pushing new MSIX versions through Intune prevents version fragmentation across a fleet of managed machines.
What happens when a file is deleted in the Explorer?
The deletion is immediate in OneLake, and there is no recycle bin at the Explorer level. For managed Delta tables, historical versions remain reachable through Delta time travel using Fabric compute, but the Explorer itself offers no recovery. Treating a deletion as permanent is the safest assumption, which is why user onboarding should make this point before anyone starts
What is the difference between OneLake File Explorer and OneLake Shortcuts?
They solve different problems. OneLake shortcuts create virtual references to external data such as AWS S3 or ADLS Gen2 inside a lakehouse without moving the data. OneLake File Explorer gives local Windows access to whatever sits inside OneLake, including shortcut folders. A user browsing a shortcut to an S3 bucket through the Explorer sees that data as a local folder without needing AWS credentials.




