无需用户干预即可自动执行磁盘清理cleanmgr.exe的过程

时间:2015-03-04 11:01:32

标签: powershell registry powershell-v3.0 resource-cleanup

我正在开发一个powershell脚本文件,它将在没有用户干预的情况下执行一些磁盘清理。用户无法配置任何内容。

当我运行cleanmgr.exe /d c: sageset:1时,会出现一个弹出窗口,选择要清理的文件/文件夹(清理选项)。

这将创建一个包含清理选项设置的注册表项,之后,您可以运行实际执行清理的cleanmgr.exe /sagerun:1

有没有办法直接使用powerhell /命令行指定清理选项(无需手动选择要删除的内容)?

6 个答案:

答案 0 :(得分:7)

以下Powershell脚本自动执行CleanMgr.exe。在这种情况下,它会删除临时文件并运行Update Cleanup扩展以清除已取代的Service Pack备份文件(Windows 10现在通过计划任务自动执行此操作)。要自动执行其他扩展,请在相应的注册表项中创建“StateFlags0001”属性,如New-ItemProperty行中所做。您将在“VolumeCaches”分支中找到注册表项名称。

就静默而言,此脚本会尝试在隐藏窗口中启动CleanMgr.exe。但是,在某些时候,CleanMgr会生成可见的新进程,必须单独等待。

Write-Host 'Clearing CleanMgr.exe automation settings.'
Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\*' -Name StateFlags0001 -ErrorAction SilentlyContinue | Remove-ItemProperty -Name StateFlags0001 -ErrorAction SilentlyContinue

Write-Host 'Enabling Update Cleanup. This is done automatically in Windows 10 via a scheduled task.'
New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Update Cleanup' -Name StateFlags0001 -Value 2 -PropertyType DWord

Write-Host 'Enabling Temporary Files Cleanup.'
New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Temporary Files' -Name StateFlags0001 -Value 2 -PropertyType DWord

Write-Host 'Starting CleanMgr.exe...'
Start-Process -FilePath CleanMgr.exe -ArgumentList '/sagerun:1' -WindowStyle Hidden -Wait

Write-Host 'Waiting for CleanMgr and DismHost processes. Second wait neccesary as CleanMgr.exe spins off separate processes.'
Get-Process -Name cleanmgr,dismhost -ErrorAction SilentlyContinue | Wait-Process

$UpdateCleanupSuccessful = $false
if (Test-Path $env:SystemRoot\Logs\CBS\DeepClean.log) {
    $UpdateCleanupSuccessful = Select-String -Path $env:SystemRoot\Logs\CBS\DeepClean.log -Pattern 'Total size of superseded packages:' -Quiet
}

if ($UpdateCleanupSuccessful) {
    Write-Host 'Rebooting to complete CleanMgr.exe Update Cleanup....'
    SHUTDOWN.EXE /r /f /t 0 /c 'Rebooting to complete CleanMgr.exe Update Cleanup....'
}

答案 1 :(得分:2)

我遇到了同样的问题。研究可能的方法,我发现了以下内容: http://stealthpuppy.com/cleaning-up-and-reducing-the-size-of-your-master-image/

它显示了如何通过cmd创建sageset注册表设置。然后你可以使用sagerun:#cmd。我还没有通过脚本尝试过,但已经验证它有效......

答案 2 :(得分:2)

我找到的唯一解决方案是手动设置注册表值,如下所示:

...

#Set StateFlags0012 setting for each item in Windows 8.1 disk cleanup utility
if  (-not (get-itemproperty -path 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Active Setup Temp Folders' -name StateFlags0012 -ErrorAction SilentlyContinue)) {
set-itemproperty -path 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Active Setup Temp Folders' -name StateFlags0012 -type DWORD -Value 2
set-itemproperty -path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\BranchCache' -name StateFlags0012 -type DWORD -Value 2
set-itemproperty -path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Downloaded Program Files' -name StateFlags0012 -type DWORD -Value 2

...

see full example

答案 3 :(得分:2)

您可以使用cleanmgr /verylowdisk来自动执行所有清理步骤。

答案 4 :(得分:1)

下面提供的PowerShell逻辑是动态的,可以使用sageset选项进行选择或使用,并且可以自动使用,并且不需要用户交互。这是受此帖子的多个答案和评论启发的。

注意:我已经根据需要进行了调整,并且在多个远程和本地Windows 10系统上都成功使用了

在本地系统上运行

Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\*' | % {
    New-ItemProperty -Path $_.PSPath -Name StateFlags0001 -Value 2 -PropertyType DWord -Force
   };
Start-Process -FilePath CleanMgr.exe -ArgumentList '/sagerun:1' ##-WindowStyle Hidden

在远程系统上运行

$cred = Get-Credential "domain\administrator";
Invoke-Command -ComputerName "computer004" {
    Process {
        Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\*' | % {
            New-ItemProperty -Path $_.PSPath -Name StateFlags0001 -Value 2 -PropertyType DWord -Force
           };
        Start-Process -FilePath CleanMgr.exe -ArgumentList '/sagerun:1' -WindowStyle Hidden
    }
} -AsJob -Credential $cred 

支持资源

答案 5 :(得分:0)

此脚本将从注册表中获取所有卷缓存,使其能够被清除并为所有缓存运行CLEANMGR.EXE。

$VolumeCachesRegDir = "hklm:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches"
$CacheDirItemNames = Get-ItemProperty "$VolumeCachesRegDir\*" | select -ExpandProperty PSChildName

$CacheDirItemNames | 
    %{
        $exists = Get-ItemProperty -Path "$VolumeCachesRegDir\$_" -Name "StateFlags6553" -ErrorAction SilentlyContinue
        If (($exists -ne $null) -and ($exists.Length -ne 0))
            {
                Set-ItemProperty -Path "$VolumeCachesRegDir\$_" -Name StateFlags6553 -Value 2
            }
        else
            {
                New-ItemProperty -Path "$VolumeCachesRegDir\$_" -Name StateFlags6553 -Value 0 -PropertyType DWord
            }
     }
Start-Sleep -Seconds 3


Write-Host 'Running CleanMgr.exe...'
Start-Process -FilePath CleanMgr.exe -ArgumentList '/sagerun:65535' -WindowStyle Hidden -PassThru
cls