Link to home
Start Free TrialLog in
Avatar of matrixnz
matrixnz

asked on

Add/Remove - Creates error - Message Parser Value creation failed " at line 410

Hi all

I'm currently creating a Windows XP deployment image for my company, so I am using a MS Select Windows XP SP1 Cd, I have created a script, slip streamed SP1a and other updates into the distribution point, and have created an unattend.txt with all my variables inside, including drivers, so that once it logs in all drivers are installed by default, it then runs a script to update default user registry keys etc, loads different software packages, Office, WinZip etc.. - in summary I've created my own restore Cd.

My problem was after everything had been done, I went into the testing phase and found everything was running fine until, I went to add/remove programs and a window popped up with
Message Parser
Value creation failed " at line 410
I have looked high and low for why this has occurred, I have started debugging by removing lines from my unattend.txt, I have also gone back to the original Cd removing the slipstreamed SP1a.  Now I have read elsewhere the same error but the line number is 472, I have tried those instructions, but it still didn't work.
However I must point out I have noticed this, the toolbar icons in Windows Explorer and Internet Explorer are different to the standard icons, the Task Pane inside the control panel does not exist, the task pane is the bar to the left that has things like switch to classic view etc..  Now as I said I have nothing set to change things to classic view, also if I go into Folder Options, I can change between Classic View and show common task folders without any changes what so ever.

Anyhow I hope someone can help, I would be much appreciative.

Cheers
Avatar of CrazyOne
CrazyOne
Flag of United States of America image

Add and Remove - SP1 (Parser Message: Value creation failed " at line 472" error)

If you are using Style XP - Right click the Desktop/Properties/Desktop/choose Windows XP and try again.

Style XP has an update available for SP1

If you have renamed the uxtheme.dll (patch) you could try running SFC /Scannow to restore the original MS version. Or check in the root directory for "UxTheme.dll.tqtbak" and rename it to UxTheme.dll and replace the copy in "C:\windows\system32" with the new renamed copy.  The original MS Version - 6.0.2800.1045 (1.98 kb)

The patch can be downloaded here
Errors from trying to use Add or Remove after installing SP1
Error With Add/Remove Programs Using Windows XP SP
http://www.softwaretipsandtricks.com/index.php?page=showcomments&id=152
ASKER CERTIFIED SOLUTION
Avatar of CrazyOne
CrazyOne
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of matrixnz
matrixnz

ASKER

Hi sorry took so long to get back to you, had an extended weekend, anyhow tried the fixes on a new image but still getting the error, I still can't quite understand it, I'm thinking that when the software connects to my distribution point via dos on my pc that for some reason the files are not being unpacked properly with their long file names, for eg, when I go into the /windows/resources/themes/ folder I see luna.theme, but a classic.the instead of Windows Classic.theme, I don't know if this was meant to happen by default but on all other machines loaded by cd they have Windows Classic.theme, it seems to be using the luna theme by default, including buttons etc.. as explained in my previous comment.

Anyhow CrazyOne thankyou for the suggestions they were much appreciated, just unfortunately didn't solve my problem, any other suggestions would be appreciated.

Cheers
I have found that the error Message Parser Value creation failed " at line 410 seems to relate to themes, as stated by crazy one however the problem seems to be the filenames of the dlls have been changed, so instead of having shellstyle.dll I get dlls called home_ss.dll or metal_ss.dll, once I renamed these to shellstyle.dll, I also needed to rename "classic.the" to "Windows Classic.theme" and also "Luna.mss" to "Luna.msstyles", I could then open up display and under the appearance tab change Windows and Buttons from Windows Classic to Windows XP, then add/remove would start working again, if I select Windows Classic the problem starts again, so will look into it further.

Cheers
I seem to of fixed my problem, I have written a small batch file that goes like:

Ren "%Systemdrive%\Windows\system32\Class_ss.dll" "shellstyle.dll"
Ren "%Systemdrive%\Windows\Resources\Themes\Classic.the" "Windows Classic.theme"
Ren "%Systemdrive%\Windows\Resources\Themes\Luna\luna.mst" "luna.msstyles"
Ren "%Systemdrive%\Windows\Resources\Themes\Luna\Shell\Homestead\Home_ss.dll" "shellstyle.dll"
Ren "%Systemdrive%\Windows\Resources\Themes\Luna\Shell\NormalColor\Blue_ss.dll" "shellstyle.dll
Ren "%Systemdrive%\Windows\Resources\Themes\Luna\Shell\Metallic\Metal_ss.dll" "shellstyle.dll"

After that all works fine, still have no idea why this happens, it definately isn't anything to do with long/short filenames as other files are copied/expanded properly.
Cool and good work :>)
Yes, excellent.  It's comming in handy.  

One thing.  Instead of %Systemdrive%\Windows  use %Windir%.

Thanks
Thanks Guys

For all your comments, your help was much appreciated, will definately change %Systemdrive% to %Windir% never thought of that.  What should I do with the points?  I'm still kind of new to this forum, when it comes to submitting questions etc..

Thanks again
I have awarded CrazyOne with 100 points, even though I ended up answering the question myself, however I did appreciate his comments.  Keep up the good work everyone.

Cheers
Matrix's batch fixed it for me!