--- title: CustomDeviceUI CSP description: Learn how the CustomDeviceUI configuration service provider (CSP) allows OEMs to implement their custom foreground application. ms.assetid: 20ED1867-7B9E-4455-B397-53B8B15C95A3 ms.reviewer: manager: dansimp ms.author: dansimp ms.topic: article ms.prod: w10 ms.technology: windows author: manikadhiman ms.date: 06/26/2017 --- # CustomDeviceUI CSP The CustomDeviceUI configuration service provider allows OEMs to implement their custom foreground application, as well as the background tasks to run on an IoT device running IoT Core. Only one foreground application is supported per device. Multiple background tasks are supported. The following shows the CustomDeviceUI configuration service provider in tree format as used by both the Open Mobile Alliance (OMA) Device Management (DM) and OMA Client Provisioning. > [!NOTE] > This configuration service provider only applies to Windows 10 IoT Core (IoT Core). ``` ./Vendor/MSFT CustomDeviceUI ----StartupAppID ----BackgroundTasksToLaunch --------BackgroundTaskPackageName ``` **./Vendor/MSFT/CustomDeviceUI** The root node for the CustomDeviceUI configuration service provider. The supported operation is Get. **StartupAppID** AppID string value is the default appid/AUMID to launch during startup. The supported operations are Get and Replace. **BackgroundTasksToLaunch** List of package names of background tasks that need to be launched on device startup. The supported operation is Get. **BackgroundTasksToLaunch/***BackgroundTaskPackageName* Package Full Name of the App that needs be launched in the background. This can contain no entry points, a single entry point, or multiple entry points. The supported operations are Add, Delete, Get, and Replace. ## SyncML examples **Set StartupAppID** ```xml 1 ./Vendor/MSFT/CustomDeviceUI/StartupAppID chr DefaultApp_cw5n1h2txyewy!App ``` **Get all background tasks** ```xml 1 ./Vendor/MSFT/CustomDeviceUI/BackgroundTaskstoLaunch?list=Struct ``` **Add background task** ```xml 1 ./Vendor/MSFT/CustomDeviceUI/BackgroundTaskstoLaunch/BackgroundService1_1.3.0.1_neutral__8wekyb3d8bbwe chr 0 ```