mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 13:27:23 +00:00
81 lines
3.8 KiB
Markdown
81 lines
3.8 KiB
Markdown
---
|
|
title: DeveloperSetup CSP
|
|
description: The DeveloperSetup configuration service provider (CSP) is used to configure developer mode on the device. This CSP was added in the Windows 10, version 1703.
|
|
ms.reviewer:
|
|
manager: aaroncz
|
|
ms.author: vinpa
|
|
ms.topic: article
|
|
ms.prod: w10
|
|
ms.technology: windows
|
|
author: vinaypamnani-msft
|
|
ms.date: 06/26/2018
|
|
---
|
|
|
|
# DeveloperSetup CSP
|
|
|
|
The DeveloperSetup configuration service provider (CSP) is used to configure Developer Mode on the device and connect to the Windows Device Portal. For more information about the Windows Device Portal, see [Windows Device Portal overview](/windows/uwp/debug-test-perf/device-portal). This CSP was added in Windows 10, version 1703.
|
|
|
|
> [!NOTE]
|
|
> The DeveloperSetup configuration service provider (CSP) is only supported in Windows 10 Holographic Enterprise edition and with runtime provisioning via provisioning packages. It is not supported in MDM.
|
|
|
|
The following shows the DeveloperSetup configuration service provider in tree format.
|
|
```
|
|
./Device/Vendor/MSFT
|
|
DeveloperSetup
|
|
----EnableDeveloperMode
|
|
----DevicePortal
|
|
--------Authentication
|
|
------------Mode
|
|
------------BasicAuth
|
|
----------------Username
|
|
----------------Password
|
|
--------Connection
|
|
------------HttpPort
|
|
------------HttpsPort
|
|
```
|
|
<a href="" id="developersetup"></a>**DeveloperSetup**
|
|
<p>The root node for the DeveloperSetup configuration service provider.
|
|
|
|
<a href="" id="enabledevelopermode"></a>**EnableDeveloperMode**
|
|
<p>A Boolean value that is used to enable Developer Mode on the device. The default value is false.
|
|
|
|
<p>The only supported operation is Replace.
|
|
|
|
<a href="" id="deviceportal"></a>**DevicePortal**
|
|
<p>The node for the Windows Device Portal.
|
|
|
|
<a href="" id="deviceportal-authentication"></a>**DevicePortal/Authentication**
|
|
<p>The node that describes the characteristics of the authentication mechanism that is used for the Windows Device Portal.
|
|
|
|
<a href="" id="deviceportal-authentication-mode"></a>**DevicePortal/Authentication/Mode**
|
|
<p>An integer value that specifies the mode of authentication that is used when making requests to the Windows Device Portal.
|
|
|
|
<p>The only supported operation is Replace.
|
|
|
|
<a href="" id="deviceportal-authentication-basicauth"></a>**DevicePortal/Authentication/BasicAuth**
|
|
<p>The node that describes the credentials that are used for basic authentication with the Windows Device Portal.
|
|
|
|
<a href="" id="deviceportal-authentication-username"></a>**DevicePortal/Authentication/BasicAuth/Username**
|
|
<p>A string value that specifies the user name to use when performing basic authentication with the Windows Device Portal.
|
|
The user name must contain only ASCII characters and cannot contain a colon (:).
|
|
|
|
<p>The only supported operation is Replace.
|
|
|
|
<a href="" id="deviceportal-authentication-password"></a>**DevicePortal/Authentication/BasicAuth/Password**
|
|
<p>A string value that specifies the password to use when authenticating requests against the Windows Device Portal.
|
|
|
|
<p>The only supported operation is Replace.
|
|
|
|
<a href="" id="deviceportal-connection"></a>**DevicePortal/Connection**
|
|
<p>The node for configuring connections to the Windows Device Portal service.
|
|
|
|
<a href="" id="deviceportal-connection-httpport"></a>**DevicePortal/Connection/HttpPort**
|
|
<p>An integer value that is used to configure the HTTP port for incoming connections to the Windows Device Portal service.
|
|
If authentication is enabled, <strong>HttpPort</strong> will redirect the user to the (required) <strong>HttpsPort</strong>.
|
|
|
|
<p>The only supported operation is Replace.
|
|
|
|
<a href="" id="deviceportal-connection-httpsport"></a>**DevicePortal/Connection/HttpsPort**
|
|
<p>An integer value that is used to configure the HTTPS port for incoming connections to the Windows Device Portal service.
|
|
|
|
<p>The only supported operation is Replace. |