domingo, setembro 27, 2026
Increva-se
Inicio English Windows Sandbox: Test Suspicious Programs with Zero Risk (the “Disposable PC” Already Built into Windows)

Windows Sandbox: Test Suspicious Programs with Zero Risk (the “Disposable PC” Already Built into Windows)

Downloaded a program and not sure about it? Windows Sandbox opens a clean Windows inside yours that vanishes completely when you close it. Here's how to turn it on, how to use it, how to cut its internet access and what it doesn't protect against.

por tecnologiaxt
Security ⏱ 10 min read 📅 September 2026

Windows Sandbox: Test Suspicious Programs with Zero Risk (the “Disposable PC” Already Built into Windows)

Downloaded a program and not sure about it? Windows Sandbox opens a clean Windows inside yours that vanishes completely when you close it. Here’s how to turn it on, how to use it, how to cut its internet access and what it doesn’t protect against.

RC
You know that program some site promised for “free”, or that attachment from someone you don’t even remember? There’s a way to open it without risking your computer. I’m Ronaldo Cardoso from Tecnologia Moderna, and today I’ll introduce the disposable PC that already comes with Windows.
Quick summary

In 5 lines:

  • What it is: Windows Sandbox opens a clean, isolated Windows in a window.
  • Disposable: when you close it, everything that happened inside is deleted — programs, viruses, settings.
  • Who has it: Windows 10 and 11 Pro, Enterprise and Education, with virtualization enabled in the BIOS.
  • How to turn it on: “Turn Windows features on or off” → tick Windows Sandbox.
  • Not magic: some malware detects the isolated environment and “plays dead”; use it alongside other precautions.
The idea

🧪 What Windows Sandbox Is

Windows Sandbox is a little-known feature of the Pro editions of Windows 10 and 11. It opens a window with a brand-new Windows, without your files, passwords or programs. Everything you do there stays trapped inside the window.

And the best part: when you close the window, everything disappears. The next time you open it, it starts from scratch again. It’s like having a disposable computer whenever you need to test something risky.

Laptop showing a suspicious file warning
SituationDoes the Sandbox help?
Testing a program of doubtful origin✅ Ideal
Opening a suspicious email attachment✅ Ideal
Visiting a site you don’t trust✅ Helps
Seeing what an installer tries to sneak in (ads, toolbars)✅ Very useful
Running a program that needs to stay installed❌ Everything vanishes on close
Heavy games❌ Limited graphics performance
Before you start

📋 Requirements: Does Your PC Support It?

RequirementMinimumHow to check
Windows editionPro, Enterprise or Education (not available on Home)winver or Settings → System → About
Architecture64-bitSettings → System → About → System type
VirtualizationEnabled in the BIOSTask Manager → Performance → CPU → “Virtualization: Enabled”
Memory4 GB (8 GB recommended)Task Manager → Performance → Memory
Processor2 cores (4 recommended)Task Manager → Performance → CPU

To see everything from the terminal:

PowerShell
Get-ComputerInfo -Property WindowsEditionId, OsArchitecture, HyperVRequirementVirtualizationFirmwareEnabled
If you see HyperVRequirementVirtualizationFirmwareEnabled : True, virtualization is on. If it says False, see the next section. If the field is empty, Hyper-V is already active — a good sign.
If needed

⚙️ Turning On Virtualization in the BIOS

Many PCs ship with virtualization turned off. To enable it:

  1. Restart and enter the BIOS (usually Del, F2 or F10 at the start of boot).
  2. Look for the option named after your platform: Intel Virtualization Technology (VT-x) on Intel processors or SVM Mode on AMD processors.
  3. Set it to Enabled, save (usually F10) and restart.
BIOS settings screen

The option is usually under menus like Advanced, CPU Configuration or Overclocking, depending on the brand. Don’t touch other settings you don’t know.

Step by step

✅ How to Turn On Windows Sandbox

From the menu:

  1. Press Win + R, type optionalfeatures and press Enter.
  2. In the “Turn Windows features on or off” list, tick Windows Sandbox.
  3. Click OK and restart when asked.

From the terminal (faster):

PowerShell (Admin)
Enable-WindowsOptionalFeature -Online -FeatureName "Containers-DisposableClientVM" -All

After restarting, search for Windows Sandbox in the Start menu and run it as administrator the first time.

In practice

