We recently discovered that the Block Pop-up setting in iPadOS under Settings > Safari is enabled by default. Allowing these pop-ups in Safari is crucial for organizations to ensure seamless access to essential tools and features that may otherwise be blocked, such as authentication prompts and online forms. Is there any way we can disable that setting so that Safari doesn’t block pop-ups?
How to Allow Pop-ups on iPadOS devices?Solved
Tags
Replies (3)
Hello @cullen ,
Thanks for reaching out. Hexnode provides a restriction option to prevent users from modifying certain settings, including the ability to block pop-ups. You can follow these steps to configure the restriction:
- Login to your Hexnode UEM portal.
- Navigate to Policies > New Policy. Assign a suitable name.
- Go to iOS > Restrictions. In the restrictions uncheck the option Block pop-ups. Note that you must first enable the Safari option to modify the pop-up option.
For more information, please refer to How to set up iOS MDM Restrictions? documentation.
I hope this helps. Feel free to contact us if you need any further clarification.
Regards,
John Cooper,
Hexnode UEM
Thanks for the info. However, it seems we cannot enforce this setting to make it unmodifiable for the user. Is there any workaround for this?
Hello @cullen , I’ve run into the same issue before. Unfortunately, as far as I know, there’s no way to prevent users from modifying the Block Pop-ups setting. Even with configuration profiles, we cannot disable the settings and make it unmodifiable. You could give this configuration profile a try:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<?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>PayloadContent</key> <array> <dict> <key>PayloadDisplayName</key> <string>Restrictions</string> <key>PayloadIdentifier</key> <string>com.apple.applicationaccess.068F79B6-CC46-4116-B4D9-2575E1A6ED62</string> <key>PayloadType</key> <string>com.apple.applicationaccess</string> <key>PayloadUUID</key> <string>FFAFFF53-0D0A-4BE8-8D82-B8779D5AB052</string> <key>PayloadVersion</key> <integer>1</integer> <key>safariAllowPopups</key> <false></false> </dict> </array> <key>PayloadDisplayName</key> <string>Untitled</string> <key>PayloadIdentifier</key> <string>3CDFBCC5-1D58-4BC5-9AD9-CF19CB5FD1A6</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>410C51C9-5CC4-49FD-B3E7-C5421650FC9B</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
You can set the value of the safariAllowPopups key to false to make the option available for the user to disable the Block Pop-ups setting.
-
Expand