How to audit azure fileshare delete modify etc. events when using Microsoft Entra Kerberos authentication

Agnes Compeau 20 Reputation points
2026-06-17T14:20:19.9433333+00:00

Hello,

We are in a process of migrating our dept. shares to Azure Files and were under impression that our third-party tool can monitor the shares, however, it appeared that it can only monitor the shares when ADDS auth is being used. In our instance we need to have Microsoft Entra Kerberos auth turned on as we want to allow our Citrix users access to file shares from their local (domain joined) laptops without getting in through Citrix. Is there a way to setup basic auditing in this configuration? Please let me know

Agnes Compeau

Azure Files
Azure Files

An Azure service that offers file shares in the cloud.


Answer accepted by question author

AI answer

2026-06-17T14:20:41.1433333+00:00

Azure Files with Microsoft Entra Kerberos authentication doesn't change what the service logs at the platform level. For file operations such as delete, modify, and read, auditing is done via Azure Storage logging rather than NTFS-style on-premises file server auditing.

In this configuration, basic auditing can be achieved by enabling and querying diagnostic logs for the File service on the storage account:

  1. Enable Azure Monitor diagnostic logs for the File service on the storage account.
  2. Send these logs to a Log Analytics workspace.
  3. Use Kusto queries over the File service logs to identify operations such as read, write, delete, and list, including which identity performed them and when.

These logs capture data-plane operations (for example, file reads and writes) and can be used to approximate “who deleted/modified/accessed what and when” even when Microsoft Entra Kerberos is used for SMB access.

Note that Azure Files doesn't expose a native "last accessed" timestamp on files or folders; only CreationTime, LastWriteTime, and ChangeTime are stored. For last access information, diagnostic logs must be used.


References:

AI-generated content may be incorrect. Read our transparency notes for more information.

Was this answer helpful?

1 person found this answer helpful.

0 additional answers

Sort by: Oldest

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.