You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/files/files-managed-identities.md
+17-13Lines changed: 17 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: This article explains how you can authenticate managed identities t
4
4
author: khdownie
5
5
ms.service: azure-file-storage
6
6
ms.topic: how-to
7
-
ms.date: 03/02/2026
7
+
ms.date: 03/04/2026
8
8
ms.author: kendownie
9
9
ms.custom:
10
10
- devx-track-azurepowershell
@@ -229,11 +229,11 @@ To prepare your client VM or Windows device to authenticate by using a managed i
229
229
230
230
1. Sign in to your VM or device that has the managed identity assigned and open a PowerShell window as administrator. You need either PowerShell 5.1+ or PowerShell 7+.
231
231
232
-
1. Install the [Azure Files SMB Managed Identity Client](https://www.powershellgallery.com/packages/AzFilesSmbMIClient/1.0.4) PowerShell module and import it:
232
+
1. Install the [Azure Files SMB Managed Identity Client](https://www.powershellgallery.com/packages/AzFilesSmbMIClient/) PowerShell module and import it:
233
233
234
234
```powershell
235
-
Install-Module AzFilesSMBMIClient
236
-
Import-Module AzFilesSMBMIClient
235
+
Install-Module AzFilesSmbMIClient
236
+
Import-Module AzFilesSmbMIClient
237
237
```
238
238
239
239
1. Check your current PowerShell execution policy by running the following command:
@@ -253,7 +253,7 @@ To prepare your client VM or Windows device to authenticate by using a managed i
253
253
Before you can mount the file share by using the managed identity, refresh the authentication credentials and specify your storage account endpoint. To copy your storage account URI, go to the storage account in the Azure portal and then select **Settings** > **Endpoints** from the service menu. Be sure to copy the entire URI including the trailing slash: `https://<storage-account-name>.file.core.windows.net/`
This command gets an OAuth token and inserts it in the Kerberos cache. It auto-refreshes when the token is close to expiration. You can optionally omit the `refresh`.
@@ -290,20 +290,24 @@ Run the following commands to install `azfilesauth` on Ubuntu 22.04:
0 commit comments