Dominic Böttger

← Back to blog

Published on Sun Apr 12 2020 00:00:00 GMT+0000 (Coordinated Universal Time) by Dominic Böttger

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
  • Turn Your Surface Pro 6 Into a Home Assistant Voice Satellite

    Turn Your Surface Pro 6 Into a Home Assistant Voice Satellite

    Transform your old Surface Pro 6 into a powerful voice assistant for Home Assistant using Wyoming Satellite and openWakeWord. The conference-grade microphones make it perfect for voice control.

  • Fix Surface Pro Touch After Suspend on Linux

    Fix Surface Pro Touch After Suspend on Linux

    How to fix the Surface Pro touchscreen losing functionality after suspend/resume on Linux with the linux-surface kernel using systemd sleep hooks.

  • AvePoint Fly Migrator TLS 1.2 workaround

    AvePoint Fly Migrator TLS 1.2 workaround

    A workaround to enable TLS 1.2 support for IMAP migrations with AvePoint's Fly Migrator.

  • Optimize Visual Studio Code for C# .NET Core development

    Optimize Visual Studio Code for C# .NET Core development

    A brief introduction and some information on how VSCode can be optimized for a great C# .NET core developer experience.

  • Pretty Windows Terminal and PowerShell Setup

    Pretty Windows Terminal and PowerShell Setup

    My Windows Terminal and PowerShell configuration. It includes modules like git-posh and oh-my-posh to beautify the command-line experience.

  • Securely fight COVID-19 in a Windows Sandbox

    Securely fight COVID-19 in a Windows Sandbox

    A simple script which installs the Folding@Home client into a Windows Sandbox.