About 15 minutes. Works on Windows 10 and Windows 11 (64-bit). No compilers, no WSL β just download two zips, edit one text file, and run two programs.
Grab the official pre-built bundle:
https://burritoco.in/downloads/burritocoin-0.21.4-win64.zip
It's about 14 MB. Inside the zip you'll find burritocoind.exe,
burritocoin-cli.exe, burritocoin-tx.exe,
burritocoin-wallet.exe, and four required .dll files.
Open PowerShell, cd to the folder where you downloaded the zip,
and run:
Get-FileHash .\burritocoin-0.21.4-win64.zip -Algorithm SHA256
The SHA256 should match:
D3AA77AF67F97E5B768771213089D76910D17EDC277E42F178C5819396B02071
If it doesn't match, the download is corrupted or tampered with β delete it and try again.
Right-click the zip β Extract Allβ¦ β choose a folder you'll
remember, e.g. C:\BurritoCoin. All eight files (4 .exe + 4 .dll)
must stay together in the same folder.
BurritoCoin Core looks for its config in a fixed location. Open File Explorer, paste this into the address bar, and press Enter:
%APPDATA%\BurritoCoin
If the folder doesn't exist, create it (right-click in
%APPDATA%, New β Folder β name it BurritoCoin).
Inside that folder, right-click β New β Text Document, and name it
burritocoin.conf (make sure Windows isn't hiding the
.txt extension β the file must end in .conf, not
.conf.txt).
Open it in Notepad and paste:
server=1
rpcuser=burritouser
rpcpassword=CHANGE_THIS_TO_SOMETHING_RANDOM
rpcallowip=127.0.0.1
rpcbind=127.0.0.1
Replace CHANGE_THIS_TO_SOMETHING_RANDOM with a long random string.
Save and close.
Open Command Prompt (press Win + R, type
cmd, Enter), then:
cd C:\BurritoCoin
burritocoind.exe
You'll see startup logs. Leave this window open β closing it stops the node.
If you'd rather run it minimized to the system tray, append -daemon
(note: on Windows, -daemon just detaches; the node runs as a
normal background process).
burritocoind.exe
runs, Windows may ask for network access. Allow it (private network is fine β
it only needs incoming peer connections from the internet, but you can leave
that blocked and still mine).
Leave the node window running. Open a new Command Prompt
(Win + R β cmd β Enter), then:
cd C:\BurritoCoin
burritocoin-cli.exe createwallet "mining"
burritocoin-cli.exe getnewaddress
The second command prints a BRTO address β something like
brto1q⦠(native SegWit) or B⦠(legacy).
Copy it β you'll need it in step 5.
burritocoin-cli.exe backupwallet "%USERPROFILE%\Desktop\wallet-backup.dat"
Copy that file to a USB stick or somewhere off this machine. If your drive
dies, you lose every BRTO in this wallet without it.
Do this before downloading or Defender will quarantine the file and you'll have to keep restoring it.
C:\cpuminer.C:\cpuminer.Now Defender will leave that folder alone.
Pre-built Windows binaries are on the cpuminer-opt releases page:
https://github.com/JayDDee/cpuminer-opt/releases
Grab the latest cpuminer-opt-X.Y.Z-windows.zip. The zip contains
multiple .exe files, one per CPU instruction set
(cpuminer-sse2.exe, cpuminer-avx2.exe,
cpuminer-zen3.exe, etc.).
If your browser blocks the download, click the warning and choose
Keep / Keep anyway. Save it directly into
C:\cpuminer (the folder you whitelisted above).
Right-click the zip β Extract Allβ¦ β into C:\cpuminer.
Pick the .exe that matches your CPU:
cpuminer-zen3.execpuminer-avx2.execpuminer-sse2.exe (slowest but works on every 64-bit CPU)If you pick wrong you'll just get an "Illegal instruction" error on launch β no harm, just try a less-aggressive build.
In the Command Prompt where you ran burritocoin-cli.exe
(or open a new one and cd C:\cpuminer), replace the password and
address with your own:
cpuminer-sse2.exe -a scrypt ^
-o http://127.0.0.1:9226 ^
-O burritouser:YOUR_PASSWORD ^
--coinbase-addr=YOUR_BRTO_ADDRESS
(^ is the line-continuation character in Windows
Command Prompt β equivalent to \ on Linux/Mac. You can also put
it all on one line.)
You should see lines like:
[2026-05-03 14:22:01] 8 miner threads started, using 'scrypt' algorithm
[2026-05-03 14:22:05] CPU #0: 12.34 kH/s
[2026-05-03 14:22:09] accepted: 1/1 (100.00%), 98.76 kH/s
That's it. You're mining.
burritocoin-cli.exe getbalance.
Install the latest Microsoft Visual C++ Redistributable (x64): aka.ms/vs/17/release/vc_redist.x64.exe. Reboot, then try again.
The node isn't running, or the RPC password doesn't match. In a Command
Prompt: burritocoin-cli.exe getblockchaininfo should return
JSON. If it doesn't, check that burritocoind.exe is still
running and that the password in your cpuminer command matches
%APPDATA%\BurritoCoin\burritocoin.conf.
You picked a build too aggressive for your CPU. Try
cpuminer-sse2.exe β it works on any 64-bit Windows machine.
Most likely Windows added a hidden .txt extension. In File
Explorer, View β Show β File name extensions, then check that the file is
literally burritocoin.conf and not
burritocoin.conf.txt.
That's OK β it's solo CPU mining. Lower hash rate just means blocks come in less often. The chain difficulty is currently very low, so even a few kH/s has a real chance of finding blocks.
Press Ctrl+C in the cpuminer window. To stop the node:
burritocoin-cli.exe stop.