OpenClaw installation hurdles on Windows 11 and how to overcome them

Installing OpenClaw on a fresh Windows 11 machine isn't as simple as running the official quick-start script. A user who tried installing it on a budget mini PC encountered three specific hurdles that prevented the "one-click" installation from working.
The three installation obstacles
The user purchased a refurbished mini desktop PC ($200 CAD, Core i5, 16GB RAM, 256GB SSD) to serve as an isolated AI sandbox. When attempting the OpenClaw installation, these issues emerged:
- PowerShell Execution Policy Block: Windows refuses to run the install script by default. To fix this, open PowerShell as Administrator and run:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser - Windows Defender Blocking: Even after fixing PowerShell, Windows Antivirus flags and blocks the install.ps1 file. You must manually go into the file properties and unblock it, explicitly telling Windows the script is safe.
- Missing Dependencies: The installation assumes a developer environment is already set up. On a bare-bones PC, you need to install Node.js, NPM, and Git using winget before attempting the OpenClaw install. Without these, the installation crashes halfway through.
The user notes that these issues aren't mentioned in the official documentation and required weeks of forum digging to resolve. They created a video breakdown showing how to bypass the security blocks and set up the mini PC.
This experience highlights that while developers might breeze through the installation, recreational tinkerers or those setting up isolated AI sandboxes on budget Windows hardware will encounter these specific technical obstacles.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Setting Up Qwen3.5-27B Locally: vLLM vs llama.cpp Comparison
A Reddit user shares practical tips for running Qwen3.5-27B locally, comparing llama.cpp and vLLM backends with specific configuration recommendations and benchmark results.

Java Performance Optimization: Eight Anti-Patterns That Slow Down Your Code
A Java order-processing app improved from 1,198ms to 239ms elapsed time, 85,000 to 419,000 orders per second, and 1GB to 139MB heap usage by fixing eight common anti-patterns identified through Java Flight Recording profiling.

How to Fix OpenClaw Response Times by Reducing Context Bloat
A developer resolved 10-minute response times in OpenClaw by reducing injected workspace files from 47,000 characters to 16,000 characters through file restructuring and configuration changes, including setting bootstrapMaxChars to 8000 and adding compaction safeguards.

CLAUDE.md Constitution: Building a Personal AI Agent — Part II File Walkthrough
A CEO shares the annotated CLAUDE.md file — 16 sections covering identity, proactive initiative, memory, deadlines, and hard rules — built over 6 weeks for a 50-person company.