磁盘清理 Powershell 脚本

磁盘清理 Powershell 脚本

我使用此 powershell 脚本清除系统驱动器(通常是驱动器 C)。我将其存储在 USB 驱动器中并运行它,但我发现它还会尝试清理我的 USB 驱动器。请帮助如何仅在系统驱动器中限制操作。

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

相关内容