Config profile to require admin password to change WiFi

jwbeatty
New Contributor III

Hello,

Has anyone found a way to configure this using a config profile or script now that the airport command has been deprecated? I'm trying to configure this setting:

 

adminWiFi.png

 Thanks!

 

--Josh

 

1 ACCEPTED SOLUTION

snowfox
Contributor III

This was working.  We use it to manage these settings in student labs.

Domain: com.apple.MCX

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>RequireAdminForAirPortNetworkChange</key>
    <true/>
    <key>RequireAdminForIBSS</key>
    <true/>
    <key>RequireAdminToTurnAirPortOnOff</key>
    <true/>
  </dict>
</plist>

 

View solution in original post

2 REPLIES 2

snowfox
Contributor III

This was working.  We use it to manage these settings in student labs.

Domain: com.apple.MCX

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>RequireAdminForAirPortNetworkChange</key>
    <true/>
    <key>RequireAdminForIBSS</key>
    <true/>
    <key>RequireAdminToTurnAirPortOnOff</key>
    <true/>
  </dict>
</plist>

 

jwbeatty
New Contributor III

Thanks, snowfox! This works great.