Skip to content

Instantly share code, notes, and snippets.

@vdvm
Created January 16, 2015 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vdvm/ecb999445ac8be0d83d0 to your computer and use it in GitHub Desktop.
Save vdvm/ecb999445ac8be0d83d0 to your computer and use it in GitHub Desktop.
Apple configuratieprofiel: wifi.mobileconfig
<?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