$WINDOWS.~BT 文件夹是什么?

$WINDOWS.~BT 文件夹是什么?

我的 C:\ 驱动器根目录下有一个名为 $WINDOWS.~BT 的文件夹。它是一个隐藏文件夹,大小为 75 MB。

它的用途是什么?删除它安全吗?

答案1

这似乎是 Windows 更新日志和文件。

它包含升级 Windows 的文件,而且,一旦你升级,旧的操作系统就会进入该文件夹

只要您不想升级或降级 Windows,删除它应该是完全安全的。

然而,你不能用正常的方式来做这件事。

反而,

a)按Windows键+R

b)输入:%windir%\system32\cleanmgr.exe

c) 按键盘上的 Enter 键

编辑:此方法似乎只能删除此文件夹中的某些内容,有些内容可能会遗留。请参阅其他答案以了解更完整的删除方法,尽管该方法也不完美。此外,以下方法可能会有所帮助:如何在 Windows 8 上删除 TrustedInstaller 文件

资料来源:

答案2

嗯,我最多有 4.4 GB。看起来 Windows 7 正在“预装”Windows 10,尽管我从未同意,而且明确禁用它...

CleanMgr.exe另一个答案中提到的删除了一些内容,但大部分都拒绝了。文件管理器中的手动删除也失败了,因为缺乏权限(即使具有完全管理员权限)、缺乏所有权(由“TrustedInstaller”拥有)等......

以下是一个简短的提示,可帮助您从具有管理员权限的 Windows 命令提示符中进行操作:

// go inside that folder:
cd /d "C:\$Windows.~BT"

// take over ownership
takeown /f *.* /R /D Y

// (go for coffee, takes a minute)
// grant full rights to everyone
icacls *.* /grant Everyone:(OI)(CI)F /T

// (coffee?)
// and all other subfolders, just be careful with use of *, naturally.
rmdir Sources /s /q

// actually, I got a few errors with rmdir. Things went smoother 
// with this Unix-like ´rm´ executable in your path,
// coming from unxutils.sf.net
rm -r -f *

// after all has been wiped, also remove the parent dir

C:\$Windows.~BT>cd ..
C:\>rmdir "$Windows.~BT"

// checking...
C:\>dir /A:DHS
 Volume in drive C is Windows
 Volume Serial Number is ####-####

 Directory of C:\

15/07/2015  19:15    <DIR>          $Recycle.Bin
30/07/2015  16:39    <DIR>          Boot
04/08/2015  08:35    <DIR>          Config.Msi
14/07/2009  07:08    <JUNCTION>     Documents and Settings [C:\Users]
01/11/2012  09:35    <JUNCTION>     Dokumente und Einstellungen [C:\Users]
01/11/2012  09:35    <JUNCTION>     Programme [C:\Program Files]
04/08/2015  08:35    <DIR>          System Volume Information
               0 File(s)              0 bytes
               7 Dir(s)     ########### bytes free

相关内容