As you all know, Windows XP offers Windows Welcome screen logon and Fast User switching capabilities compared to other versions of Windows, which is convenient for us to achieve multiple people using a single computer. Because of this, the user account in Windows XP Control Panel is also different from other versions of Windows, where we can choose whether to enable the Welcome screen, enable Fast User Switching, and set avatar for user accounts, and so on.
However, the main interface of Windows XP's user accounts is a program based on HTML interfaces, such as the "Change the way users log on and off" in user accounts, which are actually links. Because of this, Windows XP's user accounts are vulnerable to corruption, such as someone who might have encountered the following problem, when the user account is opened in Windows XP, the entire program interface is blank, and an error message appears: invalid parameter. The user account could not be started.
This type of error is due to the HTML display in the Windows XP system. DLL Dynamic link Library registration status is invalid, if you need to fix such a problem, it is necessary to use the REGSVR32 command to re-register the corresponding. DLL dynamic link library file. First, we can execute the sfc/scannow command to check the integrity of the system files, confirm that the system file is not a problem, followed by:
REGSVR32 /S %SystemRoot%\system32\JSCRIPT.DLL
REGSVR32 /S %SystemRoot%\system32\NUSRMGR.CPL
REGSVR32 /S %SystemRoot%\system32\THEMEUI.DLL
REGSVR32 /S %SystemRoot%\system32\VBSCRIPT.DLL
REGSVR32 /S /I %SystemRoot%\system32\MSHTML.DLL
Problem can be solved.