An Azure tool that is used to manage cloud storage resources on Windows, macOS, and Linux.
Hi Usman Ghani
The error “Failed to start delete – Insufficient credentials” in Azure Storage Explorer typically happens due to a mismatch between the **authentication **method used and the **permissions **required to perform the operation (in this case, delete).
You uploaded files using a SAS token, which only grants limited permissions defined when the SAS was generated. However, now you're logged in with an Azure AD account (even as a Global Administrator), but Azure AD roles don't automatically grant you access to storage data unless you're assigned RBAC roles at the Storage Account or container level.
Even though you're logged in as a Global Administrator, you need explicit access to the storage data, typically via an RBAC role like:
- Storage Blob Data Contributor (for read/write/delete)
The above role must be assigned at either the storage account, container, or resource group level.
Now go to your Microsoft Azure Storage Explorer and click sign in azure -> Azure -> sign-in with account ->Now it will show like below
Now you can able to delete the file with your proper RBAC role.
Also, I can able to see in the storage browser that you are connected your blob container with SAS token.
You can also try to connect the blob container with proper SAS token with delete permission.
Paste the SAS URL in the Storage browser:
After establishing the correct connection, the file has now been deleted from Blob storage in Microsoft Azure Storage Explorer.
Reference:
Sign in to Azure Storage Explorer | Microsoft Learn
Hope this answer helps! please let us know if you have any further queries. I’m happy to assist you further.
Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.