Vista Detection Problems

hasan_hzl

New Member
Hi,
I have a big problem. Today I used CCleaner and it deleted about files and folders of 250MB. After this operation, My OS could not detect my CPU, RAM and security programs. For example, when I right click on Computer, it says Processor: does not exist, RAM: does not exist. Also when I open security center, it says no firewall, no virüs program found. And also, system information tool of vista does not work. It says some files were moved or they are missing. I tried to restore backup but I could not. Now, how can I repair my vista or correct these problems?
 

My Computer

System One

  • CPU
    Intel E6400
    Motherboard
    Gigabyte 965P-DS3
    Memory
    Crucial Ballistix Tracer PC2 6400 2x2GB
    Graphics card(s)
    HIS HD3870
    Hard Drives
    Seagate 7200.11 500GB SATA2 NCQ x 2
I solved one of the problems. Now Vista detects my hardware. I used a batch file that I found via google. I typed the following text to a text file. And saved as FIXWMI.CMD Then I runned the batch file and it solved.
@echo on
cd /d c:\temp
if not exist %windir%\system32\wbem goto TryInstall
cd /d %windir%\system32\wbem
net stop winmgmt
winmgmt /kill
if exist Rep_bak rd Rep_bak /s /q
rename Repository Rep_bak
for %%i in (*.dll) do RegSvr32 -s %%i
for %%i in (*.exe) do call :FixSrv %%i
for %%i in (*.mof,*.mfl) do Mofcomp %%i
net start winmgmt
goto End

:FixSrv
if /I (%1) == (wbemcntl.exe) goto SkipSrv
if /I (%1) == (wbemtest.exe) goto SkipSrv
if /I (%1) == (mofcomp.exe) goto SkipSrv
%1 /RegServer

:SkipSrv
goto End

:TryInstall
if not exist wmicore.exe goto End
wmicore /s
net start winmgmt
:End

Now the only problem is security programs. I will try to reinstall all programs. I hope I will solve this problem also.
 

My Computer

System One

  • CPU
    Intel E6400
    Motherboard
    Gigabyte 965P-DS3
    Memory
    Crucial Ballistix Tracer PC2 6400 2x2GB
    Graphics card(s)
    HIS HD3870
    Hard Drives
    Seagate 7200.11 500GB SATA2 NCQ x 2
Back
Top