>  기사  >  시스템 튜토리얼  >  \"$Windows.~BT\" 폴더는 무엇이며 삭제할 수 있나요?

\"$Windows.~BT\" 폴더는 무엇이며 삭제할 수 있나요?

PHPz
PHPz원래의
2024-06-14 17:01:41895검색

Windows creates the "$Windows.~BT" folder when you upgrade the operating system to a newer build. This folder contains all the essential files for the upgrade process, like temporary installation files and logs from the previous Windows installation.

Windows automatically removes the "$Windows.~BT" folder after 10 days. As manually deleting this folder will remove old Windows installation files, you won't be able to roll back to the previous Windows build using the Go back option in the Recovery menu within that time (for example, to downgrade from Windows 11 to Windows 10). Hence, you should only get rid of this folder if you are satisfied with the current Windows build on your PC. You can also safely delete the massive folder if Windows fails to do it automatically after the grace period.

But you shouldn't just delete this hidden folder like any other folder on the desktop. Instead, you should turn to the Disk Cleanup tool or the Command Prompt.

How to Find and Delete the "$Windows.~BT" Folder

As "$Windows.~BT" is a hidden folder, you need to configure Windows to show hidden files and folders to find it in File Explorer. Once you do, the C:\$Windows.~BT directory will become visible.

You can’t delete the "$Windows.~BT" folder directly, though. To do so, you need to run the Disk Cleanup tool. Here's how:

  1. Press Win + R to open the Run dialog box.
  2. Type cleanmgr in the box and press Enter.
  3. Use the dropdown menu to select the system drive (usually C:) and click OK.
  4. Click the Clean up system files button.
  5. Under Files to delete, use the checkboxes to select these options: Previous Windows Installations, Windows Update Cleanup, Windows upgrade log files, Temporary Windows installation files, and Temporary files.
  6. Click OK.
  7. Choose Delete Files to confirm. What Is the \

If the "$Windows.~BT" folder shows up even after you run the Disk Cleanup tool, you'll need to execute a few commands in Command Prompt. For that, open Command Prompt with administrative rights and then run the following commands one by one.

<code class="hljs php">takeown /F C:\$Windows.~BT\* /R /A icacls C:\$Windows.~BT\*.* /T /grant administrators:F rmdir /S /Q C:\$Windows.~BT\</code> 

Once you run the above commands, the "$Windows.~BT" folder will be deleted for good.

Now that you understand the purpose of the "$Windows.~BT" folder, you can decide how to handle it. Beyond the "$Windows.~BT" folder, you may also come across folders like "Windows.old," "$WinREAgent," "$SysReset," and others which can also be deleted safely using the Disk Cleanup tool.

위 내용은 \"$Windows.~BT\" 폴더는 무엇이며 삭제할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.