mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
52 lines
1.7 KiB
PowerShell
52 lines
1.7 KiB
PowerShell
################################################################################
|
|
## File: Invoke-Cleanup.ps1
|
|
## Desc: Cleanup WinSxS, temp, cache and compress some directories
|
|
################################################################################
|
|
|
|
Write-Host "Cleanup WinSxS"
|
|
dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
|
|
if ($LASTEXITCODE -ne 0) {
|
|
throw "Failed to cleanup WinSxS"
|
|
}
|
|
|
|
Write-Host "Clean up various directories"
|
|
@(
|
|
"$env:SystemDrive\Recovery",
|
|
"$env:SystemRoot\logs",
|
|
"$env:SystemRoot\winsxs\manifestcache",
|
|
"$env:SystemRoot\Temp",
|
|
"$env:SystemRoot\Installer",
|
|
"$env:SystemDrive\Users\$env:INSTALL_USER\AppData\Local\Temp",
|
|
"$env:TEMP",
|
|
"$env:AZURE_CONFIG_DIR\logs",
|
|
"$env:AZURE_CONFIG_DIR\commands",
|
|
"$env:AZURE_CONFIG_DIR\telemetry"
|
|
) | ForEach-Object {
|
|
if (Test-Path $_) {
|
|
Write-Host "Removing $_"
|
|
cmd /c "takeown /d Y /R /f $_ 2>&1" | Out-Null
|
|
if ($LASTEXITCODE -ne 0) {
|
|
throw "Failed to take ownership of $_"
|
|
}
|
|
cmd /c "icacls $_ /grant:r administrators:f /t /c /q 2>&1" | Out-Null
|
|
if ($LASTEXITCODE -ne 0) {
|
|
throw "Failed to grant administrators full control of $_"
|
|
}
|
|
Remove-Item $_ -Recurse -Force -ErrorAction SilentlyContinue | Out-Null
|
|
}
|
|
}
|
|
|
|
# Remove AllUsersAllHosts profile
|
|
Remove-Item $profile.AllUsersAllHosts -Force -ErrorAction SilentlyContinue | Out-Null
|
|
|
|
# Clean yarn and npm cache
|
|
cmd /c "yarn cache clean 2>&1" | Out-Null
|
|
if ($LASTEXITCODE -ne 0) {
|
|
throw "Failed to clean yarn cache"
|
|
}
|
|
|
|
cmd /c "npm cache clean --force 2>&1" | Out-Null
|
|
if ($LASTEXITCODE -ne 0) {
|
|
throw "Failed to clean npm cache"
|
|
}
|