Learning and Sharing
  • Home
  • Blog
  • Linux
  • macOS
  • Virtualization
    • VMware
    • VirtualBox
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server
  • Series
    • Symantec
    • Intune
    • Microsoft Azure
    • Powershell
    • VirtualBox
    • VMware
    • PowerShell Learning
    • Microsoft Graph
  • More
    • Auto Installation
    • AEC Installation
  • Contact
No Result
View All Result
  • Home
  • Blog
  • Linux
  • macOS
  • Virtualization
    • VMware
    • VirtualBox
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server
  • Series
    • Symantec
    • Intune
    • Microsoft Azure
    • Powershell
    • VirtualBox
    • VMware
    • PowerShell Learning
    • Microsoft Graph
  • More
    • Auto Installation
    • AEC Installation
  • Contact
No Result
View All Result
No Result
View All Result

How to Map Folders into Windows Sandbox Automatically

May 26, 2024
in Blog, Windows Sandbox
0
ADVERTISEMENT

Table of Contents

Customize Windows Sandbox with Configuration Files

You use Windows Sandbox a lot for testing packages or software. Sometimes you want to start it with specific options. This post shows you how to map folders into the sandbox automatically.

By default, Windows Sandbox spins up a default image. However, in many cases, you want to spin up a customized environment with already preinstalled tools or access to local files. For that, you can use config files that allow you to customize the sandbox during startup. The sandbox configuration files are formatted as XML and use the .wsb file extension.

  • vGPU (virtualized GPU): Enable or disable the virtualized GPU. If vGPU is disabled, the sandbox will use Windows Advanced Rasterization Platform (WARP).
  • Networking: Enable or disable network access within the sandbox.
  • Mapped folders: Share folders from the host with read or write permissions. Note that exposing host directories may allow malicious software to affect the system or steal data.
  • Logon command: A command that’s executed when Windows Sandbox starts.
  • Audio input: Shares the host’s microphone input into the sandbox.
  • Video input: Shares the host’s webcam input into the sandbox.
  • Protected client: Places increased security settings on the RDP session to the sandbox.
  • Printer redirection: Shares printers from the host into the sandbox.
  • Clipboard redirection: Shares the host clipboard with the sandbox so that text and files can be pasted back and forth.
  • Memory in MB: The amount of memory, in megabytes, to assign to the sandbox.
9nb8CtTf1lyNmPBfMXIYjYQWNmzhdO9Yula8kALxtFPCO4BLJHAW4QIJuR6s

For example, we’ll create a shared folder on the host machine, map it into the sandbox on starts then install some apps from the mapped folder in the sandbox automatically.

Create a share folder

1. Create the C:\Apps folder on the host machine. Download the installers or setup files then copy them to that folder on the host machine. For example, we’ll install 7-Zip, Firefox, Skype and Telegram when the sandbox starts.

q2EOGFCeSyJpAHzxwFXn4mMuNMqgZyQtNK7a8ddXGguc8JQxsBINBGwb84Lj

2. Create a batch script in the C:\Apps folder on the host machine using any text editor. Below is the content of the script to install the apps automatically when the sandbox starts.

@echo on
msiexec /i C:\Apps\7zip.msi /qn
msiexec /i C:\Apps\Firefox.msi /qn

C:\Apps\skype.exe /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /DL=1
C:\Apps\tsetup.exe /verysilent

For instance, we’ve created a batch script C:\Apps\install.bat using the Notepad.

92zpTvK3nVx2ialVjqqQAae8r3y257b0RXQ73ZA2BBRz449qBqIW2HJX9dbZ

Map Folders into Windows Sandbox Automatically

Below are the steps to create a .wsb file to map a folder from the host to the sandbox. Then run a logon command to install apps automatically when the sandbox is started.

1. Right click on the desktop then create a new text document.

ByGO0HM9zIztouMlHRwra2kgmx5N2eHOmUrs6NYAYPTQ6rGmkyeHiykxZWVQ

2. Below is an example of sandbox configuration file. When a sandbox instance starts:

  • The folder C:\Apps would be mapped to the sandbox at C:\Apps.
  • The logon command will run the batch script then install all the apps automatically.

Sandbox mapped folder configurations:

  • At this time, relative paths aren’t supported.
  • HostFolder: Specifies the folder on the host machine to share into the sandbox. The folder must already exist on the host, or the container will fail to start.
  • SandboxFolder: Specifies the destination in the sandbox to map the folder to. If the folder doesn’t exist, it will be created. If no sandbox folder is specified, the folder will be mapped to the container desktop.

  • ReadOnly: If true, enforces read-only access to the shared folder from within the container. Supported values: true/false. Defaults to false.

