We recently upgraded one of our applications from .net 2.0 to .net 3.5 and we have run into an issue with the installer. Essentially the msi auto populates the Virtual Directory field when we want it to be blank. This wouldn't be such an issue except that I cannot figure out how to set the virtual directory blank from the command line.

Currently I have

msiexec /i $(InstallerPath)\AppInstaller.msi /qn TARGETVDIR= 

And I get the error The folder path 'CURRENTDIRECTORY="C:' contains an invalid character.

. produces The folder path '.' contains an invalid character

Quotes do not work at all.

What can I do to specify a blank Virtual Directory?

EDIT

Using How do I change the default Virtual Directory name during a web service install? I tried to manually set it blank in the installer project. However, it is already blank!

link|improve this question

Does it executes from MSBuild Exec task? single quotes should work <Exec Command='msiexec /i $(InstallerPath)\AppInstaller.msi /qn TARGETDIR=""' /> – KMoraz Jan 13 at 21:35
I end up with a TARGETVDIR field with quotes in it. – Biff MaGriff Jan 13 at 21:46
Why not fix the installer source? if you don't have the source you can use orca.exe – KMoraz Jan 15 at 9:47
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.