> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 기본 사용자 필수 옵트인

> 기본 사용자 필수 옵트인

간소화된 사용자 모델을 옵트인하려면 아래와 같이 microsoftgame.config에 \<AdvancedUserMode>를 추가하고
"false"를 지정해야 합니다.

```xml theme={null}
<Game configVersion="1">
   <Identity Name="Sample" Publisher="CN=NoPublisher"/>
   <!-- much content removed -->
   <MSAAppId>PleaseChangeMe</MSAAppId>
   <TitleId>FFFFFFFF</TitleId>

   <!-- opt into requiring a default user at launch -->
   <AdvancedUserModel>false</AdvancedUserModel>
</Game>
```

2022년 6월 GDK부터 간소화된 사용자 모델 사용을 옵트인하는 모든 게임은
microsoftgame.config에 다음이 있는지 확인해야 합니다.

* configVersion이 1과 같음
* 타이틀 ID를 지정함
* MSA App ID를 지정함

Partner Center에서 이러한 ID를 자동으로 검색하려면 [MicrosoftGame.config Editor](/build/core-features/common/game-config/MicrosoftGameConfig-Editor)의 "Associate
with Store" 기능을 사용하세요.

GDK의 향후 릴리스에서는 간소화된 사용자 모델이 기본값이 될 것입니다.
그 미래 시점에는 실행 시 기본 사용자가 있다는 보장이 없는
고급 사용자 모델을 옵트인해야 합니다.


## Related topics

- [게임의 기본 사용자 설정](/ko/build/core-features/common/user/users-establishing-default-user.md)
- [Microsoft Game Development Kit 사용자 모델](/ko/build/core-features/common/user/gamecore-user-models.md)
- [사용자](/ko/build/core-features/common/user/user-toc.md)
- [GDK의 사용자 ID 및 XUser API](/ko/build/core-features/common/user/index.md)
- [XBOX 게임 에너지 효율 필수 요소](/ko/build/game-principles/sustainability/energy-efficiency-essentials.md)
