mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
chore: Update Windows Sandbox TOC to include sample configuration files
This commit is contained in:
parent
65c37f071e
commit
67d0c455da
@ -1,6 +1,7 @@
|
||||
items:
|
||||
- name: Overview
|
||||
- name: What is Windows Sandbox?
|
||||
href: windows-sandbox-overview.md
|
||||
expanded: true
|
||||
items:
|
||||
- name: Compare versions
|
||||
href: windows-sandbox-versions.md
|
||||
@ -9,13 +10,13 @@ items:
|
||||
- name: Install Windows Sandbox
|
||||
href: windows-sandbox-install.md
|
||||
- name: Use Windows Sandbox
|
||||
href: windows-sandbox-use.md
|
||||
href: windows-sandbox-configure-using-wsb-file.md
|
||||
- name: Tutorials
|
||||
items:
|
||||
- name: Configuration file
|
||||
href: windows-sandbox-configure-using-wsb-file.md
|
||||
- name: Sample configuration files
|
||||
href: windows-sandbox-sample-configuration.md
|
||||
- name: WindowsSandbox Policy CSP
|
||||
href: /windows/client-management/mdm/policy-csp-windowssandbox.md
|
||||
href: /windows/client-management/mdm/policy-csp-windowssandbox
|
||||
- name: Frequently asked questions
|
||||
href: windows-sandbox-faq.yml
|
||||
- name: Troubleshooting
|
||||
|
@ -6,3 +6,47 @@ ms.date: 09/09/2024
|
||||
---
|
||||
|
||||
# Install Windows Sandbox
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- ARM64 (for Windows 11, version 22H2 and later) or AMD64 architecture
|
||||
- Virtualization capabilities enabled in BIOS
|
||||
- At least 4 GB of RAM (8 GB recommended)
|
||||
- At least 1 GB of free disk space (SSD recommended)
|
||||
- At least two CPU cores (four cores with hyper-threading recommended)
|
||||
|
||||
> [!NOTE]
|
||||
> Windows Sandbox is currently not supported on Windows Home edition.
|
||||
> Beginning in Windows 11, version 24H2, all inbox store apps like calculator, photos, notepad and terminal are not available inside Windows Sandbox. Ability to use these apps will be added soon.
|
||||
|
||||
## Installation
|
||||
|
||||
1. Ensure that your machine is using Windows 10 Pro or Enterprise, build version 18305 or Windows 11.
|
||||
|
||||
2. Enable virtualization on the machine.
|
||||
|
||||
- If you're using a physical machine, make sure virtualization capabilities are enabled in the BIOS.
|
||||
- If you're using a virtual machine, you need to enable nested virtualization. If needed, also update the VM to support nested virtualization. Run the following PowerShell commands on the host:
|
||||
|
||||
```powershell
|
||||
Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true
|
||||
Update-VMVersion -VMName <VMName>
|
||||
```
|
||||
|
||||
3. Use the search bar on the task bar and type **Turn Windows Features on or off** to access the Windows Optional Features tool. Select **Windows Sandbox** and then **OK**. Restart the computer if you're prompted.
|
||||
|
||||
If the **Windows Sandbox** option is unavailable, your computer doesn't meet the requirements to run Windows Sandbox. If you think this analysis is incorrect, review the prerequisite list and steps 1 and 2.
|
||||
|
||||
> [!NOTE]
|
||||
> To enable Sandbox using PowerShell, open PowerShell as Administrator and run the following command:
|
||||
>
|
||||
> ```powershell
|
||||
> Enable-WindowsOptionalFeature -FeatureName "Containers-DisposableClientVM" -All -Online
|
||||
> ```
|
||||
|
||||
4. Locate and select **Windows Sandbox** on the Start menu to run it for the first time.
|
||||
|
||||
> [!NOTE]
|
||||
> Beginning in Windows 11, version 24H2, Windows Sandbox adheres to the mouse settings of the host system.
|
||||
>
|
||||
> If you are on an older build and if the host system is set to use a left-handed mouse, you must apply these settings in Windows Sandbox manually when Windows Sandbox starts. Alternatively, you can use a sandbox configuration file to run a logon command to swap the mouse setting. For an example, see [Example 3](windows-sandbox-configure-using-wsb-file.md#example-3).
|
@ -22,51 +22,10 @@ Windows Sandbox has the following properties:
|
||||
- **Efficient:** Uses the integrated kernel scheduler, smart memory management, and virtual GPU.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> Windows Sandbox enables network connection by default. It can be disabled using the [Windows Sandbox configuration file](/windows/security/threat-protection/windows-sandbox/windows-sandbox-configure-using-wsb-file#networking).
|
||||
> Windows Sandbox enables network connection by default. It can be disabled using the [Windows Sandbox configuration file](windows-sandbox-configure-using-wsb-file.md#networking).
|
||||
|
||||
[!INCLUDE [windows-sandbox](../../../../../includes/licensing/windows-sandbox.md)]
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- ARM64 (for Windows 11, version 22H2 and later) or AMD64 architecture
|
||||
- Virtualization capabilities enabled in BIOS
|
||||
- At least 4 GB of RAM (8 GB recommended)
|
||||
- At least 1 GB of free disk space (SSD recommended)
|
||||
- At least two CPU cores (four cores with hyper-threading recommended)
|
||||
|
||||
> [!NOTE]
|
||||
> Windows Sandbox is currently not supported on Windows Home edition.
|
||||
> Beginning in Windows 11, version 24H2, all inbox store apps like calculator, photos, notepad and terminal are not available inside Windows Sandbox. Ability to use these apps will be added soon.
|
||||
## Installation
|
||||
|
||||
1. Ensure that your machine is using Windows 10 Pro or Enterprise, build version 18305 or Windows 11.
|
||||
|
||||
2. Enable virtualization on the machine.
|
||||
|
||||
- If you're using a physical machine, make sure virtualization capabilities are enabled in the BIOS.
|
||||
- If you're using a virtual machine, you need to enable nested virtualization. If needed, also update the VM to support nested virtualization. Run the following PowerShell commands on the host:
|
||||
|
||||
```powershell
|
||||
Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true
|
||||
Update-VMVersion -VMName <VMName>
|
||||
```
|
||||
|
||||
3. Use the search bar on the task bar and type **Turn Windows Features on or off** to access the Windows Optional Features tool. Select **Windows Sandbox** and then **OK**. Restart the computer if you're prompted.
|
||||
|
||||
If the **Windows Sandbox** option is unavailable, your computer doesn't meet the requirements to run Windows Sandbox. If you think this analysis is incorrect, review the prerequisite list and steps 1 and 2.
|
||||
|
||||
> [!NOTE]
|
||||
> To enable Sandbox using PowerShell, open PowerShell as Administrator and run the following command:
|
||||
>
|
||||
> ```powershell
|
||||
> Enable-WindowsOptionalFeature -FeatureName "Containers-DisposableClientVM" -All -Online
|
||||
> ```
|
||||
|
||||
4. Locate and select **Windows Sandbox** on the Start menu to run it for the first time.
|
||||
|
||||
> [!NOTE]
|
||||
> Windows Sandbox does not adhere to the mouse settings of the host system, so if the host system is set to use a left-handed mouse, you must apply these settings in Windows Sandbox manually when Windows Sandbox starts. Alternatively, you can use a sandbox configuration file to run a logon command to swap the mouse setting. For an example, see [Example 3](windows-sandbox-configure-using-wsb-file.md#example-3).
|
||||
|
||||
## Usage
|
||||
|
||||
1. Copy an executable file (and any other files needed to run the application) from the host and paste them into the **Windows Sandbox** window.
|
||||
|
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Windows Sandbox sample configuration files
|
||||
description: Windows Sandbox sample configuration files
|
||||
ms.topic: how-to
|
||||
ms.date: 09/09/2024
|
||||
---
|
||||
|
||||
# Windows Sandbox sample configuration files
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Use Windows Sandbox
|
||||
description: Use Windows Sandbox
|
||||
ms.topic: how-to
|
||||
ms.date: 09/09/2024
|
||||
---
|
||||
|
||||
# Use Windows Sandbox
|
Loading…
x
Reference in New Issue
Block a user