user3150998
user3150998

Reputation: 37

error while using visual studio InstallShield

I'm getting error while using InstallShield to create a Windows Form application setup.

When I run the build I get the error

"The DefaultDir column of the Directory table includes characters that are not available on code page 1252"

Does anyone know how to fix this?

Upvotes: 2

Views: 2536

Answers (2)

Hien Nguyen
Hien Nguyen

Reputation: 18973

Base on @user1064248 answer,

Enable "Build UTF-8 Database" in "Releases" > (YourReleaseName) > "Build"-Tab

It worked in my side.

I add image for more detail step. I share for whom concerned.

enter image description here

Upvotes: 1

user1064248
user1064248

Reputation:

You are using characters in your default install location path name that are not supported in the default codepage 1252 your installation release is build.

Enable "Build UTF-8 Database" in "Releases" > (YourReleaseName) > "Build"-Tab.

OR maybe better avoid using non latin letters in windows file paths.

Upvotes: 3

Related Questions