mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-24 03:07:22 +00:00
131 lines
3.4 KiB
Markdown
131 lines
3.4 KiB
Markdown
---
|
|
title: WiFi DDF file
|
|
description: Learn about the OMA DM device description framework (DDF) for the WiFi configuration service provider (CSP).
|
|
ms.reviewer:
|
|
manager: aaroncz
|
|
ms.author: vinpa
|
|
ms.topic: article
|
|
ms.prod: windows-client
|
|
ms.technology: itpro-manage
|
|
author: vinaypamnani-msft
|
|
ms.date: 06/28/2018
|
|
---
|
|
|
|
# WiFi DDF file
|
|
|
|
> [!WARNING]
|
|
> Some information relates to pre-released product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
|
|
|
|
This topic shows the OMA DM device description framework (DDF) for the **WiFi** configuration service provider. DDF files are used only with OMA DM provisioning XML.
|
|
|
|
The XML below is for Windows 10, version 1809 and later.
|
|
|
|
```xml
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE MgmtTree PUBLIC " -//OMA//DTD-DM-DDF 1.2//EN"
|
|
"http://www.openmobilealliance.org/tech/DTD/DM_DDF-V1_2.dtd"
|
|
[
|
|
<?oma-dm-ddf-ver supported-versions="1.2"?>
|
|
]>
|
|
<MgmtTree xmlns:MSFT="http://schemas.microsoft.com/MobileDevice/DM">
|
|
<VerDTD>1.2</VerDTD>
|
|
<Node>
|
|
<NodeName>WiFi</NodeName>
|
|
<Path>./Vendor/MSFT</Path>
|
|
<DFProperties>
|
|
<AccessType>
|
|
<Get />
|
|
</AccessType>
|
|
<DFFormat>
|
|
<node />
|
|
</DFFormat>
|
|
<Occurrence>
|
|
<One />
|
|
</Occurrence>
|
|
<Scope>
|
|
<Permanent />
|
|
</Scope>
|
|
<DFType>
|
|
<MIME>com.microsoft/1.1/MDM/WiFi</MIME>
|
|
</DFType>
|
|
</DFProperties>
|
|
<Node>
|
|
<NodeName>Profile</NodeName>
|
|
<DFProperties>
|
|
<AccessType>
|
|
<Get />
|
|
</AccessType>
|
|
<DFFormat>
|
|
<node />
|
|
</DFFormat>
|
|
<Occurrence>
|
|
<One />
|
|
</Occurrence>
|
|
<Scope>
|
|
<Permanent />
|
|
</Scope>
|
|
<DFType>
|
|
<DDFName></DDFName>
|
|
</DFType>
|
|
</DFProperties>
|
|
<Node>
|
|
<NodeName></NodeName>
|
|
<DFProperties>
|
|
<AccessType>
|
|
<Add />
|
|
<Delete />
|
|
<Get />
|
|
<Replace />
|
|
</AccessType>
|
|
<Description>The Profile name of the Wi-Fi network. This is added when WlanXML node is added and deleted when Wlanxml is deleted.</Description>
|
|
<DFFormat>
|
|
<node />
|
|
</DFFormat>
|
|
<Occurrence>
|
|
<ZeroOrMore />
|
|
</Occurrence>
|
|
<Scope>
|
|
<Dynamic />
|
|
</Scope>
|
|
<DFTitle>SSID</DFTitle>
|
|
<DFType>
|
|
<DDFName></DDFName>
|
|
</DFType>
|
|
</DFProperties>
|
|
<Node>
|
|
<NodeName>WlanXml</NodeName>
|
|
<DFProperties>
|
|
<AccessType>
|
|
<Add />
|
|
<Delete />
|
|
<Get />
|
|
<Replace />
|
|
</AccessType>
|
|
<Description>
|
|
XML describing the network configuration and follows Windows WLAN_profile schema.
|
|
Link to schema: https://msdn.microsoft.com/library/windows/desktop/ms707341(v=vs.85).aspx
|
|
</Description>
|
|
<DFFormat>
|
|
<chr />
|
|
</DFFormat>
|
|
<Occurrence>
|
|
<One />
|
|
</Occurrence>
|
|
<Scope>
|
|
<Dynamic />
|
|
</Scope>
|
|
<DFType>
|
|
<MIME>text/plain</MIME>
|
|
</DFType>
|
|
</DFProperties>
|
|
</Node>
|
|
</Node>
|
|
</Node>
|
|
</Node>
|
|
</MgmtTree>
|
|
```
|
|
|
|
## Related topics
|
|
|
|
[WiFi configuration service provider](wifi-csp.md)
|