I have downloaded and installed both Platform SDK and VC++, i followed all the steps from http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ and was still unable to get the windows applications. i am able to run VC++ and when i try and create a Win app project i get these errors
The following error has occurred during XML parsing:
File: C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults\CoreWin_Express.vsprops
Line: 9
Column: 1
Error Message:
Illegal qualified name character.
The file 'C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults\CoreWin_Express.vsprops' has failed to load.
Failed to load system project defaults file 'C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults\CoreWin_Express.vsprops'.
The project cannot load without this file installed.
Please re-install the product.
The following error has occurred during XML parsing:
File: C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults\CoreWin_Express.vsprops
Line: 9
Column: 1
Error Message:
Illegal qualified name character.
The file 'C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults\CoreWin_Express.vsprops' has failed to load.
Failed to load system project defaults file 'C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults\CoreWin_Express.vsprops'.
The project cannot load without this file installed.
Please re-install the product.
My Corwin_express looks like this
< xml version="1.0" >
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="Core Windows Libraries">
<Tool
Name="VCLinkerTool"
AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib"
</VisualStudioPropertySheet>

Installation problems for Platform SDK into VC++ Express
Emilis
Your Tool element is not properly formed. It's missing a closing bracket, causing the XML to be malformed. After AdditionalDependencies="kernel32.lib ... uuid.lib", add a closing tag />
.
cabby
This is just my guess. Did you uninstall the previous beta version
I myself have never had such a problem but one of my friends has.
He did not uninstall the previous one.
Hope this helps.
jhepple
I havent had any prevous beta versions. I have installed, VC#, VB, VJ#, V web devoloper. Could that be effecting the installation
Marco Otte-Witte
Thank you, Oshah. That's it!