MicroStation PowerDraft CONNECT Edition Help

WorkSpaceSetup.cfg構成ファイル

WorkSpaceSetup.cfgファイルを使用して、作業環境をカスタマイズできます。msconfig.cfgには、WorkSpaceSetup.cfgの次の記述が含まれています。
%if exists ($(_USTN_CONFIGURATION)WorkSpaceSetup.cfg)
%  include $(_USTN_CONFIGURATION)WorkSpaceSetup.cfg
%endif

提供されているWorkSpaceSetup.cfg.は変更しないことをお勧めします。提供されているWorkSpaceSetup.cfgを、ConfigurationSetup.cfgファイル内に定義されているカスタム構成にコピーしてから、カスタマイズしてください。

以下は、提供されているファイルの内容です。
#----------------------------------------------------------------------
#  WorkSpaceSetup.cfg - Configures WorkSpace for Your Organization
#
# The main function of this Configuration File is to set the label that
# your organization wants to use for WorkSpaces. WorkSpaces are the 
# grouping mechanism for WorkSets. The label for this level of grouping 
# could be Client, Facility, Department, Owner, or whatever you would 
# like it to be. The default label is the neutral "WorkSpace". Uncomment
# the definition below, and set it to your preferred label.
#----------------------------------------------------------------------
# _USTN_WORKSPACELABEL    : WorkSpace
#----------------------------------------------------------------------
# A second possible use for this Configuration File is to redirect the
# root directory where your Organization-wide standards are stored to somewhere 
# other than the default. The default is $(_USTN_CONFIGURATION)Organization/.
# It can be changed by redefining _USTN_ORGANIZATION.
#----------------------------------------------------------------------
#----------------------------------------------------------------------
# A third possible use for this Configuration File is to redirect the
# root directory where your WorkSpaces  are stored to somewhere other
# than the default. The default is $(_USTN_CONFIGURATION)WorkSpaces/.
# It can be changed by redefining _USTN_WORKSPACESROOT.
#
# Assume MY_WORKSPACES_LOCATION variable points to your desired network location like
#MY_WORKSPACES_LOCATION = //MyNetwork/MyWorkSpaces/
#
#%if defined (MY_WORKSPACES_LOCATION) && exists ($(MY_WORKSPACES_LOCATION))
#    _USTN_WORKSPACESROOT = $(MY_WORKSPACES_LOCATION)
#%endif
#----------------------------------------------------------------------

ファイル内のコメントに、作業環境ラベルを組織が希望する値に設定する、場合によっては組織全体の標準データをリダイレクトする、あるいはその他すべての作業環境データをリダイレクトするという3つの基本的な用途が記載されています。