Local Users and Groups Error

Y

Yaron Maor

Hi,

I can't open the "Local users and groups" snap-in nither from MMC nor
"Computer Management".
I get the error message: "Unable to accesses the computer … The error was:
Invalid Syntax. "
I can't open the user account control panel icon either.
As recommended in different threads, I already have the following components
included (I'm using XPE SP2):
Users Control Panel
Administration Support Tools
MsXml 3.1
I don't have any dependencies errors and I'm not sure how to solve it.

thanks,

YaronM
 
G

Guest

Hi,

Have you ever solved this problem?
Unfortunatly, I've the same problem....

Thank you in Advance!

Best Regards,
M.M.
 
G

Guest

Just in case you do not have a fix for this yet, try this vbscript I found on
the web:

'--------------------------------------------------------------------
'Applies To : Microsoft Windows XP
'Author : Ramesh Srinivasan - Microsoft MVP, Windows XP
'Created on : November 13, 2005
'Description : Fixes the OLE registration and other issues
'Homepage : http://windowsxp.mvps.org
'More Info : http://windowsxp.mvps.org/olereg.htm
'Requirement : Needs Administrative privileges in Windows XP
'-----------------------------------------------------------------

Option Explicit
Dim BaseKey, WshShell
Set WshShell = CreateObject("Wscript.Shell")
BaseKey = "HKCR\CLSID\{0000031A-0000-0000-C000-000000000046}\"

On Error resume Next

WshShell.RegWrite BaseKey, "ClassMoniker", "REG_SZ"
WshShell.RegWrite BaseKey & "InprocServer32\", "ole32.dll", "REG_SZ"
WshShell.RegWrite BaseKey & "ProgID\", "clsid", "REG_SZ"
WshShell.RegWrite "HKCR\CLSID\CLSID\",
"{0000031A-0000-0000-C000-000000000046}", "REG_SZ"
WshShell.RUN ("regsvr32.exe mshtml.dll /i /s")
Wshshell.RUN ("regsvr32.exe jscript.dll /s")
Wshshell.RUN ("regsvr32.exe vbscript.dll /s")
Wshshell.RUN ("regsvr32.exe ole32.dll /s")

MsgUser = Msgbox ("OLE registration fix completed", 4160, "OLE registration
fix")
Set WshShell = Nothing

regards,
Paul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top