🪟Windows Setup Guide

1. Launch the system terminal 👨‍💻

  1. Open Start Menu and search

Windows search start
  1. Type cmd

Type cmd
  1. Click to launch the terminal

Open terminal

Method B — Keyboard shortcut ⌨️

  1. Press Win + R

Win+R
  1. Enter cmd

Enter cmd
  1. Press Enter to launch

Launch via Enter

2. Determine the CPU architecture 🧭

Run in terminal:

wmic computersystem get systemtype
wmic output

Interpretation:

  • AMD-compatible: x86-based PC, x64-based PC

  • ARM-compatible: ARM-based PC


3. Install Docker 🐳

  1. Download from the official website: Docker

Docker website
  1. Run the installer to complete setup

  2. Verify installation in terminal:

    docker --version

    Expected: prints a version string

    Docker version
  3. 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.

image-windows-4

Step B — Enter services.msc 📝

Type:

services.msc
Services MSC

Step C — Find Docker Service 🔍

Look for the service named: Docker Desktop Service

Docker Service

Step D — Right-click and Start ▶️

Right-click on the service and select Start

Start Service

Step E — Verify Service Status ✅

Ensure the Docker service shows as Running

Service Running

Step F — Open Docker Desktop Application 🚀

Launch the Docker Desktop application - it should show Ready

Docker Ready

5. Sign in to the dashboard and create a node 📊

  1. Register and sign in: neuralpro.net

  2. Open the dashboard and create a node

Dashboard create

6. Create and start the node following the official guide 🚀

Step A — Choose machine architecture 🧩

Select the correct architecture when creating the node.

Choose arch

Step B — Choose CPU usage percentage 📈

Set the percentage of CPU computing power to allocate.

Choose CPU percent

Step C — Pull the official image 📥

Method 1 — Copy your personalized command:

  1. Click the copy button

Copy pull cmd
  1. Paste into terminal and run

Paste pull cmd

Method 2 — Manually pull in terminal:

docker pull neuralpro/neuralpro-amd:v1
Pull image result

Step D — Start the container ▶️

Method 1 — Copy your personalized start command:

  1. Click the copy button

Copy run cmd
  1. Paste into terminal and run

Paste run cmd

Method 2 — Start manually with parameters:

Parameters to prepare:

  • REGISTRATION_CODE: retrieve from the official dashboard

  • DEVICE_ID: retrieve from the official dashboard

  • CPU_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
Run container

Step E — Wait for the node to connect ⏳

Waiting

Step F — Connection completed ✅

Connected

Last updated