Dominic Böttger

← Back to blog

Published on April 12, 2020 by Dominic Böttger · 2 min read

Microsoft released a nice and simple Powershell script that installs the Folding@Home client into a Windows Sandbox to ensure that the Folding@Home client is completely separated from your machine. I am not aware of any known security issues but safety first and it’s also fun to try out the Windows Sandbox.

The Powershell script checks the system requirements ( at least Windows 10 Pro Insider build 18362 is needed to support the sandbox feature ). After checking the requirements it installs the Windows Sandbox feature, creates the configuration and startup script for the Sandbox.

To install the Folding@Home Sandbox you need to run the following command in an elevated ( run as administrator ) Powershell:

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/microsoft/Windows-Sandbox-Utilities/master/Folding%20In%20Sandbox/install_folding_sandbox_on_host.ps1')

The script should install and configure a Sandbox and start the Sandbox with the Folding@Home client.

On my machine I already had Hyper-V installed and I got the message “0x80072746 The connection to this sandbox was lost”. I solved the problem by uninstalling Hyper-V, rebooting and installing Hyper-V again.

If you run the script multiple times it will update your configuration and check for new versions of the Folding@Home client.

You can find additional information in the Readme provided in the Github repository.

Photo by CDC on Unsplash

Written by Dominic Böttger

← Back to blog
  • Syncing SharePoint and OneDrive on Arch Linux with One Click

    Syncing SharePoint and OneDrive on Arch Linux with One Click

    Set up Microsoft SharePoint and OneDrive sync on Arch Linux using abraunegg/onedrive. Includes a protocol handler script that makes the "Sync" button in SharePoint work natively, with automatic drive detection and systemd background sync.

  • From Sequential to Parallel: Adding Agent Teams to Spec Kit

    From Sequential to Parallel: Adding Agent Teams to Spec Kit

    How we extended Spec Kit with a new /speckit.team-implement command that auto-detects parallel work streams from your task list and spawns specialized AI agent teams to implement features simultaneously -- complete source code, algorithm walkthrough, and usage guide.

  • Building a Private Claude Code Plugin Marketplace for Your Team

    Building a Private Claude Code Plugin Marketplace for Your Team

    Learn how to structure a private Claude Code plugin marketplace for your team, including repository layout, naming conventions, and how to register local or remote marketplaces.

  • Spec Kit + Ralph Loop: Solving AI Context Exhaustion in Large Features

    Spec Kit + Ralph Loop: Solving AI Context Exhaustion in Large Features

    How we combined Spec Kit's structured planning with Ralph Wiggum's fresh context methodology to build an AI-powered development loop that can implement features of any size without context pollution.

  • Mistral Releases Vibe CLI and Devstral 2: Open-Source AI Coding Goes Next Level

    Mistral Releases Vibe CLI and Devstral 2: Open-Source AI Coding Goes Next Level

    Mistral AI launches Vibe CLI and Devstral 2, bringing powerful open-source AI coding assistance to your terminal. Learn how to install and get started with these game-changing tools.

  • Auto Dark Mode on Linux Based on Real Sunrise and Sunset

    Auto Dark Mode on Linux Based on Real Sunrise and Sunset

    Set up automatic theme switching on Linux that follows the real sunrise and sunset times for your location, not just fixed schedules. Complete guide for Hyprland/Omarchy with systemd timers.