Category filter
Configuration profile to restrict screen capturing on Mac
In today’s digital landscape, protecting sensitive information is crucial to prevent unauthorized access and distribution. Screen capturing allows unauthorized users to take snapshots or record videos of sensitive information, increasing the risk of data breaches. Admins can prevent users from capturing sensitive data and reduce the risk of data leakage by making use of a configuration profile to restrict screen capture, which makes it easier for them to manage various endpoints. This can be achieved by Hexnode’s Deploy Custom Configuration feature.
Configuration profile to disable screenshot and screen recording on Mac
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 34 35 36 37 38 39 40 41 42 43 |
<?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>PayloadDescription</key> <string>Configure restrictions</string> <key>PayloadDisplayName</key> <string>Restrictions</string> <key>PayloadIdentifier</key> <string>MacBook.81EEDFE3-CC0B-4D25-BA6D-90BF69C0176E</string> <key>PayloadRemovalDisallowed</key> <false/> <key>PayloadType</key> <string>com.apple.applicationaccess</string> <key>PayloadUUID</key> <string>551F3014-D042-4A87-AE03-E056667CB4FC</string> <key>PayloadVersion</key> <integer>1</integer> <key>allowScreenShot</key> <false/> </dict> </array> <key>PayloadDescription</key> <string>Disable the ability to create screenshots or screen recordings on macOS</string> <key>PayloadDisplayName</key> <string>Disable Screenshot Creation</string> <key>PayloadIdentifier</key> <string>MacBook.400C16DC-15A2-42E0-97C9-8CA79C810C6E</string> <key>PayloadOrganization</key> <string>Hexnode</string> <key>PayloadScope</key> <string>System</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>400C16DC-15A2-42E0-97C9-8CA79C810C6E</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
In the above configuration profile, the <key>allowScreenShot</key> key should be set to false to disable the screenshot as well as the screen recording feature.