Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arijusg/3026b27420ecc84dc6f1142af6edee8c to your computer and use it in GitHub Desktop.
Save arijusg/3026b27420ecc84dc6f1142af6edee8c to your computer and use it in GitHub Desktop.
Configure list of allowed authentication servers (intranet) for Microsoft Edge chromium
  1. Open finder and go to ~/Library/Preferences
  2. Find com.microsoft.Edge.plist. If file doesn't exist, continue, otherwise go to step x
  3. Create a new config file /usr/bin/defaults write ~/Library/Preferences/com.microsoft.Edge.plist RestoreOnStartup -int 1
  4. Convert it to plist: /usr/bin/plutil -convert xml1 ~/Library/Preferences/com.microsoft.Edge.plist
  5. Open ~/Library/Preferences/com.microsoft.Edge.plist with xcode
  6. Add rows below:
  • Key: AuthServerAllowlist, Type: String, Value: *contose.com
  • Key: AuthNegotiateDelegateAllowlist, Type: String, Value: *contoso.com
  1. Remove RestoreOnStartup policy (optional)
  2. Save
  3. Restart Mac.
  4. Open Edge and navigate to edge://policy/ to verify that policies are active
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment