使用visual studio InstallShield时出错

时间:2021-10-15 19:23:03

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

我在使用InstallShield创建Windows窗体应用程序时遇到错误。

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?

有谁知道如何解决这一问题?

1 个解决方案

#1


1  

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.

您正在使用默认安装位置路径名中的字符,这些字符在构建安装版本的默认代码页1252中不受支持。

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

在“Releases”>(YourReleaseName)>“Build”-Tab中启用“Build UTF-8 Database”。

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

或者最好避免在Windows文件路径中使用非拉丁字母。

#1


1  

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.

您正在使用默认安装位置路径名中的字符,这些字符在构建安装版本的默认代码页1252中不受支持。

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

在“Releases”>(YourReleaseName)>“Build”-Tab中启用“Build UTF-8 Database”。

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

或者最好避免在Windows文件路径中使用非拉丁字母。