프로파일 재정의 지정

profile_overrides.xml 파일에는 관리 프로파일의 파일 경로가 나와 있으며 이 파일에 따라 사용되는 소프트웨어 버전이 결정됩니다.

이 파일은 로컬 컴퓨터의 다음과 같은 특정 애플리케이션 관련 폴더에 저장되어야 합니다. %programdata%\<회사_이름>\<애플리케이션 _이름>\profile_overrides.xml

.xml 파일에는 다음 예와 같이 특정한 구문이 사용됩니다.

샘플 profile_overrides.xml 파일

<?xml version="1.0"?>
<profileoverrides>
<version build="*">
	<setting type="QString" value="U:\Common\CAD\Shared\profile_1.xml"
/>
	<setting type="QString" value="U:\Common\CAD\Shared\profile_2.xml"
/>
</version>
<version build="12.0.003">
	<setting type="QString" value="U:\Common\CAD\Shared\profile_3.xml"
/>
</version>
</profileoverrides>

build 파라미터에서 version 태그는 이후 프로파일 파일의 설정이 적용되는 버전을 지정합니다. 별표(*)는 이후 프로파일이 설치된 모든 프로그램 버전에 적용된다는 것을 지정합니다.

value 파라미터에서 settings 태그는 프로그램이 시작될 때 로드되는 profile.xml 파일을 지정합니다. 이러한 파일은 주로 네트워크 드라이브 및 폴더에 있습니다.

값을 재정의하기 위한 지정 순서는 유지해야 합니다. 위의 예에서 개별 사용자 프로파일은 profile_1로 재정의된 후 profile_2로 재정의됩니다.