Soldato
- Joined
- 24 Dec 2004
- Posts
- 11,371
- Location
- Knowle, Solihull, UK
Hi
This has been happening gradually over some time but I have not been able to find out why.
Vista is installed on a 30GB system partition but as this is all that's installed on this partition I should have plenty of space
After moving all other files from the drive I managed to free up about 4.5GB of space (still not much!). This dropped to about 2.7GB within days with no obvious cause
I have installed SP2 but this made the situation worse. It reduced the free space to about 1.2GB and then failed due to limited hard drive space. On failure it did not release all of my available space. By removing temporary files and any application I could, I managed to free up some more space and tried again.
The update installed but reduced my available hard drive space to a mere 800MB and said I needed at least 2GB free.
I have moved all of the files from C:\Windows\System32\DriverStore\FileRepository to a backup folder on another partition. This freed up about 2GB leaving me with 2.8GB free. I installed SP2 and this left me with 2.5GB free - nearly 2GB less than I would have had with SP1 after I moved the files from FileRepository
I have switched off System Restore on the C: and moved the windows swap file to D:. Offline files is disabled and I have used Disk Cleanup to remove what it could and to delete all but the most recent restore point (both before and after turning off System Restore on C: ). Checkdisk returns no errors.
C:\Windows\SoftwareDistribution (which is where I am informed that the updates are downloaded to) only has 60MB of files.
I ran a batch file which clears out all various temp files and I have manually checked the usual culprits like the User temp and System temp folders
The batch file:
I really am at my whits end!
The Windows folder totals 25.3GB!
I'm running Windows Vista Business 64-bit with SP2 and 4GB of ram. Any help would be really appreciated!
This has been happening gradually over some time but I have not been able to find out why.
Vista is installed on a 30GB system partition but as this is all that's installed on this partition I should have plenty of space
After moving all other files from the drive I managed to free up about 4.5GB of space (still not much!). This dropped to about 2.7GB within days with no obvious cause
I have installed SP2 but this made the situation worse. It reduced the free space to about 1.2GB and then failed due to limited hard drive space. On failure it did not release all of my available space. By removing temporary files and any application I could, I managed to free up some more space and tried again.
The update installed but reduced my available hard drive space to a mere 800MB and said I needed at least 2GB free.
I have moved all of the files from C:\Windows\System32\DriverStore\FileRepository to a backup folder on another partition. This freed up about 2GB leaving me with 2.8GB free. I installed SP2 and this left me with 2.5GB free - nearly 2GB less than I would have had with SP1 after I moved the files from FileRepository
I have switched off System Restore on the C: and moved the windows swap file to D:. Offline files is disabled and I have used Disk Cleanup to remove what it could and to delete all but the most recent restore point (both before and after turning off System Restore on C: ). Checkdisk returns no errors.
C:\Windows\SoftwareDistribution (which is where I am informed that the updates are downloaded to) only has 60MB of files.
I ran a batch file which clears out all various temp files and I have manually checked the usual culprits like the User temp and System temp folders
The batch file:
Code:
echo Version 1.1
echo.
echo (C) 2007 My Digital Life (www.mydigitallife.info)
echo.
echo This batch script is provided as is without warranty.
pause
echo.
echo.
echo Start cleaning and deleting Vista system junk?
echo (Press Ctrl-C and answer Y to terminate)
pause
cls
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q "%appdata%\Microsoft\Windows\cookies\*.*"
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%appdata%\Microsoft\Windows\Recent\*.*"
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
del /f /s /q %windir%\SoftwareDistribution\Download\*.*
rd /s /q "%userprofile%\Local Settings\Temp\" & md "%userprofile%\Local Settings\Temp\"
rd /s /q %windir%\Temp & md %windir%\Temp
cls
echo.
echo Windows Vista System Junk Cleaner
echo Version 1.1
echo.
echo (C) 2007 My Digital Life (www.mydigitallife.info)
echo.
echo This batch script is provided as is without warranty.
echo.
echo.
echo Vista system junk cleaning and deleting completed.
echo.
echo Press any key to exit.
pause
I really am at my whits end!
The Windows folder totals 25.3GB!
I'm running Windows Vista Business 64-bit with SP2 and 4GB of ram. Any help would be really appreciated!