Skip to content

Commit b1cb31c

Browse files
committed
Acrolinx fixes.
1 parent 3b1d276 commit b1cb31c

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/storage/files/storage-files-enable-soft-delete.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services: storage
1212

1313
# How to enable soft delete on Azure file shares
1414

15-
Azure Files offers soft delete for file shares so that you can easily recover your data when it's mistakenly deleted by an application or other storage account user. To learn more about soft delete, see [How to prevent accidental deletion of Azure file shares](storage-files-prevent-file-share-deletion.md).
15+
Azure Files offers soft delete for file shares so that you can easily recover your data if you mistakenly the file share. To learn more about soft delete, see [How to prevent accidental deletion of Azure file shares](storage-files-prevent-file-share-deletion.md).
1616

1717
## Applies to
1818
| Management model | Billing model | Media tier | Redundancy | SMB | NFS |
@@ -41,12 +41,12 @@ The following sections show how to enable and use soft delete for Azure file sha
4141

4242
1. Sign in to the [Azure portal](https://portal.azure.com).
4343
1. Navigate to your storage account and select **File shares** under **Data storage**.
44-
1. Select **Disabled** next to **Soft delete**. The **Soft delete** settings pane will appear.
44+
1. Select **Disabled** next to **Soft delete**.
4545
1. Select **Enabled** for **Soft delete for all file shares**.
4646
1. Under **File share retention period in days**, use the slider to specify a number between 1 and 365 days.
4747
1. Select **Save** to confirm your data retention settings.
4848

49-
:::image type="content" source="media/storage-how-to-recover-deleted-account/files-enable-soft-delete-new-ui.png" alt-text="Screenshot of the storage account soft delete settings pane. Highlighting the file shares soft delete section, enable toggle, set a retention period, and save. This will enable soft delete for all file shares in your storage account.":::
49+
:::image type="content" source="media/storage-how-to-recover-deleted-account/files-enable-soft-delete-new-ui.png" alt-text="Screenshot of the storage account soft delete settings pane. Highlighting the file shares soft delete section, enable toggle, set a retention period, and save. This enables soft delete for all file shares in your storage account.":::
5050

5151
# [PowerShell](#tab/azure-powershell)
5252
To enable soft delete, you must update the settings for all Azure file shares, also known as the `FileService` properties. The following example enables soft delete for all file shares in a storage account. Remember to replace `<resource-group>` and `<storage-account>` with the appropriate values for your environment.
@@ -99,15 +99,15 @@ az storage account file-service-properties show \
9999
To restore a soft deleted file share:
100100

101101
1. Navigate to your storage account and select **File shares**.
102-
1. On the file share blade, enable **Show deleted shares** to display any shares that have been soft deleted.
102+
1. On the file share blade, enable **Show deleted shares** to display any shares that are soft deleted.
103103

104-
This will display any shares currently in a **Deleted** state.
104+
This displays any shares currently in a **Deleted** state.
105105

106-
:::image type="content" source="media/storage-how-to-recover-deleted-account/undelete-file-share.png" alt-text="If the status column, the column next to the name column, is set to Deleted, then your file share is in a soft deleted state. And will be permanently deleted after your specified retention period.":::
106+
:::image type="content" source="media/storage-how-to-recover-deleted-account/undelete-file-share.png" alt-text="If the status column, the column next to the name column, is set to Deleted, then your file share is in a soft deleted state, and is be permanently deleted after your specified retention period.":::
107107

108-
1. Select the share and select **undelete**. This will restore the share.
108+
1. Select the share and select **undelete** to restore the share.
109109

110-
You can confirm the share is restored since its status switches to **Active**.
110+
You can confirm the share is restored when its status switches to **Active**.
111111

112112
:::image type="content" source="media/storage-how-to-recover-deleted-account/restored-file-share.png" alt-text="If the status column, the column next to the name column, is set to Active, then your file share has been restored.":::
113113

@@ -121,7 +121,7 @@ Get-AzRmStorageShare `
121121
-IncludeDeleted
122122
```
123123

124-
Once you've identified the share you'd like to restore, you can use it with the following command to restore it:
124+
Once you identify the share you want to restore, you can use the following command to restore it:
125125

126126
```PowerShell
127127
Restore-AzRmStorageShare `
@@ -140,7 +140,7 @@ az storage share-rm list \
140140
--include-deleted
141141
```
142142

143-
Once you've identified the share you'd like to restore, you can restore it with the following command:
143+
Once you identify the share you'd like to restore, you can restore it with the following command:
144144

145145
```azurecli
146146
az storage share-rm restore -n deletedshare --deleted-version 01D64EB9886F00C4 -g yourResourceGroup --storage-account yourStorageaccount
@@ -155,11 +155,11 @@ If you want to stop using soft delete, follow these instructions. To permanently
155155
# [Portal](#tab/azure-portal)
156156

157157
1. Navigate to your storage account and select **File shares** under **Data storage**.
158-
1. Select **Enabled** next to **Soft delete**. The **Soft delete** settings pane will appear.
158+
1. Select **Enabled** next to **Soft delete**.
159159
1. Select **Disabled** for **Soft delete for all file shares**.
160160
1. Select **Save** to confirm your data retention settings.
161161

162-
:::image type="content" source="media/storage-how-to-recover-deleted-account/files-disable-soft-delete.png" alt-text="Disabling soft delete will allow you to immediately and permanently delete all file shares in your storage account.":::
162+
:::image type="content" source="media/storage-how-to-recover-deleted-account/files-disable-soft-delete.png" alt-text="Disabling soft delete allows you to immediately and permanently delete any file shares in your storage account.":::
163163

164164
# [PowerShell](#tab/azure-powershell)
165165
You can use the following command to disable soft delete on your storage account.

0 commit comments

Comments
 (0)