CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 23:37:26 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=4adbd7486ba18f056462997ee838c4f0f122fba3f690b796524b8135e54bcd02a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%2247SCiVc1R1rwu2Amkdjt4eGy-hB7ZcYj%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d22f74be02f470-BLR
delete cahce dirs chrome on windows - Pastebin.com
SHARE
TWEET

delete cahce dirs chrome on windows
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Запуск от администратора обязателен
- # Получаем список всех папок профилей пользователей
- $usersPath = "C:\Users"
- $chromeRelativePath = "AppData\Local\Google\Chrome\User Data"
- # Функция для удаления содержимого папки
- function Clear-FolderContents($folderPath) {
- if (Test-Path $folderPath) {
- try {
- Get-ChildItem -Path $folderPath -Recurse -Force | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue
- Write-Output "Очищено: $folderPath"
- } catch {
- Write-Warning "Ошибка при удалении содержимого: $folderPath"
- }
- }
- }
- # Обход всех профилей пользователей
- Get-ChildItem $usersPath -Directory | ForEach-Object {
- $userProfile = $_.FullName
- $userChromePath = Join-Path $userProfile $chromeRelativePath
- if (Test-Path $userChromePath) {
- # Перебор всех профилей Chrome: Profile 1, Default, и т.д.
- Get-ChildItem -Path $userChromePath -Directory | ForEach-Object {
- $profilePath = $_.FullName
- $cachePath = Join-Path $profilePath "Cache"
- $codeCachePath = Join-Path $profilePath "Code Cache"
- Clear-FolderContents -folderPath $cachePath
- Clear-FolderContents -folderPath $codeCachePath
- }
- }
- }
- $users = Get-ChildItem "C:\Users" -Directory
- foreach ($user in $users) {
- $tempPath = Join-Path $user.FullName "AppData\Local\Temp"
- if (Test-Path $tempPath) {
- try {
- Get-ChildItem $tempPath -Force -Recurse | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
- Write-Output "Очищено: $tempPath"
- } catch {
- Write-Warning "Ошибка при очистке: $($_.Exception.Message)"
- }
- }
- }
Tags:
chrome cache
Advertisement
Add Comment
Please, Sign In to add comment
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ W
JavaScript | 7 sec ago | 0.25 KB
-
⭐⭐⭐GMAIL Logs (2FA disabled)⭐⭐
Java | 7 sec ago | 0.10 KB
-
📌 Instant BTC Profit Method ✅ Working
JavaScript | 12 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ X
JavaScript | 15 sec ago | 0.25 KB
-
⭐⭐⭐Exploit 500$ in 15 Minutes⭐⭐
Java | 20 sec ago | 0.10 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 22 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ R
JavaScript | 24 sec ago | 0.25 KB
-
💵 Make 3000$ in 20 minutes 💵
JavaScript | 31 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand