Created
January 16, 2015 11:04
-
-
Save vdvm/ecb999445ac8be0d83d0 to your computer and use it in GitHub Desktop.
Apple configuratieprofiel: wifi.mobileconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Inc//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PayloadVersion</key> | |
<integer>1</integer> | |
<key>PayloadUUID</key> | |
<string>{{ UUID_1 }}</string> | |
<key>PayloadType</key> | |
<string>Configuration</string> | |
<key>PayloadIdentifier</key> | |
<string>com.securew2.{{ UUID_3 }}</string> | |
<key>PayloadDisplayName</key> | |
<string>{{ NAME }}</string> | |
<key>PayloadDescription</key> | |
<string>{{ DESCRIPTION }}</string> | |
<key>PayloadOrganization</key> | |
<string>{{ ORGANIZATION }}</string> | |
<key>PayloadContent</key> | |
<array> | |
<dict> | |
<key>PayloadVersion</key> | |
<integer>1</integer> | |
<key>PayloadUUID</key> | |
<string>{{ UUID_2 }}</string> | |
<key>PayloadType</key> | |
<string>com.apple.wifi.managed</string> | |
<key>PayloadIdentifier</key> | |
<string>com.securew2.{{ UUID_3 }}.wifi.{{ NAME }}</string> | |
<key>PayloadDisplayName</key> | |
<string>{{ NAME }}</string> | |
<!--<key>PayloadDescription</key> | |
<string>{{ DESCRIPTION }}</string>--> | |
<key>PayloadOrganization</key> | |
<string>{{ ORGANIZATION }}</string> | |
<key>SSID_STR</key> | |
<string>{{ SSID }}</string> | |
<key>HIDDEN_NETWORK</key> | |
<false/> | |
<key>AutoJoin</key> | |
<true/> | |
<key>EncryptionType</key> | |
<string>WPA</string> | |
<key>Password</key> | |
<string>{{ PASSWORD }}</string> | |
</dict> | |
</array> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment