Category filter
Deploy custom configuration profile to remove the Siri setup from the Setup Assistant on macOS devices
It is in the best interest of corporations to disable Siri on their devices since it poses many threats in terms of data breach and privacy. Siri collects data from devices to improve its algorithm, data that can be very confidential to the company. Disabling Siri also prevents any accidental breaches of data from the user side. Hexnode helps you to skip the Siri setup from the Setup Assistant whenever you are creating a new user or opening the device for the first time by deploying custom configurations.
Configuration profile to skip the Siri setup from the Setup Assistant on macOS devices
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
<?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>PayloadIdentifier</key> <string> com.example.mysetupassistantpayload</string> <key>PayloadRemovalDisallowed</key> <false/> <key>PayloadScope</key> <string>System</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string> 929F54D0-7D22-405A-8D12-E3FC6C2E31EE </string> <key>PayloadOrganization</key> <string>Company Name</string> <key>PayloadVersion</key> <integer>1</integer> <key>PayloadDescription</key> <string>Skips the Siri Setup pop-up window</string> <key>PayloadDisplayName</key> <string>Skip Siri Setup</string> <key>PayloadContent</key> <array> <dict> <key>PayloadType</key> <string>com.apple.SetupAssistant.managed</string> <key>PayloadVersion</key> <integer>1</integer> <key>PayloadIdentifier</key> <string> com.example.mysetupassistantpayload </string> <key>PayloadEnabled</key> <true/> <key>PayloadUUID</key> <string> 1CEC2BEA-E52C-4891-9F16-E5CBA751274B </string> <key>PayloadDisplayName</key> <string>Login Window</string> <key>SkipSiriSetup</key> <true/> </dict> </array> </dict> </plist> |
The SkipSiriSetup
key can take the values, <true>
or <false>
. If set to <false>
, the Siri setup screen will be shown in the Setup Assistant after the ‘Screen Time’ setup screen. But if set to <true>
, the Siri setup screen will be skipped.