<Configuration>

  <MappedFolders>
    <MappedFolder>
      <HostFolder>C:\Apps</HostFolder>
      <SandboxFolder>C:\Apps</SandboxFolder>
      <ReadOnly>false</ReadOnly>
    </MappedFolder>
  </MappedFolders>

  <LogonCommand>
    <Command>C:\Apps\install.bat</Command>
  </LogonCommand>

</Configuration>

3. Save the file with any name, but make sure the file extension is .wsb.

iHOBerfDvlDjeequz8aQ1wXGIg4GRVFka7POFIknnqOSFW8vsKrlh4R45L0M
4. Now, start the sandbox using the .wsb configuration file instead of running it from the Start menu or Windows search.
IQLmOviYe46gickPNesoQSM2Yjbms53CTsGSnFrETCKSTOqC0vgxgtswFRC4

Every time you run a new sandbox session, the C:\Apps folder will be mapped into the sandbox container automatically. The logon command will be executed, and the apps will be installed.

Pzg2LEdk6XfTu0Thk2QZstHrh390xF61SkYYMkNXNdgiTYF5pTfE6WEt1qp2

More examples about logon command

1. Open Command Prompt when the sandbox starts:

<Configuration>
  <LogonCommand>
    <Command>powershell -executionpolicy unrestricted -command "start cmd {-noexit}"</Command>
  </LogonCommand>
</Configuration>

2. Open PowerShell when the sandbox starts:

<Configuration>
  <LogonCommand>
    <Command>powershell -executionpolicy unrestricted -command "start cmd {-noexit}"</Command>
  </LogonCommand>
</Configuration>
highmogrtgvghct2idhs8p0prsezehy15hhffttg34598gfdeui346800

3. Open a website when the sandbox starts.

<Configuration>
  <LogonCommand>
    <Command>powershell -executionpolicy unrestricted -command "start msedge {-noexit https://bonguides.com}"</Command>
  </LogonCommand>
</Configuration>

4. Start the Windows sandbox with the Windows Package Manager pre-installed.

<Configuration>
  <LogonCommand>
    <Command>powershell -executionpolicy unrestricted -command "start powershell {-noexit irm bonguides.com/winget | iex}"</Command>
  </LogonCommand>
</Configuration>

5. Start the Windows sandbox with the Windows Terminal pre-installed.

<Configuration>
  <LogonCommand>
    <Command>powershell -executionpolicy unrestricted -command "start powershell {-noexit irm bonguides.com/terminal | iex}"</Command>
  </LogonCommand>
</Configuration>

6. Start the Windows sandbox with the Microsoft Visual Studio Code (VSCode) pre-installed.

<Configuration>
  <LogonCommand>
    <Command>powershell -executionpolicy unrestricted -command "start powershell {-noexit irm bonguides.com/vscode | iex}"</Command>
  </LogonCommand>
</Configuration>
ADVERTISEMENT

Not a reader? Watch this related video tutorial:

5/5 - (1 vote)
Previous Post

How to Increase the Memory (RAM) in Windows Sandbox

Next Post

How to Run a Logon Command in Windows Sandbox

Related Posts

Running Hyper-V and VMware Workstation on The Same Machine

August 15, 2024

How to Uninstall All Autodesk Products At Once Silently

July 29, 2024
Ftr5

How to Uninstall the Autodesk Genuine Service on Windows

July 29, 2024
Ftr19

How to Fix Windows Cannot Read the ProductKey From the Unattend Answer File in VirtualBox

July 26, 2024
Ftr25

How to Update Windows Terminal in Windows 10/11

July 26, 2024

How to Disable The Beep Sound in WSL Terminal on Windows

July 26, 2024

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • How To Turn On uBlock Origin Extension in Chrome (2025)
  • Images Hidden Due To Mature Content Settings In CivitAI
  • Azure OpenAI vs Azure AI Hub, How to Choose the Right One for Your Needs

Categories

Stay in Touch

Discord Server

Join the Discord server with the site members for all questions and discussions.

Telegram Community

Jump in Telegram server. Ask questions and discuss everything with the site members.

Youtube Channel

Watch more videos, learning and sharing with Leo ❤❤❤. Sharing to be better.

Newsletter

Join the movement and receive our weekly Tech related newsletter. It’s Free.

General

Microsoft Windows

Microsoft Office

VMware

VirtualBox

Technology

PowerShell

Microsoft 365

Microsoft Teams

Email Servers

Copyright 2025 © All rights Reserved. Design by Leo with ❤

No Result
View All Result
  • Home
  • Linux
  • Intune
  • macOS
  • VMware
  • VirtualBox
  • Powershell
  • Windows 10
  • Windows 11
  • Microsoft 365
  • Microsoft Azure
  • Microsoft Office
  • Active Directory

No Result
View All Result
  • Home
  • Linux
  • Intune
  • macOS
  • VMware
  • VirtualBox
  • Powershell
  • Windows 10
  • Windows 11
  • Microsoft 365
  • Microsoft Azure
  • Microsoft Office
  • Active Directory