vote up 1 vote down star

I am trying to make an installer for a project I did not write, and I use the wizard to create the setup. Program Files Folder contains a favicon.ico, a custom dll, and Primary output from the project.

Whenever I build the installer and try to run it I get a, "The folder path '.' contains an invalid character." and the installer aborts. How can I fix this? What is going on?

flag

What folder is it trying to install to? – CalvinR Feb 6 at 16:38
Okay but where in the program folder, what is the path that it's installing to, or is it just c:\Program Folder. – CalvinR Feb 6 at 17:08
It's whatever the environment variable is set to for program folder, which is usually C:\Program Folder – Malfist Feb 6 at 17:10
I know that but what about the rest of the path is it just the Program Folder or is there a sub folder that it is being installed to. – CalvinR Feb 6 at 18:10
See my answer I made before you commented, that was the case. It was trying to install it to an illegal path because of the manufacturer name. – Malfist Feb 6 at 18:32
show 1 more comment

1 Answer

vote up 2 vote down check

Found the solution. At work when we install something and it asks for company name and user name we always put '.', well Visual Studio uses the company name for the setup projects as [Manufacturer]. I.E. it was trying to install to C:\Program Folder(x86).\ProjectName. To fix it I removed the [Manufacturer] from the folder path of ApplicationFolder.

link|flag

Your Answer

Get an OpenID
or

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