Нихуя не норм это, я давно еще заметил что у меня 200 гигов спиздили куда то, а оказывается и вовсе 400, как контрить?
Контра: файл от claude 3.5 sonnet что он делает по его словам: Отключит гибернацию и удалит hiberfil.sys (может освободить до 75% от объема RAM) Отключит и удалит файл подкачки (pagefile.sys) Очистит System Volume Information Проверит целостность системных файлов файл .bat @echo off chcp 1251 > nul echo Checking hibernation status and system files... :: Disable hibernation and remove hiberfil.sys powercfg /hibernate off :: Disable and delete page file wmic pagefileset where name="C:\\pagefile.sys" delete :: Clean System Volume Information echo Cleaning System Volume Information... vssadmin delete shadows /all /quiet rd /s /q "C:\System Volume Information" :: Check system file integrity echo Running system file check... sfc /scannow echo. echo Cleanup completed! System needs to be restarted. echo Please save all your work and press any key to restart... pause shutdown /r /t 0 Code @echo off chcp 1251 > nul echo Checking hibernation status and system files... :: Disable hibernation and remove hiberfil.sys powercfg /hibernate off :: Disable and delete page file wmic pagefileset where name="C:\\pagefile.sys" delete :: Clean System Volume Information echo Cleaning System Volume Information... vssadmin delete shadows /all /quiet rd /s /q "C:\System Volume Information" :: Check system file integrity echo Running system file check... sfc /scannow echo. echo Cleanup completed! System needs to be restarted. echo Please save all your work and press any key to restart... pause shutdown /r /t 0