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-redundancy.md
+23-9Lines changed: 23 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Understand the data redundancy options available for Azure file sha
4
4
author: khdownie
5
5
ms.service: azure-file-storage
6
6
ms.topic: concept-article
7
-
ms.date: 09/10/2025
7
+
ms.date: 03/09/2026
8
8
ms.author: kendownie
9
9
ms.custom: references_regions
10
10
# Customer intent: "As a data engineer, I want to select the appropriate data redundancy option for Azure file shares, so that I can ensure optimal availability and disaster recovery tailored to my organization's needs."
@@ -211,19 +211,33 @@ To view region supportability based on different billing models, use Azure Power
211
211
# [PowerShell](#tab/azure-powershell)
212
212
213
213
```powershell
214
-
# Login to Azure account
214
+
Powershell:
215
+
216
+
# Login
215
217
Connect-AzAccount
218
+
# (Optional but recommended if you have multiple subs)
219
+
# Set-AzContext -Subscription $subscriptionID
216
220
217
-
# Track down the subscription ID in GUID format
218
221
$subscriptionID = "your-subscription-id-number"
219
222
220
-
# Get Token
221
-
$token = Get-AzAccessToken
223
+
# Get token (now SecureString by default)
224
+
$secureToken = (Get-AzAccessToken).Token # SecureString now [1](/powershell/module/az.accounts/get-azaccesstoken?view=azps-15.3.0)
222
225
223
-
# Invoke SRP list SKU API, and get the returned SKU list
0 commit comments