🖱️ How to Use It: Testing a Suspicious Program

  1. Open Windows Sandbox. In a few seconds a window with a clean Windows appears.
  2. On your computer, copy (Ctrl + C) the file you want to test.
  3. Inside the Sandbox window, paste it (Ctrl + V) on the desktop.
  4. Run the file inside the Sandbox and watch: does it install extras? Open websites? Ask for strange permissions?
  5. Done? Close the window and confirm. Everything that happened inside is deleted.
A virtual system window open inside the computer
Never drag the file back from the Sandbox to your PC thinking it’s “already tested”. The fact that nothing happened inside doesn’t guarantee the file is safe.
More protection

🔌 Sandbox Without Internet and with a Read-Only Folder

By default, the Sandbox has internet access. To test something very suspicious, it’s better to cut the network — so any malware can’t download more junk or send data out. Create a text file, paste the content below and save it as Safe-Sandbox.wsb:

Safe-Sandbox.wsb (open in Notepad and save with this extension)
<Configuration>
  <Networking>Disable</Networking>
  <ClipboardRedirection>Enable</ClipboardRedirection>
  <MappedFolders>
    <MappedFolder>
      <HostFolder>C:\Users\Public\Tests</HostFolder>
      <ReadOnly>true</ReadOnly>
    </MappedFolder>
  </MappedFolders>
</Configuration>

Double-clicking that file opens the Sandbox with no internet and with your PC’s C:\Users\Public\Tests folder visible inside in read-only mode — so the tested program can’t change anything in it. Create the folder first and put the file you’ll test there.

Unplugged network cable representing isolation
What to watch

👀 Signs the Program Can’t Be Trusted

What you see in the SandboxWhat it may mean
Installs a browser, antivirus or toolbar you didn’t ask forAn installer with “passengers” (adware)
Opens several ad pagesAdware or click fraud
Asks you to turn off the antivirusA strong sign of malware
Disappears after you click and nothing shows upIt may be running hidden — suspicious
Asks for your email, bank or social media passwordA credential-theft scam
Creates scheduled tasks or adds itself to startupTrying to stay on the system permanently

To see the processes running inside the Sandbox, open Task Manager inside it (Ctrl + Shift + Esc with the Sandbox window active). Anything beyond the Windows basics came from the tested program.

Method

⏱️ A 10-Minute Test Routine

  1. Minute 0: put the file in C:\Users\Public\Tests and open Safe-Sandbox.wsb (no internet).
  2. Minute 1: inside the Sandbox, open Task Manager on the Processes tab.
  3. Minute 2: copy the file from the mapped folder to the Sandbox desktop and run it.
  4. Minutes 3 to 7: watch for new processes, windows, warnings and anything the installer tries to add.
  5. Minute 8: if the program needs internet to work and you still trust it, repeat with the normal Sandbox (with network) and watch which sites it opens.
  6. Minute 10: close the Sandbox. Decide: delete the file or install it on your real PC.
Write down what you saw. If the program ever causes trouble, those notes help a lot — including for whoever helps you.
Which tool

⚖️ Sandbox vs Virtual Machine vs Antivirus

Windows SandboxVirtual machine (VirtualBox, Hyper-V)Antivirus
Time to startSecondsMinutes (you need to install a system)Already running
Wipes everything on closeYes, alwaysOnly if you revert the snapshotN/A
Keeps programs between sessionsNoYesN/A
Detects known virusesNo (only isolates)No (only isolates)Yes
Best forQuick, disposable testsA permanent labEveryday protection

The best setup is using them together: the antivirus blocks what’s already known, and the Sandbox lets you watch the unknown without risk.

Honestly

🚧 What the Sandbox Does NOT Protect Against

  • Malware that detects virtual machines: some viruses notice they’re isolated and stay quiet. Looking harmless in the Sandbox proves nothing.
  • Shared folders with write access: if you map a folder from your PC without read-only mode, the program can change or encrypt those files.
  • Clipboard: what you copy inside the Sandbox can be pasted on your PC. Be careful bringing text or files back.
  • Accounts typed inside: if you sign in to a site inside the Sandbox while spyware is running, the password can be stolen just the same.
The Sandbox is an extra layer; it doesn’t replace antivirus or common sense. A file from an unknown source that asks you to turn off the antivirus belongs in the Recycle Bin, not in a test.
Got Windows Home?

🏠 Alternatives for Windows Home

AlternativeHow it worksNote
Upgrade to Windows ProUnlocks Sandbox, BitLocker and Hyper-VPaid, through the Microsoft Store
VirtualBox (free)A full virtual machine, with snapshots to return to a clean stateYou install a system inside and revert the snapshot after each test
Checks before openingHash, digital signature and online analysisDoesn’t run the file — see how to know if a file is safe

