Etcher dont detect all drives aviables

@lagaffe91 I couldn’t reproduce this on my windows computer.

Etcher uses drivelist to list drives.
On windows this relies on some C++ code.
It would be really helpful if you could try installing drivelist from sources directly and tried it (you’ll need to install node and some tooling first).

git clone https://github.com/balena-io-modules/drivelist.git
cd drivelist
npm i
./node_modules/.bin/ts-node example/index.ts

This should output the list of drives. If your drive is missing, something must be wrong in https://github.com/balena-io-modules/drivelist/blob/master/src/windows/list.cpp .

1 Like