I am newbie about this, it is quite different from other wallets.
Can someone walk me through the wallet set up? step by step please
I just downloaded from
https://mega.co.nz/#!LZIGlI7Z!poO1z7XIFIYkMLLH9Y82Uo055Ov-IgEVVdrItHR5h78
double click simplewallet.exe
it ask me about " wallet file name"
what should I do? Thanks,
You want to start it with the batch file.
Basically open a notepad document and copy and paste this into it :
@echo off
tasklist /FI "IMAGENAME eq bitmonerod.exe" 2>NUL | find /I /N "bitmonerod.exe">NUL
if not %ERRORLEVEL% == 0 (
echo Starting node...
start /MIN bitmonerod.exe
) else (
echo Node already started.
)
tasklist /FI "IMAGENAME eq simplewallet.exe" 2>NUL | find /I /N "simplewallet.exe">NUL
if not %ERRORLEVEL% == 0 (
if exist wallet.bin.keys (
echo Starting previous wallet...
start simplewallet.exe --wallet wallet.bin
) else (
echo Starting new wallet...
start simplewallet.exe --generate-new-wallet wallet.bin
)
) else (
echo Wallet already started.
)
Then click save as.
Save it in the same folder you have simplewallet.exe etc but save it as a .bat.
eg. start.bat
You should then be able to double click that batch file and it will open the wallet and ask for a password. Enter this and remember it and your done.
can this batch be included in the dropbox download.