If you think you’ve already run something suspicious on your real PC, see how to find spyware by its connections and how to find out if someone used your PC.

Not just for viruses

💡 Other Smart Uses for the Sandbox

  • Test browser extensions before installing them on your real Chrome or Edge — many steal data, as I showed in browser extensions stealing data.
  • See how a program behaves before installing it on the family PC.
  • Open an unknown shopping site without leaving cookies and traces in your main browser.
  • Practice terminal commands you don’t know yet, without fear of breaking your Windows.
  • Show a tutorial on a clean Windows, without exposing your files on screen.
If it won’t open

🛠️ Common Problems

ErrorSolution
Windows Sandbox isn’t in the features listYour Windows is Home — no support
“No hypervisor was found” or it fails to startEnable virtualization in the BIOS
The option is greyed outVirtualization is off or the PC doesn’t support it; check Task Manager
It stays on a black screenUpdate Windows and the graphics driver; restart and try again
Very slowClose heavy programs; the Sandbox uses part of your PC’s memory
Frequently Asked Questions

FAQ

What is Windows Sandbox?

It’s a clean, isolated Windows that opens in a window. Everything that happens inside is deleted when you close it.

Is Windows Sandbox available on Windows Home?

No. It’s available on the Pro, Enterprise and Education editions of Windows 10 and 11.

How do I turn on the Sandbox?

Press Win + R, type optionalfeatures, tick Windows Sandbox and restart. Virtualization must be enabled in the BIOS.

Can a virus escape the Sandbox?

It’s very hard, but the risk isn’t zero. The biggest danger is shared folders with write access and copying files back to your PC.

Can I install a program and keep it in the Sandbox?

No. When you close the window, everything installed or changed is deleted. It’s made for disposable tests.

How do I use the Sandbox without internet?

Create a .wsb file with the Networking Disable line, as shown in the guide, and open the Sandbox through it.

If the program did nothing in the Sandbox, is it safe?

Not necessarily. Some malware detects the isolated environment and stays inactive. Use the Sandbox alongside other checks.

Does the Sandbox slow down the PC?

Only while it’s open, because it uses part of the memory and processor. When closed, it uses nothing.

Test your knowledge

🎮 How much did you learn?

Once you pick an answer it locks in — reload the page to try again.

1. What happens when you close the Sandbox?

2. Which Windows edition does NOT have the Sandbox?

3. What needs to be enabled in the BIOS?

4. Which .wsb line turns off the Sandbox’s internet?

5. Is a program that stays quiet in the Sandbox proven safe?

Compartilhar

Esse conteúdo ajudou você?

Compartilha com alguém que também vai curtir — é rapidinho e ajuda muito o nosso trabalho a chegar em mais gente.

WhatsApp Facebook Telegram X

O Instagram não tem um botão de compartilhar direto pelo navegador — copie o link acima e cole numa Story ou no direct. 😉

Siga a Gente

Não perca nenhuma dica

Conteúdo novo toda semana — direto, técnico e sem enrolação.

Conhecimento só tem valor quando compartilhado.

Manter essa estrutura de laboratórios funcionando e produzir conteúdos de engenharia de forma totalmente gratuita e acessível exige tempo e dedicação diária à bancada. Esse guia salvou os seus arquivos? Você pode contribuir diretamente para manter o nosso trabalho independente forte. Apoie doando qualquer valor!

Quer apoiar a nossa bancada independente?

Tecnologia Moderna © 2026 — Conteúdo escrito por Ronaldo Cardoso. Todas as informações técnicas foram revisadas antes da publicação.

Bloqueador de Janelas Detectado

Seu antivírus ou bloqueador de pop-up pode estar bloqueando o nosso conteúdo!

Fique Por Dentro de todas as Novidades

Canal com propósito de Compartilhar, Ajudar e Ampliar conhecimento de todos!

📬

Ronaldo aqui: E aí, para não perder nenhum conteúdo, se inscreva aqui que eu aviso você em primeira mão!

Nos Envie a Sua Dúvida para que possamos criar um conteúdo exclusivo para você, com base na sua dúvida! juntos podemos ensinar outras pessoas!

@2024 – Todos os Direitos Reservado. Desenhado e Desenvolvido por:  Grupo Interativa Marketing  & Technology Center Interativa Marketing