HW/OS2011. 10. 17. 08:51

A: Check the registry values

======================

1. Click Start, Run and type Regedit.exe
2. Navigate to the following location

HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Services\ winmgmt

3. Double-click DependOnService and check if the Value data is RPCSS. If not, please change it to RPCSS

B: Reset the WMI repository

===================

1. Disable and stop the WMI service.

     sc config winmgmt start= disabled

     net stop winmgmt


2. Run the following commands.

     Winmgmt /salvagerepository %windir%\System32\wbem      
 

3. Re-enable the WMI service and then reboot the server to see how it goes.

     sc config winmgmt start= auto


If the problem continues, let's try to re-register the WMI components

Re-registering the WMI

================

The .DLL and .EXE files used by WMI are located in %windir%\system32\wbem. You might need to re-register all the .DLL and .EXE files in this directory. 
 

To re-register the WMI components, run the following commands at the command prompt:

cd /d %windir%\system32\wbem

for %i in (*.dll) do RegSvr32 -s %i

for %i in (*.exe) do %i /RegServer

Meanwhile, please check if the Svchost.exe process that has the WMI service crashes. If so, please refer to the KB982293 article to fix it.

http://support.microsoft.com/kb/982293

http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/57c5ef71-cc95-4ba4-bdf3-10c94e35560e 

Posted by [TheWon]
DBMS/Oracle2011. 10. 14. 10:38
Posted by [TheWon]
DBMS/Oracle2011. 10. 14. 10:28
Posted by [TheWon]
HW/OS2011. 10. 14. 02:09

  • bcdedit /export C:\BCD_Backup
  • c:
  • cd boot
  • attrib bcd -s -h -r
  • ren c:\boot\bcd bcd.old
  • bootrec /RebuildBcd

     
    http://support.microsoft.com/kb/927392/en-us
  • Posted by [TheWon]
    HW/OS2011. 10. 13. 20:03

    Solution

    Use rndc dumpdb (BIND 9) or ndc dumpdb (BIND 8) to dump the cache to disk, then look through the dump file.

    # rndc flush internal



    http://www.oreillynet.com/pub/a/network/excerpt/dnsbindcook_ch05/?page=2 

     

    Posted by [TheWon]