积极答复者
求助啊 系统问题,C盘里有个未知空间

问题
-
郁闷啊,一觉醒来突然发现C空间突然少了N多 ,检查 惊现有未知空间
不知道怎么发图片上来。。。
这个问题就是 C盘空间突然少了有6G 使用SpaceSniffer和WinDirStat扫描C盘后,均发现有一个大小为5.8G的未知空间,就是说这个未知空间是在C盘内部的,而不是单独一个分区,很让人头痛 已经检查过磁盘错误,并进行了碎片整理,但是这个未知空间还在
[img]http://bbs.icpcw.com/attachments/month_1009/1009220930ee66b8dbd146f4c3.jpg.thumb.jpg[/img]
http://bbs.icpcw.com/attachments/month_1009/100922093061781f6ba0d05e55.jpg.thumb.jpg
有两张结果的图片
求助。。。。
答案
-
請以管理員身份運行 PowerShell(成功運行後, 在 PowerShell 標題欄會有 "管理員" 字樣), 然後執行下面的命令.
該命令遍歷卷 C: 所有文件夾, 對于其間拒絕訪問的文件夾會將結果記錄到管理員用戶的桌面的 vol_c_access_denied.txt.
這樣便於你做進一步分析.#begin
$error.clear();
get-childitem -path 'C:\' -force -recurse -erroraction silentlycontinue | out-null;
if ($error -ne $null)
{
[string]$savePath = (join-path $env:userprofile 'desktop\vol_c_access_denied.txt');
foreach ($ex in $error)
{
add-content -path $savePath -value $ex.exception.message;
}
}#end
- 已标记为答案 Linda Yan 2010年9月24日 7:55
全部回复
-
請以管理員身份運行 PowerShell(成功運行後, 在 PowerShell 標題欄會有 "管理員" 字樣), 然後執行下面的命令.
該命令遍歷卷 C: 所有文件夾, 對于其間拒絕訪問的文件夾會將結果記錄到管理員用戶的桌面的 vol_c_access_denied.txt.
這樣便於你做進一步分析.#begin
$error.clear();
get-childitem -path 'C:\' -force -recurse -erroraction silentlycontinue | out-null;
if ($error -ne $null)
{
[string]$savePath = (join-path $env:userprofile 'desktop\vol_c_access_denied.txt');
foreach ($ex in $error)
{
add-content -path $savePath -value $ex.exception.message;
}
}#end
- 已标记为答案 Linda Yan 2010年9月24日 7:55