Que*_*lef 83
这似乎是 Windows 更新日志和文件。
它包括用于升级 Windows 的文件,而且,一旦升级,旧操作系统就会进入该文件夹
只要您不想升级或降级 Windows,删除它应该是完全安全的。
但是,您不能以正常方式执行此操作。
反而,
a) 按 Windows 键 + R
b) 输入:%windir%\system32\cleanmgr.exe
c) 按键盘上的 Enter
编辑:此方法似乎只删除了此文件夹中的一些内容,有些可能会遗留下来。有关更完整的删除方法,请参阅另一个答案,尽管这也不完美。此外,这可能会有所帮助:如何在 Windows 8 上删除受信任的安装程序文件
资料来源:
Fra*_*cke 42
好吧,我有多达 4.4 GB 的空间。看起来 Windows 7 正在“预加载”Windows 10,尽管我从未同意并明确禁用它......
CleanMgr.exe在另一个答案中提到删除了一些东西,但大多被拒绝了。在文件管理器中手动安装也失败了,因为没有权限(即使有完全的管理员权限),没有所有权(由“TrustedInstaller”拥有)等等......
这是一个简短的receipe,以帮助您从具有管理员权限的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
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
354285 次 |
| 最近记录: |