🪟Windows Setup Guide
1. Launch the system terminal 👨💻
Method A — Search
Open Start Menu and search

Type
cmd

Click to launch the terminal

Method B — Keyboard shortcut ⌨️
Press
Win + R

Enter
cmd

Press Enter to launch

2. Determine the CPU architecture 🧭
Run in terminal:
wmic computersystem get systemtype

Interpretation:
AMD-compatible:
x86-based PC
,x64-based PC
ARM-compatible:
ARM-based PC
3. Install Docker 🐳
Download from the official website: Docker

Run the installer to complete setup
Verify installation in terminal:
docker --version
Expected: prints a version string
Docker version Update wsl
Update the latest version of wsl
wsl --update
image-windows-wsl
4. Start Docker Service 🔧
Step A — Press Win + R keys simultaneously 🛠️
Press the Windows key and R key at the same time to open the Run dialog.

Step B — Enter services.msc 📝
Type:
services.msc

Step C — Find Docker Service 🔍
Look for the service named: Docker Desktop Service

Step D — Right-click and Start ▶️
Right-click on the service and select Start

Step E — Verify Service Status ✅
Ensure the Docker service shows as Running

Step F — Open Docker Desktop Application 🚀
Launch the Docker Desktop application - it should show Ready

5. Sign in to the dashboard and create a node 📊
Register and sign in: neuralpro.net
Open the dashboard and create a node

6. Create and start the node following the official guide 🚀
Step A — Choose machine architecture 🧩
Select the correct architecture when creating the node.

Step B — Choose CPU usage percentage 📈
Set the percentage of CPU computing power to allocate.

Step C — Pull the official image 📥
Method 1 — Copy your personalized command:
Click the copy button

Paste into terminal and run

Method 2 — Manually pull in terminal:
docker pull neuralpro/neuralpro-amd:v1

Step D — Start the container ▶️
Method 1 — Copy your personalized start command:
Click the copy button

Paste into terminal and run

Method 2 — Start manually with parameters:
Parameters to prepare:
REGISTRATION_CODE
: retrieve from the official dashboardDEVICE_ID
: retrieve from the official dashboardCPU_THRESHOLD
: choose your preferred percentage
Run:
docker run -d --name neuralpro-integrated \
-e BACKGROUND_MODE=true \
-e REGISTRATION_CODE="" \
-e DEVICE_ID="" \
-e CPU_THRESHOLD="" \
neuralpro/neuralpro-amd:v1

Step E — Wait for the node to connect ⏳

Step F — Connection completed ✅

Last updated