It seems that I did everything right ..
but I have such an error ...
C:\Users\user>CD d:\distr\btcrecover-master\btcrecover-master
C:\Users\user> C:\python27\python btcrecover.py --wallet default_wallet --tokenlist token.txt --typos-capslock --typos-swap --typos-repeat --typos-delete --typos-case --autosave savefile
C:\python27\python: can't open file 'btcrecover.py': [Errno 2] No such file or directory
The problem is that you are still in "C:\Users\user"...
Windows has this 'awesome' feature where you cannot use "CD" (Change Directory)... to change to a different
drive and directory at the same time.
So your first command:
CD d:\distr\btcrecover-master\btcrecover-master
Simply changed the default starting location on D:
in the background.Try these commands one at a time:
D:
CD \distr\btcrecover-master\btcrecover-master
C:\python27\python btcrecover.py --wallet default_wallet --tokenlist token.txt --typos-capslock --typos-swap --typos-repeat --typos-delete --typos-case --autosave savefile
NOTE: After you use the "D:" command to switch to D: drive... Make sure that the prompt starts with "D:\>"
Also, make sure a copy of your "default_wallet" file is in the "d:\distr\btcrecover-master\btcrecover-master", otherwise btcrecover will fail saying that it can't find the wallet file.