2

I have recently upgraded to Visual Studio 2013 (with the installer extension installed) from 2010, and now when I rebuild my Visual Studio Installer project, a Visual Studio 2013 setup window appears with the message:

>"Please wait while Windows configures Microsoft Visual Studio Professional 2013"

This screen stays up for about 1 minute then disappears, and the project then shows as rebuilding successfully.

I have set the output window to detailed and don't see anything obvious listed there. The last line before the setup window appears is

Building file 'c:\ProjectPath\Debug\ProjectName.msi'...

After that the next lines talk about packing the necessary dll and files for the setup program.

I think that VS 2013 is missing a component that is required for setup projects but I don't know what it is.

SharpC
  • 6,974
  • 4
  • 45
  • 40
David Duncan
  • 297
  • 1
  • 2
  • 11

2 Answers2

5

Just adding as an answer here, as it might not be clear in comments above.

Based on @Glytzhkof's answer, checked the Event Log and found that a folder was missing.

Make sure the folder

C:\Windows\Microsoft.NET\Framework\URTInstallPath_GAC

exists and the problem disappeared.

David Duncan
  • 297
  • 1
  • 2
  • 11
  • 1
    This worked for me, avoided the timely process of re-installing! (added it to both framework and framework64) – LOGMD Aug 17 '15 at 10:20
1

This should at least make you certain what component in the MSI that is triggering the self-repair. Most MSI packages can be repaired, but the Visual Studio installer works in mysterious ways. Give it a shot.

Community
  • 1
  • 1
Stein Åsmul
  • 39,960
  • 25
  • 91
  • 164
  • Didn't think of checking the Event Log. It showed that a folder was missing from the Microsoft.Net\Framework folder. Added that and issue has disappeared. – David Duncan Aug 12 '14 at 02:20