Quando baixei o Utilitário de criação do Windows 10 Media e o executei, escolhi a opção criar mídia para outro computador .
Run the tool:
Run the tool, if you didn't already select Run. (You need to be an Administrator on the PC to run it.)
If you're upgrading this PC, select Upgrade this PC now, and then follow the instructions to finish the upgrade.
–or–
If you want to create media for a different PC, select Create installation media for another PC. Use this table to choose the edition of Windows 10 that you want to create media for.
Artigo adicional com capturas de tela detalhadas:
Durante o processo de criação de mídia de instalação, havia estas opções:
- x32
- x64
- Ambos
Eu escolhi apenas criar x64 .iso, embora eu achasse que poderia ter uma cópia de ambos.
Mas a partir dos arquivos de pastas na unidade C: \, aparentemente baixou os arquivos WIM / ESD para ambos.
C:\$Windows.~WS\Sources\installx64.esd C:\$Windows.~WS\Sources\installx86.esd .. C:\$Windows.~WS\Sources\Windows\x64\sources\install.wim C:\$Windows.~WS\Sources\Windows\x64\sources\boot.wim .. C:\$Windows.~WS\Sources\Windows\x86\sources\install.wim C:\$Windows.~WS\Sources\Windows\x86\sources\boot.wim
A ferramenta pode então criar uma unidade de configuração de DVD ou USB. Eu escolhi criar um arquivo .iso para o Win 10 x64 e depois salvá-lo em um disco rígido externo.
De acordo com este tópico dos fóruns da Microsoft, parece seguro eliminá-lo.
Resposta 1:
max green replied on July 30, 2015See
They are both temporary directories used by windows to update your system. It is safe to delete both to reclaim valuable space.
Microsoft has not updated the disk cleanup tool to delete $Windows.~WS yet (but you can delete it manually).
To delete them you need to change permissions first.
Right-click start, Command Prompt (admin)
Copy and paste each set of commands and press enter
You might need to press Y - to delete and change permissions
If it does not work and you get "Access Denied" errors - repeat the instructions again
takeown /F C:\$Windows.~BT\* /R /A icacls C:\$Windows.~BT\*.* /T /grant administrators:F rmdir /S /Q C:\$Windows.~BT\ takeown /F C:\$Windows.~WS\* /R /A icacls C:\$Windows.~WS\*.* /T /grant administrators:F rmdir /S /Q C:\$Windows.~WS\
Resposta 2:
Here's a batch file so you dont have to manually type it the next time. Remember to right click and run as Admin.
Windows10_Cleanup.bat < This will take you to Google Drive where you can download the file.
If you get a SmartScreen error, just make the batch file yourself.
1) Open Notepad and copy the following
@echo off
@echo "This will delete the folder C:\$Windows.~WS and C:\$Windows.~BT after an update to reclaim space. Windows 10 only."
@echo --------------------------------
@echo If you get message "The system cannot find the file specified" it means the folder is already deleted.
@echo --------------------------------
PAUSE
RD /S /Q "C:\$Windows.~WS"
RD /S /Q "C:\$Windows.~BT"
@echo --------------------------------
@echo All done
@echo --------------------------------
PAUSE NULL
2) Save as, select All file types and save as name.bat
All done.
Nota: Eu ainda estou querendo saber se eu deveria fazer backup dos arquivos e usá-lo para criar mídia para x86 agora ou salvar ambos para o futuro.