Wifi turning on automatically per user

lpaulson
New Contributor

Hi,

We have a computer lab, fully ethernet and we've always turned off wifi (using a simple JAMF policy running on startup) to avoid confusion.  We recently upgraded to Sonoma and have had reports of users complaining as the wifi is popping up asking for credentials persistently.  On further investigation we've noticed that if you turn wifi off, but then sign in with a new user, wifi is automatically turned back on.

We can fix this by changing our policy to run on 'login' as well as 'startup' but just wondered if others had observed this behaviour, and if it can be attributed to Sonoma or some other update?

Thanks,
Lawrence

1 REPLY 1

AJPinto
Honored Contributor II

Disable Wi-Fi with a Configuration Profile, not a Script. Scripts just politely ask a setting to be configured with no way to force it, Configuration Profiles actually manage the setting.

 

This is what I have used in the past.

AJPinto_0-1715685251832.png

com.apple.MCXAirPor

<?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>DisableAirPort</key>
    <true/>
  </dict>
</plist>
com.apple.mcxMenuExtras

<?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>AirPort.menu</key>
    <false/>
  </dict>
</plist>