Saturday, May 8, 2010

Unable to install SQL..WMI Error

Issue - The SQL Server System Configuration Checker cannot be executed due to WMI configuration on the machine Error: 2147749904 (0x80041010)


Cause:

     WBEM_E_INVALID_CLASS

                2147749904 (0x80041010) Specified class is not valid


Resolution: If you encounter above error while installing SQL please follow below steps to resolve the same.


• Use the following command to detect and repair a corrupted WMI Repository:


                          rundll32 wbemupgd, RepairWMISetup


• Re-registering the WMI components


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. If you are running a 64-bit system you might also need to check for .DLLs and .EXE files in %windir%\sysWOW64\wbem.


  • 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



Friday, April 16, 2010

WMI Access Denied.. Windows Server 2008

Below are the steps performed to fix this issues.

1. Enabled DCOM compoment
2. regsvr32 %windir%\system32\atl.dll
3. regsvr32 %windir%\system32\netshell.dll
4. regsvr32 %windir%\system32\hnetcfg.dll
5. regsvr32 %windir%\system32\netcfgx.dll
6. regsvr32 %windir%\system32\netman.dll

http://www.pcreview.co.uk/forums/thread-531768.php

Note: After performing above task, need to restart the server

Thursday, April 1, 2010

"The local policy of this system does not permit you to logon interactively" error message when you try to log on to a computer that is running Windows Small Business Server 2003 by using an Administrator account

Today one more interesting issue..

Even though an user account have Domain Administrator Rights, was unable to logon to Console of the DC.

Encountered error "The local policy of this system does not permit you to logon interactively". But was able to logon through terminal services

Verified GPOs, Local Security Policy..etc..etc but no clue found. To my interest, found that the user account was explicitly added to "Logon Locally" list under Security --> User Rights Management of the Domain Controller Policy.

Upon some more reasearch & googling found a MS article, which helped me in resolving the issue.

After removing the User Account from "Domain Power Users Group", was able to logon to DC console.

Here is the article link: http://support.microsoft.com/kb/841188

Happy Learning!!!