Storage Explorer will not start. Instead you get a dialog titled A JavaScript error occurred in the main process, usually with a stack trace behind it. It is an Electron crash during startup, not a problem with your Azure account.
One recurring cause is the telemetry disk-retry cache failing to write. Turning it off gets the app to start:
settings.json in a text editor."application.other.enableAppInsightsDiskRetryCache" to
false. If the key is not there, add it.An EEXIST in the message points at a leftover file or lock in the app's data
directory. Quit the app, rename its data folder so it starts clean, and sign in again. You
lose attached accounts, not data in Azure.
This class of failure comes with running a full desktop application for what is often a read-only task. Browsing containers and reading a blob only needs the storage REST API, which is why lighter tools do not have a main process to crash. Ours is listed below.
These guides are written by sellerkit. We publish JetBrains IDE plugins, including one for Azure Blob Storage, listed below. Everything above works whether or not you use it.
Our plugin declares no upper IDE build limit, makes no network call until you press Connect, and each release is run through the JetBrains Plugin Verifier against multiple IDE versions before it ships.