For those who has these issues. Make sure all un-necessary application are removed and clear from the register or tmp folders of windows.

Clean out the following folders where needed: c:\temp  - c:\windows\temp and c:\users\yourname\appdata\local\temp. if needed use a trusted scrips as below.


make sure you paste this in notepad and save it as all files . name.bat. this will speed up things. also make sure your page file (virtual memory is clean)


@echo off

IF EXIST c:\windows\temp\ del /f /s /q c:\windows\temp\

DEL /f /s /q %temp%\

IF EXIST c:\temp\ del /f /s /q c:\temp\

DEL /f /s /q %temp%\

IF EXIST C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.edb del /f /s /q C:\ProgramData\Microsoft\Search\Data\Applications\Windows\Windows.edb

DEL /f /s /q %temp%\

IF EXIST "C:\Documents and Settings\" (

    for /D %%x in ("C:\Documents and Settings\*") do (

        rmdir /s /q "%%x\Local Settings\Temporary Internet Files"

        mkdir "%%x\Local Settings\Temporary Internet Files"

    )

)

IF EXIST "C:\Documents and Settings\" (

    for /D %%x in ("C:\Documents and Settings\*") do (

        rmdir /s /q "%%x\Local Settings\Temp"

        mkdir "%%x\Local Settings\Temp"

    )

)

IF EXIST "C:\Users\" (

    for /D %%x in ("C:\Users\*") do (

        rmdir /s /q "%%x\AppData\Local\Temp"

        mkdir "%%x\AppData\Local\Temp"

    )

)

IF EXIST "C:\Users\" (

    for /D %%x in ("C:\Users\*") do (

        rmdir /s /q "%%x\AppData\Local\Microsoft\Windows\Temporary Internet Files"

        mkdir "%%x\AppData\Local\Microsoft\Windows\Temporary Internet Files"

    )

)