When I run Expression Blend 4 on my Windows 8 x64, it just shows the splash screen and closes itself. Is there any way to make it work on W8?

I have tried re-installing Expression Blend 4, uninstalling Expression Blend 5 but the same problem arises.

link|improve this question

Have you checked the eventlogs for errors? Out of curiosity why would you install Blend 4 on W8? – ChristiaanV Jan 9 at 8:33
feedback

3 Answers

up vote 3 down vote accepted

Ran it with Run this program in compatibility mode for: Windows XP (SP3) and Run this program as an administrator option. Opened up a bit slow but worked fine.

link|improve this answer
feedback

You could try running it in compatibility mode for the time being?

link|improve this answer
Wow really? Have to say that's surprising, do you get any kind of an error you could post for reference? – Chris W. Jan 9 at 15:51
Have you tried any of these? social.msdn.microsoft.com/Forums/en-GB/toolsforwinapps/thread/… – Chris W. Jan 9 at 16:17
Saw you deleted your response, did you get it to work? – Chris W. Jan 9 at 19:28
feedback

Try the following fix:

Create a bat file with this information (Expression Blend 4 Fix.bat):

cd  %windir%\Microsoft.NET\Framework\v4.0.30319 
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.Framework.dll"
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.Blend.dll"
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.Project.dll"
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend 4\Microsoft.Expression.WindowsPhone.dll"

Create a bat file with this information (Expression Blend 5 Fix.bat):

cd  %windir%\Microsoft.NET\Framework\v4.0.30319
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend Preview for Silverlight 5\Microsoft.Expression.Framework.dll"
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend Preview for Silverlight 5\Microsoft.Expression.Blend.dll"
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend Preview for Silverlight 5\Microsoft.Expression.Project.dll"
ngen uninstall "%ProgramFiles(x86)%\Microsoft Expression\Blend Preview for Silverlight 5\Microsoft.Expression.WindowsPhone.dll"

Run the bat file as a Administrator

Or Download it from my SkyDrive

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.