Ajuda MicroStation CONNECT Edition

O arquivo de configuração ConfigurationSetup.cfg

Quando um caminho de Configuração personalizada é definido durante a instalação, é gravado no arquivo ConfigurationSetup.cfg. Ele define o diretório de Configuração raiz na variável de configuração _USTN_CUSTOM_CONFIGURATION. O msconfig.cfg inclui o ConfigurationSetup.cfg como segue:
%if exists ($(_USTN_INSTALLED_CONFIGURATION)ConfigurationSetup.cfg)
%  include $(_USTN_INSTALLED_CONFIGURATION)ConfigurationSetup.cfg
%endif
Este é o conteúdo do ConfigurationSetup.cfg, como aparece:
#----------------------------------------------------------------------
#  ConfigurationSetup.cfg - Configures the root Configuration directory
#  for Your Organization
#
# The main function of this configuration file is to allow user to specify
# the root Configuration directory to activate. The active Configuration
# directory is represented by _USTN_CONFIGURATION. By default, it points to
# the installed Configuration defined by _USTN_INSTALLED_CONFIGURATION,
# which can consist of example WorkSpaces and WorkSets.
# If your organization has its own Configuration directory, you can define
# _USTN_CUSTOM_CONFIGURATION to that directory path and use it as follows.
#
#_USTN_CUSTOM_CONFIGURATION = D:/.../MyConfiguration/
#_USTN_CONFIGURATION : ${_USTN_CUSTOM_CONFIGURATION}
#----------------------------------------------------------------------

#----------------------------------------------------------------------
# START: The section defines user selection at the time of installation.
# These lines are generated by installer.
[General]
_USTN_CUSTOM_CONFIGURATION=

[SetConfiguration]
%if !defined (_USTN_USER_CONFIGURATION)
%if defined (_USTN_CUSTOM_CONFIGURATION) && ($(_USTN_CUSTOM_CONFIGURATION) != "") && exists ($(_USTN_CUSTOM_CONFIGURATION))
_USTN_CONFIGURATION = $(_USTN_CUSTOM_CONFIGURATION)
%endif
%endif

Nota: O arquivo ConfigurationSetup.cfg não pode ser modificado manualmente. É atualizado automaticamente quando você alterna as configurações ou tiver feito substituições quando o produto é atualizado.

Se um local de Configuração personalizada não é definido durante a instalação, então _USTN_CONFIGURATION indica a pasta de Configuração fornecida definido por _USTN_INSTALLED_CONFIGURATION. Se um local de Configuração personalizada é definido durante a instalação, seu caminho está definido em . _USTN_CUSTOM_CONFIGURATION.