/usr/bin/log show –predicate 'subsystem=="com.apple.remotemanagementd"' –info –last 10m |
This search uses the com.apple.remotemanagementd subsystem as a predicate when searching the logs. However, you can get even more granular by searching for a specific category of information within the com.apple.remotemanagementd subsystem. For example, let’s look at the data returned from running the command above:
username@ZHW4T3TFTH ~ % sudo /usr/bin/log show –predicate 'subsystem=="com.apple.remotemanagementd"' –info –last 10m | |
Password: | |
Filtering the log data using "subsystem == "com.apple.remotemanagementd"" | |
Skipping debug messages, pass –debug to include. | |
Timestamp Thread Type Activity PID TTL | |
2025-08-24 13:50:20.341060-0400 0x2a02 Default 0x0 423 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0x97011c0a0> connection from pid 1177 on mach service named com.apple.remotemanagementd | |
2025-08-24 13:50:20.341093-0400 0x2a02 Default 0x0 423 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Accepted new connection <NSXPCConnection: 0x97011c0a0> connection from pid 1177 on mach service named com.apple.remotemanagementd | |
2025-08-24 13:50:20.341969-0400 0x2cd9 Default 0x86bf 423 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Finding management channel | |
2025-08-24 13:50:20.345364-0400 0x2cd9 Default 0x86bf 423 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Found management channel | |
2025-08-24 13:50:20.345616-0400 0x2cd9 Default 0x3d1c0 423 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Updating 50721780-919B-4DC3-992C-0645A2E38B01 with sync tokens response.. | |
2025-08-24 13:50:20.345738-0400 0x2cd9 Info 0x3d1c2 423 0 remotemanagementd: [com.apple.remotemanagementd:client] Updating via sync tokens… | |
2025-08-24 13:50:20.348540-0400 0x2cd9 Info 0x3d1c2 423 0 remotemanagementd: [com.apple.remotemanagementd:client] Updating finished | |
2025-08-24 13:50:20.348554-0400 0x2cd9 Default 0x3d1c2 423 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Updated with 50721780-919B-4DC3-992C-0645A2E38B01 with sync tokens | |
2025-08-24 13:50:20.348567-0400 0x2a02 Info 0x3d1c2 423 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing only if needed… | |
2025-08-24 13:50:20.476354-0400 0x2a02 Info 0x3d1c2 423 0 remotemanagementd: [com.apple.remotemanagementd:client] There was no status report to send. | |
2025-08-24 13:50:21.106677-0400 0x2cd9 Info 0x3d1c4 423 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-24 13:50:21.172921-0400 0x2cd9 Info 0x3d1c4 423 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully saved server tokens | |
2025-08-24 13:50:21.180791-0400 0x302d Info 0x3d1c3 423 0 remotemanagementd: [com.apple.remotemanagementd:client] Sync only if needed finished | |
——————————————————————————————————————– | |
Log – Default: 6, Info: 7, Debug: 0, Error: 0, Fault: 0 | |
Activity – Create: 0, Transition: 0, Actions: 0 | |
username@ZHW4T3TFTH ~ % |
Within the data returned by searching for the com.apple.remotemanagementd subsystem, there’s several categories included as part of the subsystem log entries:
Those categories show up following the listing for the com.apple.remotemanagementd subsystem in the returned log entries like this:
com.apple.remotemanagementd:XPCListenerDelegate | |
com.apple.remotemanagementd:client | |
com.apple.remotemanagementd:mdmConduit |
If we wanted to get more granular and search the unified system log for only the logs associated with a particular category for a logging subsystem from the last ten minutes, the following command could be used to search using the following predicates:
/usr/bin/log show –predicate 'subsystem=="com.apple.remotemanagementd" && category=="mdmConduit"' –info –last 10m |
That would return only those log entries which matched both the com.apple.remotemanagementd subsystem and the mdmConduit category:
username@ZHW4T3TFTH ~ % sudo /usr/bin/log show –predicate 'subsystem=="com.apple.remotemanagementd" && category=="mdmConduit"' –info –last 10m | |
Password: | |
Filtering the log data using "subsystem == "com.apple.remotemanagementd" AND category == "mdmConduit"" | |
Skipping debug messages, pass –debug to include. | |
Timestamp Thread Type Activity PID TTL | |
2025-08-24 13:50:21.106677-0400 0x2cd9 Info 0x3d1c4 423 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-24 13:50:21.172921-0400 0x2cd9 Info 0x3d1c4 423 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully saved server tokens | |
——————————————————————————————————————– | |
Log – Default: 0, Info: 8, Debug: 0, Error: 0, Fault: 0 | |
Activity – Create: 0, Transition: 0, Actions: 0 | |
username@ZHW4T3TFTH ~ % |
To start, have your MDM server send an DDM declaration command to the device in question. If your MDM server says it sent successfully, see what shows up on the Mac’s end using the following command to get information logged within the last ten minutes:
/usr/bin/log show –predicate 'process=="remotemanagementd" OR subsystem=="com.apple.remotemanagementd"' –info –last 10m |
In this case, the following process and logging subsystem are being checked for their corresponding log entries:
This will likely give you a large number of log entries, but it’s possible to filter for what you’re looking for. For example, a blank push remote command sent from a Jamf Pro MDM server will trigger a Mac to send in a DDM status report to its MDM server. This process of prompting the Mac to send in a DDM status report should include logging a line similar to this:
2025-08-19 10:45:47.161902-0400 0x9e9d Info 0xa38d0 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing only if needed… |
Since we can see that the relevant process is remotemanagementd and the string to search for includes Syncing only if needed, then if you sent a blank push within the last ten minutes you can use the following command to see if the entry appears in the returned logs:
/usr/bin/log show –info –predicate 'process=="remotemanagementd" AND eventMessage contains "Syncing only if needed"' –last 10m |
That should pull up the relevant log entry:
username@computername ~ % sudo /usr/bin/log show –info –predicate 'process=="remotemanagementd" AND eventMessage contains "Syncing only if needed"' –last 10m | |
Password: | |
Filtering the log data using "process == "remotemanagementd" AND composedMessage CONTAINS "Syncing only if needed"" | |
Skipping debug messages, pass –debug to include. | |
Timestamp Thread Type Activity PID TTL | |
2025-08-19 10:45:47.161902-0400 0x9e9d Info 0xa38d0 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing only if needed… | |
——————————————————————————————————————– | |
Log – Default: 0, Info: 1, Debug: 0, Error: 0, Fault: 0 | |
Activity – Create: 0, Transition: 0, Actions: 0 | |
username@computername ~ % |
To look up information specifically about DDM status item logging, using only the com.apple.remotemanagementd subsystem as a predicate when searching the logs looks like it returns this information without including additional information involving only the remotemanagementd process. For example, using the command below should get any DDM status item logging from the last ten minutes:
/usr/bin/log show –predicate 'subsystem=="com.apple.remotemanagementd"' –info –last 10m |
If no status items needed to be updated with the MDM server, you may see logging like this:
Timestamp Thread Type Activity PID TTL | |
2025-08-19 10:45:47.156919-0400 0x9280 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108dc0> connection from pid 2743 on mach service named com.apple.remotemanagementd | |
2025-08-19 10:45:47.156933-0400 0x9280 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108dc0> connection from pid 2743 on mach service named com.apple.remotemanagementd | |
2025-08-19 10:45:47.157306-0400 0x9280 Default 0x599bd 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Finding management channel | |
2025-08-19 10:45:47.159314-0400 0x9280 Default 0x599bd 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Found management channel | |
2025-08-19 10:45:47.159559-0400 0x9280 Default 0x599be 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Updating 25777D53-CFB3-4B8E-8784-AE526D0F4544 with sync tokens response.. | |
2025-08-19 10:45:47.159584-0400 0x9280 Info 0xa38d0 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Updating via sync tokens… | |
2025-08-19 10:45:47.161879-0400 0x9280 Info 0xa38d0 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Updating finished | |
2025-08-19 10:45:47.161885-0400 0x9280 Default 0xa38d0 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Updated with 25777D53-CFB3-4B8E-8784-AE526D0F4544 with sync tokens | |
2025-08-19 10:45:47.161902-0400 0x9e9d Info 0xa38d0 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing only if needed… | |
2025-08-19 10:45:47.243469-0400 0x9e9d Info 0xa38d0 730 0 remotemanagementd: [com.apple.remotemanagementd:client] There was no status report to send. | |
2025-08-19 10:45:47.768490-0400 0x9e9b Info 0xa38d2 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-19 10:45:47.772791-0400 0x9e9b Info 0xa38d2 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully saved server tokens | |
2025-08-19 10:45:47.906551-0400 0x9e9d Info 0xa38d1 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Sync only if needed finished |
If there were status items to send to the MDM server, you may see logging like this:
Timestamp Thread Type Activity PID TTL | |
2025-08-19 09:44:41.080676-0400 0x1787 Info 0x15560 730 0 remotemanagementd: [com.apple.remotemanagementd:daemon] Temp <private> | |
2025-08-19 09:44:41.101304-0400 0x1787 Default 0x15560 730 0 remotemanagementd: [com.apple.remotemanagementd:migrationEngine] Starting to migrate on startup | |
2025-08-19 09:44:41.103506-0400 0x1787 Info 0x15560 730 0 remotemanagementd: [com.apple.remotemanagementd:migrationEngine] Finished migrating | |
2025-08-19 09:44:41.113655-0400 0x1787 Info 0x15560 730 0 remotemanagementd: [com.apple.remotemanagementd:persistentController] Created loaded persistent container at file:///private/var/db/rmd/secure/Database/RemoteManagement.sqlite | |
2025-08-19 09:44:41.113657-0400 0x1787 Default 0x15560 730 0 remotemanagementd: [com.apple.remotemanagementd:migrationEngine] Starting to migrate with CoreData | |
2025-08-19 09:44:41.113827-0400 0x1787 Info 0x15560 730 0 remotemanagementd: [com.apple.remotemanagementd:migrationEngine] Finished migrating | |
2025-08-19 09:44:41.120557-0400 0x1787 Info 0x15566 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Finished loading status publisher XPC service plugins: ( | |
"com.apple.remotemanagement.SecuritySubscriber", | |
"com.apple.remotemanagement.ScreenSharingSubscriber", | |
"com.apple.BackgroundTaskManagementSubscriber", | |
"com.apple.remotemanagement.DiskManagementSubscriber", | |
"com.apple.remotemanagement.SoftwareUpdateSubscriber", | |
"com.apple.remotemanagement.PowerSubscriber", | |
"com.apple.remotemanagement.ManagementTestSubscriber" | |
) | |
2025-08-19 09:44:41.121279-0400 0x1787 Info 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] All predicate status key paths: { | |
"25777D53-CFB3-4B8E-8784-AE526D0F4544" = ( | |
); | |
} | |
2025-08-19 09:44:41.121310-0400 0x1787 Info 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Subscribing to all key paths: {( | |
"softwareupdate.pending-version", | |
"screensharing.connection.group.unresolved-connection", | |
"security.certificate.list", | |
"device.model.number", | |
"softwareupdate.install-reason", | |
"device.operating-system.supplemental.build-version", | |
"device.identifier.serial-number", | |
"management.client-capabilities", | |
"device.model.marketing-name", | |
"device.power.battery-health", | |
"device.identifier.udid", | |
"device.operating-system.build-version", | |
"device.operating-system.supplemental.extra-version", | |
"softwareupdate.install-state", | |
"diskmanagement.filevault.enabled", | |
"device.operating-system.version", | |
"device.operating-system.marketing-name", | |
"device.operating-system.family", | |
"device.model.identifier", | |
"softwareupdate.beta-enrollment", | |
"management.declarations", | |
"services.background-task", | |
"softwareupdate.device-id", | |
"device.model.family", | |
"softwareupdate.failure-reason" | |
)} | |
2025-08-19 09:44:41.121347-0400 0x1787 Info 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Publishing all subscribed status items | |
2025-08-19 09:44:41.131437-0400 0x1787 Info 0x15568 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Starting client… | |
2025-08-19 09:44:41.131639-0400 0x1787 Info 0x15568 730 0 remotemanagementd: [com.apple.remotemanagementd:statusEngine] Started status engine… | |
2025-08-19 09:44:41.131754-0400 0x1787 Info 0x15569 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Started MDM conduit for mdm:00000000-0000-0000-A000-4A414D460003 | |
2025-08-19 09:44:41.131875-0400 0x178e Default 0x1556b 730 0 remotemanagementd: [com.apple.remotemanagementd:configurationPublisher] Starting configuration publisher… | |
2025-08-19 09:44:41.132373-0400 0x1787 Info 0x15569 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing only if needed… | |
2025-08-19 09:44:41.135031-0400 0x1787 Info 0x15569 730 0 remotemanagementd: [com.apple.remotemanagementd:client] There was no status report to send. | |
2025-08-19 09:44:41.172196-0400 0x1793 Info 0x0 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.172212-0400 0x1793 Info 0x0 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.172262-0400 0x1793 Info 0x0 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.172264-0400 0x1793 Info 0x0 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.686518-0400 0x1787 Info 0x15581 730 0 remotemanagementd: [com.apple.remotemanagementd:clientController] Validating sources… | |
2025-08-19 09:44:41.686840-0400 0x1787 Info 0x15582 730 0 remotemanagementd: [com.apple.remotemanagementd:clientController] Syncing MDMv1 sources… | |
2025-08-19 09:44:41.688793-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108f00> connection from pid 729 on mach service named com.apple.remotemanagementd | |
2025-08-19 09:44:41.688799-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108f00> connection from pid 729 on mach service named com.apple.remotemanagementd | |
2025-08-19 09:44:41.688870-0400 0x178a Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108fa0> connection from pid 731 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.688877-0400 0x178a Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108fa0> connection from pid 731 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.689109-0400 0x1791 Default 0x15583 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Finding management channel | |
2025-08-19 09:44:41.689237-0400 0x1787 Info 0x15584 730 0 remotemanagementd: [com.apple.remotemanagementd:clientController] Checking cloud config… | |
2025-08-19 09:44:41.689376-0400 0x178a Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70109720> connection from pid 731 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.689381-0400 0x178a Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70109720> connection from pid 731 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.689555-0400 0x17c9 Default 0x15585 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.689624-0400 0x17c9 Default 0x15585 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.689678-0400 0x1791 Default 0x15583 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Found management channel | |
2025-08-19 09:44:41.689828-0400 0x1787 Info 0x15584 730 0 remotemanagementd: [com.apple.remotemanagementd:clientController] Checked cloud config. | |
2025-08-19 09:44:41.689837-0400 0x1791 Default 0x15586 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.689839-0400 0x1791 Default 0x15586 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.690163-0400 0x179c Default 0x15565 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher SecuritySubscriber.SecurityStatus starting processing status keys: ( | |
"security.certificate.list" | |
) | |
2025-08-19 09:44:41.690183-0400 0x17c9 Default 0x15587 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Updating 25777D53-CFB3-4B8E-8784-AE526D0F4544 with sync tokens response.. | |
2025-08-19 09:44:41.690405-0400 0x1787 Info 0x15560 730 0 remotemanagementd: [com.apple.remotemanagementd:daemon] Started remotemanagementd | |
2025-08-19 09:44:41.690656-0400 0x179c Default 0x1556c 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.security.certificate" = ( | |
); | |
"com.apple.configuration.security.identity" = ( | |
); | |
} | |
2025-08-19 09:44:41.690770-0400 0x178c Default 0x1558a 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] CertificateStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.690803-0400 0x179c Default 0x1556c 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SecuritySubscriber.SecurityApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.security.identity", | |
"com.apple.configuration.security.certificate" | |
)} | |
2025-08-19 09:44:41.690824-0400 0x179c Default 0x1556c 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.691542-0400 0x1791 Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.691921-0400 0x17cc Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.691929-0400 0x17ca Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.692016-0400 0x1791 Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.692068-0400 0x178a Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.692144-0400 0x17cd Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.692240-0400 0x1787 Info 0x1556f 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-19 09:44:41.693870-0400 0x179c Default 0x15565 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher SecuritySubscriber.SecurityStatus finished processing status keys: ( | |
"security.certificate.list" | |
) | |
2025-08-19 09:44:41.693989-0400 0x179c Default 0x15565 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.694154-0400 0x17ce Default 0x1558f 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.696587-0400 0x179d Default 0x1556c 731 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SecuritySubscriber.SecurityApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.security.identity", | |
"com.apple.configuration.security.certificate" | |
)} | |
2025-08-19 09:44:41.696797-0400 0x17d0 Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.698597-0400 0x1787 Info 0x1556f 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully saved partial object | |
2025-08-19 09:44:41.699768-0400 0x178c Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.699775-0400 0x17cc Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.699779-0400 0x17ca Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.699882-0400 0x1791 Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.700262-0400 0x178a Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:externalStatusPublisher] Received status notification: com.apple.iokit.matching/com.apple.remotemanagement.status.diskmanagement.filevault.notification | |
2025-08-19 09:44:41.701086-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Deleting activations (no status): none | |
2025-08-19 09:44:41.701087-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Deleting configurations (and status): none | |
2025-08-19 09:44:41.701088-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Deleting assets (and status): none | |
2025-08-19 09:44:41.701634-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] No configuration references to attach. | |
2025-08-19 09:44:41.702075-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] No asset references to attach. | |
2025-08-19 09:44:41.711073-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Synced activation engine… | |
2025-08-19 09:44:41.711134-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Sync only if needed finished | |
2025-08-19 09:44:41.711135-0400 0x17d1 Info 0x15764 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Started. | |
2025-08-19 09:44:41.711137-0400 0x17c9 Info 0x15589 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Updating via sync tokens… | |
2025-08-19 09:44:41.711146-0400 0x178a Info 0x15567 730 0 remotemanagementd: [com.apple.remotemanagementd:clientController] Started client controller. | |
2025-08-19 09:44:41.711735-0400 0x17c9 Info 0x15589 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Updating finished | |
2025-08-19 09:44:41.711742-0400 0x17c9 Default 0x15589 730 0 remotemanagementd: [com.apple.remotemanagementd:XPCListenerDelegate] Updated with 25777D53-CFB3-4B8E-8784-AE526D0F4544 with sync tokens | |
2025-08-19 09:44:41.711780-0400 0x17ca Info 0x15589 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing only if needed… | |
2025-08-19 09:44:41.715399-0400 0x17ca Info 0x15589 730 0 remotemanagementd: [com.apple.remotemanagementd:client] There was no status report to send. | |
2025-08-19 09:44:41.727126-0400 0x17d5 Info 0x0 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.727138-0400 0x17d5 Info 0x0 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.727166-0400 0x17d5 Info 0x0 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.727167-0400 0x17d5 Info 0x0 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.729921-0400 0x1791 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108820> connection from pid 740 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.729925-0400 0x1791 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108820> connection from pid 740 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.730051-0400 0x1791 Default 0x15767 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.730054-0400 0x1791 Default 0x15767 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.730783-0400 0x17da Default 0x1556c 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.legacy.interactive" = ( | |
); | |
} | |
2025-08-19 09:44:41.730851-0400 0x17da Default 0x1556c 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator InteractiveLegacyProfilesSubscriber.InteractiveLegacyProfilesApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.legacy.interactive" | |
)} | |
2025-08-19 09:44:41.730936-0400 0x17da Default 0x1556c 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.737686-0400 0x17d7 Info 0x0 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.737703-0400 0x17d7 Info 0x0 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.737732-0400 0x17d7 Info 0x0 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.737734-0400 0x17d7 Info 0x0 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.743287-0400 0x17d1 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108c80> connection from pid 741 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.743292-0400 0x17d1 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108c80> connection from pid 741 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.743409-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70109860> connection from pid 741 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.743412-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70109860> connection from pid 741 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.743447-0400 0x178a Default 0x15768 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.743449-0400 0x178a Default 0x15768 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.743505-0400 0x17d1 Default 0x15769 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.743505-0400 0x17d1 Default 0x15769 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.743796-0400 0x17dd Default 0x15565 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher ScreenSharingSubscriberLib.ConnectionGroupStatus starting processing status keys: ( | |
"screensharing.connection.group.unresolved-connection" | |
) | |
2025-08-19 09:44:41.744188-0400 0x17dd Default 0x1556c 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.screensharing.connection" = ( | |
); | |
"com.apple.configuration.screensharing.connection.group" = ( | |
); | |
"com.apple.configuration.screensharing.host.settings" = ( | |
); | |
} | |
2025-08-19 09:44:41.744508-0400 0x17e0 Default 0x1556c 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.HostSettingsApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.screensharing.host.settings" | |
)} | |
2025-08-19 09:44:41.746637-0400 0x17e0 Default 0x1556c 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.HostSettingsApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.screensharing.host.settings" | |
)} | |
2025-08-19 09:44:41.746661-0400 0x17e0 Default 0x1556c 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.ConnectionStoreApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.screensharing.connection", | |
"com.apple.configuration.screensharing.connection.group" | |
)} | |
2025-08-19 09:44:41.746779-0400 0x17df Default 0x15565 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher ScreenSharingSubscriberLib.ConnectionGroupStatus finished processing status keys: ( | |
"screensharing.connection.group.unresolved-connection" | |
) | |
2025-08-19 09:44:41.746860-0400 0x17df Default 0x15565 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.746898-0400 0x17d1 Default 0x1576a 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.757357-0400 0x17db Default 0x1556c 740 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator InteractiveLegacyProfilesSubscriber.InteractiveLegacyProfilesApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.legacy.interactive" | |
)} | |
2025-08-19 09:44:41.771847-0400 0x17e0 Default 0x1556c 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.ConnectionStoreApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.screensharing.connection", | |
"com.apple.configuration.screensharing.connection.group" | |
)} | |
2025-08-19 09:44:41.771865-0400 0x17e0 Default 0x1556c 741 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.777216-0400 0x17e2 Info 0x0 742 0 BackgroundTaskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.777230-0400 0x17e2 Info 0x0 742 0 BackgroundTaskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.777263-0400 0x17e2 Info 0x0 742 0 BackgroundTaskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.777266-0400 0x17e2 Info 0x0 742 0 BackgroundTaskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.780655-0400 0x1791 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70109860> connection from pid 742 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.780659-0400 0x1791 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70109860> connection from pid 742 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.780820-0400 0x1791 Default 0x1576b 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.780821-0400 0x1791 Default 0x1576b 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.781295-0400 0x17e7 Default 0x15565 742 0 BackgroundTaskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher BackgroundTaskManagementSubscriber.BTMRemoteManagementStatus starting processing status keys: ( | |
"services.background-task" | |
) | |
2025-08-19 09:44:41.788005-0400 0x17e7 Default 0x15565 742 0 BackgroundTaskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher BackgroundTaskManagementSubscriber.BTMRemoteManagementStatus finished processing status keys: ( | |
"services.background-task" | |
) | |
2025-08-19 09:44:41.788301-0400 0x17e7 Default 0x15565 742 0 BackgroundTaskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.788568-0400 0x1791 Default 0x1576c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.806008-0400 0x17e6 Info 0x0 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.806021-0400 0x17e6 Info 0x0 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.806043-0400 0x17e6 Info 0x0 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.806044-0400 0x17e6 Info 0x0 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.809040-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70109860> connection from pid 743 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.809044-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70109860> connection from pid 743 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.809184-0400 0x17d1 Default 0x1576d 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.809194-0400 0x17d1 Default 0x1576d 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.810181-0400 0x17ee Default 0x1556c 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.legacy" = ( | |
); | |
} | |
2025-08-19 09:44:41.810246-0400 0x17ee Default 0x1556c 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator LegacyProfilesSubscriber.LegacyProfilesApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.legacy" | |
)} | |
2025-08-19 09:44:41.810289-0400 0x17ee Default 0x1556c 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.844042-0400 0x17eb Info 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.844058-0400 0x17eb Info 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.844130-0400 0x17eb Info 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.844133-0400 0x17eb Info 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.859713-0400 0x17d1 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa701080a0> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.859718-0400 0x17d1 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa701080a0> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.859855-0400 0x17d1 Default 0x1576e 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.859856-0400 0x17d1 Default 0x1576e 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.861699-0400 0x180a Default 0x15565 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:41.862612-0400 0x180a Default 0x15565 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:41.862684-0400 0x180a Default 0x15565 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.862801-0400 0x17c9 Default 0x1576f 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.873418-0400 0x17f0 Default 0x1556c 743 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator LegacyProfilesSubscriber.LegacyProfilesApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.legacy" | |
)} | |
2025-08-19 09:44:41.889938-0400 0x1802 Info 0x0 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.889952-0400 0x1802 Info 0x0 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.889985-0400 0x1802 Info 0x0 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.889987-0400 0x1802 Info 0x0 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.892740-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70109860> connection from pid 746 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.892744-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70109860> connection from pid 746 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.892854-0400 0x17d1 Default 0x158c0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.892855-0400 0x17d1 Default 0x158c0 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.893479-0400 0x1811 Default 0x1556c 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.passcode.settings" = ( | |
); | |
} | |
2025-08-19 09:44:41.893561-0400 0x1811 Default 0x1556c 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator PasscodeSettingsSubscriber.PasscodeSettingsApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.passcode.settings" | |
)} | |
2025-08-19 09:44:41.893596-0400 0x1811 Default 0x1556c 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.896290-0400 0x1791 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108320> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.896294-0400 0x1791 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108320> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.896403-0400 0x1791 Default 0x158c1 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.896404-0400 0x1791 Default 0x158c1 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.897003-0400 0x1808 Default 0x1556c 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.diskmanagement.settings" = ( | |
); | |
} | |
2025-08-19 09:44:41.897175-0400 0x1808 Default 0x1556c 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator DiskManagementSubscriber.DiskManagementApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.diskmanagement.settings" | |
)} | |
2025-08-19 09:44:41.897219-0400 0x1808 Default 0x1556c 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.897715-0400 0x1808 Default 0x1556c 744 0 DiskManagementSubscriber: [com.apple.remotemanagementd:DiskManagementAdapter] configurationFileURL <private> | |
2025-08-19 09:44:41.898171-0400 0x1808 Default 0x1556c 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator DiskManagementSubscriber.DiskManagementApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.diskmanagement.settings" | |
)} | |
2025-08-19 09:44:41.901498-0400 0x180c Info 0x0 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.901513-0400 0x180c Info 0x0 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.901546-0400 0x180c Info 0x0 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.901548-0400 0x180c Info 0x0 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.906695-0400 0x1791 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108320> connection from pid 749 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.906699-0400 0x1791 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108320> connection from pid 749 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.906781-0400 0x1791 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70109720> connection from pid 749 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.906784-0400 0x1791 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70109720> connection from pid 749 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.906870-0400 0x1791 Default 0x158c2 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.906871-0400 0x1791 Default 0x158c2 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.907104-0400 0x17c9 Default 0x158c3 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.907105-0400 0x17c9 Default 0x158c3 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.907263-0400 0x1816 Default 0x15565 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher SoftwareUpdateStatus starting processing status keys: ( | |
"softwareupdate.pending-version", | |
"softwareupdate.beta-enrollment", | |
"softwareupdate.install-reason", | |
"softwareupdate.device-id", | |
"softwareupdate.failure-reason", | |
"softwareupdate.install-state" | |
) | |
2025-08-19 09:44:41.908381-0400 0x1814 Default 0x1556c 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.softwareupdate.enforcement.specific" = ( | |
); | |
"com.apple.configuration.softwareupdate.settings" = ( | |
); | |
} | |
2025-08-19 09:44:41.908429-0400 0x1814 Default 0x1556c 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SoftwareUpdateApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.softwareupdate.enforcement.specific" | |
)} | |
2025-08-19 09:44:41.916092-0400 0x1814 Default 0x1556c 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SoftwareUpdateApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.softwareupdate.enforcement.specific" | |
)} | |
2025-08-19 09:44:41.916105-0400 0x1814 Default 0x1556c 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SoftwareUpdateSettingsApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.softwareupdate.settings" | |
)} | |
2025-08-19 09:44:41.917475-0400 0x1814 Default 0x1556c 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SoftwareUpdateSettingsApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.softwareupdate.settings" | |
)} | |
2025-08-19 09:44:41.917483-0400 0x1814 Default 0x1556c 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.925334-0400 0x1811 Default 0x1556c 746 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator PasscodeSettingsSubscriber.PasscodeSettingsApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.passcode.settings" | |
)} | |
2025-08-19 09:44:41.931455-0400 0x1816 Default 0x15565 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher SoftwareUpdateStatus finished processing status keys: ( | |
"softwareupdate.pending-version", | |
"softwareupdate.beta-enrollment", | |
"softwareupdate.install-reason", | |
"softwareupdate.device-id", | |
"softwareupdate.failure-reason", | |
"softwareupdate.install-state" | |
) | |
2025-08-19 09:44:41.931529-0400 0x1816 Default 0x15565 749 0 SoftwareUpdateSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.931603-0400 0x17d1 Default 0x158c4 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.965510-0400 0x181c Info 0x0 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.965524-0400 0x181c Info 0x0 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.965553-0400 0x181c Info 0x0 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.965554-0400 0x181c Info 0x0 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.968351-0400 0x17c9 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108320> connection from pid 750 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.968356-0400 0x17c9 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108320> connection from pid 750 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.968484-0400 0x17c9 Default 0x158c5 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.968486-0400 0x17c9 Default 0x158c5 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:41.969135-0400 0x1829 Default 0x1556c 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.management.test" = ( | |
); | |
} | |
2025-08-19 09:44:41.969189-0400 0x1829 Default 0x1556c 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagementTestApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.management.test" | |
)} | |
2025-08-19 09:44:41.971318-0400 0x1829 Default 0x1556c 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagementTestApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.management.test" | |
)} | |
2025-08-19 09:44:41.971332-0400 0x1829 Default 0x1556c 750 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:41.973983-0400 0x1821 Info 0x0 751 0 PowerSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.973998-0400 0x1821 Info 0x0 751 0 PowerSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.974020-0400 0x1821 Info 0x0 751 0 PowerSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.974023-0400 0x1821 Info 0x0 751 0 PowerSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:41.976489-0400 0x17d1 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108b40> connection from pid 751 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.976493-0400 0x17d1 Default 0x15565 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108b40> connection from pid 751 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.976608-0400 0x17d1 Default 0x158c6 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.976609-0400 0x17d1 Default 0x158c6 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.976915-0400 0x182d Default 0x15565 751 0 PowerSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher PowerStatus starting processing status keys: ( | |
"device.power.battery-health" | |
) | |
2025-08-19 09:44:41.979485-0400 0x182d Default 0x15565 751 0 PowerSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher PowerStatus finished processing status keys: ( | |
"device.power.battery-health" | |
) | |
2025-08-19 09:44:41.979539-0400 0x182d Default 0x15565 751 0 PowerSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.979583-0400 0x17d1 Default 0x158c7 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.981150-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.981154-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.981259-0400 0x1791 Default 0x158c8 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.981260-0400 0x1791 Default 0x158c8 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.981486-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:41.981889-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:41.981943-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.981982-0400 0x1791 Default 0x158c9 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.994399-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.994403-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:41.994497-0400 0x1791 Default 0x158ca 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.994504-0400 0x1791 Default 0x158ca 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.994731-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:41.994975-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:41.995016-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:41.995040-0400 0x1791 Default 0x158cb 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:41.998669-0400 0x182f Info 0x0 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:44:41.998680-0400 0x182f Info 0x0 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:44:41.998701-0400 0x182f Info 0x0 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:44:41.998702-0400 0x182f Info 0x0 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:44:42.001228-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108c80> connection from pid 753 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.001232-0400 0x17d1 Default 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108c80> connection from pid 753 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.001320-0400 0x17d1 Default 0x158cc 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:42.001321-0400 0x17d1 Default 0x158cc 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:44:42.001808-0400 0x1836 Default 0x1556c 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.services.background-tasks" = ( | |
); | |
"com.apple.configuration.services.configuration-files" = ( | |
); | |
} | |
2025-08-19 09:44:42.002307-0400 0x1836 Default 0x1556c 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagedConfigurationFilesSubscriber.ManagedConfigurationFilesApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.services.configuration-files" | |
)} | |
2025-08-19 09:44:42.002815-0400 0x1836 Default 0x1556c 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagedConfigurationFilesSubscriber.ManagedConfigurationFilesApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.services.configuration-files" | |
)} | |
2025-08-19 09:44:42.002975-0400 0x1836 Default 0x1556c 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagedConfigurationFilesSubscriber.BackgroundTasksApplicator in device scope starting processing configurations of types: {( | |
"com.apple.configuration.services.background-tasks" | |
)} | |
2025-08-19 09:44:42.003017-0400 0x1836 Default 0x1556c 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:44:42.003070-0400 0x178e Info 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:statusSubscriptionsSubscriber] Updating status subscriptions | |
2025-08-19 09:44:42.003107-0400 0x1834 Default 0x1556c 753 0 ManagedConfigurationFilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagedConfigurationFilesSubscriber.BackgroundTasksApplicator in device scope finished processing configurations of types: {( | |
"com.apple.configuration.services.background-tasks" | |
)} | |
2025-08-19 09:44:42.004174-0400 0x178e Info 0x1556c 730 0 remotemanagementd: [com.apple.remotemanagementd:configurationPublisher] Finished loading configuration subscriber plugins: ( | |
"com.apple.remotemanagement.SecuritySubscriber", | |
"com.apple.remotemanagement.InteractiveLegacyProfilesSubscriber", | |
"com.apple.remotemanagement.ScreenSharingSubscriber", | |
"com.apple.remotemanagement.LegacyProfilesSubscriber", | |
"com.apple.remotemanagement.PasscodeSettingsSubscriber", | |
"com.apple.remotemanagement.DiskManagementSubscriber", | |
"com.apple.remotemanagement.SoftwareUpdateSubscriber", | |
"com.apple.remotemanagement.ManagementTestSubscriber", | |
"com.apple.remotemanagement.ManagedConfigurationFilesSubscriber", | |
RMStatusSubscriptionsSubscriber | |
) | |
2025-08-19 09:44:42.007684-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108a00> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.007688-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108a00> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.007771-0400 0x178e Default 0x158cd 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.007772-0400 0x178e Default 0x158cd 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.007916-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.008093-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.008130-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.008160-0400 0x178e Default 0x158ce 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.015458-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70109900> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.015462-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70109900> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.015537-0400 0x17cd Default 0x158cf 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.015537-0400 0x17cd Default 0x158cf 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.015669-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.015821-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.015861-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.015889-0400 0x17cd Default 0x159b0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.027409-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108b40> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.027412-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108b40> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.027494-0400 0x178e Default 0x159b1 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.027495-0400 0x178e Default 0x159b1 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.027647-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.027785-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.027808-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.027837-0400 0x178e Default 0x159b2 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.028919-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108b40> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.028922-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108b40> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.029004-0400 0x17cd Default 0x159b3 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.029005-0400 0x17cd Default 0x159b3 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.029178-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.029326-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.029351-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.029376-0400 0x17cd Default 0x159b4 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.030442-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.030445-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.030521-0400 0x1791 Default 0x159b5 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.030522-0400 0x1791 Default 0x159b5 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.030656-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.030788-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.030810-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.030836-0400 0x1791 Default 0x159b6 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.031885-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa701099a0> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.031888-0400 0x1791 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa701099a0> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.031963-0400 0x1791 Default 0x159b7 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.031963-0400 0x1791 Default 0x159b7 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.032101-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.032232-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.032254-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.032282-0400 0x1791 Default 0x159b8 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.033978-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa701099a0> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.033981-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa701099a0> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.034055-0400 0x178e Default 0x159b9 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.034056-0400 0x178e Default 0x159b9 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.034196-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.034338-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.034363-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.034392-0400 0x178e Default 0x159ba 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.035417-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.035421-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.035493-0400 0x17cd Default 0x159bb 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.035493-0400 0x17cd Default 0x159bb 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.035622-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.035746-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.035768-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.035795-0400 0x17cd Default 0x159bc 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.036850-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.036853-0400 0x178e Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108820> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.036937-0400 0x178e Default 0x159bd 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.036938-0400 0x178e Default 0x159bd 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.037088-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.037214-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.037238-0400 0x1808 Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.037270-0400 0x178e Default 0x159be 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.044315-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa70108a00> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.044319-0400 0x17cd Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa70108a00> connection from pid 744 on mach service named com.apple.remotemanagementd.store | |
2025-08-19 09:44:42.044396-0400 0x17cd Default 0x159bf 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.044396-0400 0x17cd Default 0x159bf 730 0 remotemanagementd: [com.apple.remotemanagementd:storeController] SubscriberStoreWithIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.044566-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus starting processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.044726-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Publisher DiskManagementSubscriber.DiskManagementStatus finished processing status keys: ( | |
"diskmanagement.filevault.enabled" | |
) | |
2025-08-19 09:44:42.044751-0400 0x180a Default 0x0 744 0 DiskManagementSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:statusPublisherDelegate] Fetching complete. | |
2025-08-19 09:44:42.044779-0400 0x17cd Default 0x159c0 730 0 remotemanagementd: [com.apple.remotemanagementd:StoreXPCListenerDelegate] PublishStatusWithStoreIdentifier with 25777D53-CFB3-4B8E-8784-AE526D0F4544… | |
2025-08-19 09:44:42.551356-0400 0x178b Info 0x15766 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-19 09:44:42.559532-0400 0x178b Info 0x15766 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully saved server tokens | |
2025-08-19 09:44:42.564535-0400 0x17ca Info 0x15765 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Sync only if needed finished | |
2025-08-19 09:44:47.167888-0400 0x178e Default 0x158c4 730 0 remotemanagementd: [com.apple.remotemanagementd:statusEngine] Notifying delegate of unacknowledged status subscriptions… | |
2025-08-19 09:44:47.167946-0400 0x178e Info 0x158c4 730 0 remotemanagementd: [com.apple.remotemanagementd:statusEngine] Notified delegate of unacknowledged status subscriptions. | |
2025-08-19 09:44:47.167962-0400 0x17cd Info 0x158c4 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing only if needed… | |
2025-08-19 09:44:47.170858-0400 0x17cd Info 0x159c6 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Sending arbitrary status… | |
2025-08-19 09:44:47.560931-0400 0x17ca Info 0x159c7 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-19 09:44:47.561834-0400 0x17ca Info 0x159c7 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully sent status | |
2025-08-19 09:44:47.659777-0400 0x17ca Info 0x159c7 730 0 remotemanagementd: [com.apple.remotemanagementd:statusEngine] Acknowledged status subscriptions: softwareupdate.install-reason | |
2025-08-19 09:44:47.661116-0400 0x178e Info 0x159c8 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Sync only if needed finished | |
2025-08-19 09:45:30.932390-0400 0x17ce Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:xpcActivityScheduler] Triggered on reboot | |
2025-08-19 09:51:31.603204-0400 0x3715 Info 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:daemon] Temp <private> | |
2025-08-19 09:51:31.626905-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Starting to migrate on startup | |
2025-08-19 09:51:31.627284-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Processing migration action: RMMigrationSystemContainer | |
2025-08-19 09:51:31.632163-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Processing migration action: RMMigrationStatusPath | |
2025-08-19 09:51:31.633781-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Processing migration action: RMMigrationExcludeFromBackup | |
2025-08-19 09:51:31.634868-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Processing migration action: RMMigrationMathSettings | |
2025-08-19 09:51:31.749187-0400 0x3715 Info 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Finished migrating | |
2025-08-19 09:51:31.763009-0400 0x3715 Info 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:persistentController] Created loaded persistent container at file:///Users/username/Library/Application%20Support/com.apple.RemoteManagementAgent/Database/RemoteManagement.sqlite | |
2025-08-19 09:51:31.763012-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Starting to migrate with CoreData | |
2025-08-19 09:51:31.763101-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Processing migration action: RMMigrationSupervised | |
2025-08-19 09:51:31.798382-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationSupervised] Checking migration – is supervised | |
2025-08-19 09:51:31.798700-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationSupervised] Ignoring migration – no enrolled device channel | |
2025-08-19 09:51:31.801622-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Processing migration action: RMMigrationConfigurationUI | |
2025-08-19 09:51:31.802443-0400 0x3715 Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationConfigurationUI] Removed cached configuration UIs: 0 | |
2025-08-19 09:51:31.803629-0400 0x3715 Info 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:migrationEngine] Finished migrating | |
2025-08-19 09:51:31.825813-0400 0x3715 Info 0x53e87 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:externalStatusPublisher] Finished loading status publisher XPC service plugins: ( | |
"com.apple.remotemanagement.SecuritySubscriber", | |
"com.apple.remotemanagement.ScreenSharingSubscriber", | |
"com.apple.remotemanagement.AccountSubscriber", | |
"com.apple.remotemanagement.ManagementTestSubscriber" | |
) | |
2025-08-19 09:51:31.826075-0400 0x3715 Info 0x53e86 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:externalStatusPublisher] All predicate status key paths: { | |
} | |
2025-08-19 09:51:31.826080-0400 0x3715 Info 0x53e86 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:externalStatusPublisher] Subscribing to all key paths: {( | |
)} | |
2025-08-19 09:51:31.826212-0400 0x3715 Info 0x53e86 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:externalStatusPublisher] Publishing all subscribed status items | |
2025-08-19 09:51:31.826441-0400 0x371b Default 0x53e89 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:configurationPublisher] Starting configuration publisher… | |
2025-08-19 09:51:31.826471-0400 0x3715 Info 0x53e8b 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:clientController] Validating sources… | |
2025-08-19 09:51:31.826477-0400 0x371a Info 0x53e88 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:clientController] Started client controller. | |
2025-08-19 09:51:31.826510-0400 0x3715 Info 0x53e8c 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:clientController] Syncing MDMv1 sources… | |
2025-08-19 09:51:31.827607-0400 0x371a Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:xpcActivityScheduler] Triggered periodic sync | |
2025-08-19 09:51:31.827688-0400 0x371a Info 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:clientController] Accounts synchronized. | |
2025-08-19 09:51:31.827689-0400 0x371a Default 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:xpcActivityScheduler] All management sources synchronized | |
2025-08-19 09:51:31.827804-0400 0x3715 Info 0x53e81 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:daemon] Started RemoteManagementAgent | |
2025-08-19 09:51:31.949654-0400 0x3457 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:xpcActivityScheduler] Triggered periodic sync | |
2025-08-19 09:51:32.053377-0400 0x3457 Info 0x159cf 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Syncing… | |
2025-08-19 09:51:32.194954-0400 0x3457 Info 0x53f40 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Sending arbitrary status… | |
2025-08-19 09:51:32.320975-0400 0x3754 Info 0x0 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:32.321009-0400 0x3754 Info 0x0 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:32.321041-0400 0x3754 Info 0x0 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:32.321042-0400 0x3754 Info 0x0 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:32.328035-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36110320> connection from pid 1275 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.328044-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36110320> connection from pid 1275 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.328391-0400 0x371a Default 0x53e8d 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.328407-0400 0x371a Default 0x53e8d 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.328832-0400 0x3771 Default 0x53e8a 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.safari.extensions.settings" = ( | |
); | |
} | |
2025-08-19 09:51:32.328967-0400 0x376d Default 0x53e8a 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator WBSSafariExtensionsConfigurationApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.safari.extensions.settings" | |
)} | |
2025-08-19 09:51:32.336388-0400 0x376d Default 0x53e8a 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator WBSSafariExtensionsConfigurationApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.safari.extensions.settings" | |
)} | |
2025-08-19 09:51:32.336392-0400 0x376d Default 0x53e8a 1275 0 SafariConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:32.604224-0400 0x3774 Info 0x0 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:32.604250-0400 0x3774 Info 0x0 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:32.604287-0400 0x3774 Info 0x0 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:32.604289-0400 0x3774 Info 0x0 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:32.607495-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36111720> connection from pid 1278 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.607500-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36111720> connection from pid 1278 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.607640-0400 0x374c Default 0x53e8e 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.607642-0400 0x374c Default 0x53e8e 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.607922-0400 0x379b Default 0x53e8a 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.security.certificate" = ( | |
); | |
"com.apple.configuration.security.identity" = ( | |
); | |
} | |
2025-08-19 09:51:32.608019-0400 0x379a Default 0x53e8a 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SecuritySubscriber.SecurityApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.security.identity", | |
"com.apple.configuration.security.certificate" | |
)} | |
2025-08-19 09:51:32.608093-0400 0x379a Default 0x53e8a 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:32.609985-0400 0x379b Default 0x53e8a 1278 0 SecuritySubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator SecuritySubscriber.SecurityApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.security.certificate", | |
"com.apple.configuration.security.identity" | |
)} | |
2025-08-19 09:51:32.664588-0400 0x379e Info 0x0 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:32.664599-0400 0x379e Info 0x0 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:32.664621-0400 0x379e Info 0x0 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:32.664622-0400 0x379e Info 0x0 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:32.670531-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36110280> connection from pid 1279 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.670535-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36110280> connection from pid 1279 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.670652-0400 0x371a Default 0x53e8f 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.670654-0400 0x371a Default 0x53e8f 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.670875-0400 0x37a2 Default 0x53e8a 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.legacy.interactive" = ( | |
); | |
} | |
2025-08-19 09:51:32.670985-0400 0x37a3 Default 0x53e8a 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator InteractiveLegacyProfilesSubscriber.InteractiveLegacyProfilesApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.legacy.interactive" | |
)} | |
2025-08-19 09:51:32.671038-0400 0x37a3 Default 0x53e8a 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:32.814519-0400 0x37a6 Info 0x0 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:32.814546-0400 0x37a6 Info 0x0 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:32.814590-0400 0x37a6 Info 0x0 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:32.814592-0400 0x37a6 Info 0x0 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:32.820973-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36110280> connection from pid 1280 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.820977-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36110280> connection from pid 1280 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.821181-0400 0x371a Default 0x54060 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.821183-0400 0x371a Default 0x54060 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.821577-0400 0x37aa Default 0x53e8a 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.screensharing.connection" = ( | |
); | |
"com.apple.configuration.screensharing.connection.group" = ( | |
); | |
"com.apple.configuration.screensharing.host.settings" = ( | |
); | |
} | |
2025-08-19 09:51:32.822114-0400 0x37aa Default 0x53e8a 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.HostSettingsApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.screensharing.host.settings" | |
)} | |
2025-08-19 09:51:32.824152-0400 0x37aa Default 0x53e8a 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.HostSettingsApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.screensharing.host.settings" | |
)} | |
2025-08-19 09:51:32.824201-0400 0x37aa Default 0x53e8a 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.ConnectionStoreApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.screensharing.connection.group", | |
"com.apple.configuration.screensharing.connection" | |
)} | |
2025-08-19 09:51:32.838817-0400 0x37a3 Default 0x53e8a 1279 0 InteractiveLegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator InteractiveLegacyProfilesSubscriber.InteractiveLegacyProfilesApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.legacy.interactive" | |
)} | |
2025-08-19 09:51:32.839435-0400 0x37aa Default 0x53e8a 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ScreenSharingSubscriberLib.ConnectionStoreApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.screensharing.connection.group", | |
"com.apple.configuration.screensharing.connection" | |
)} | |
2025-08-19 09:51:32.839443-0400 0x37aa Default 0x53e8a 1280 0 ScreenSharingSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:32.982255-0400 0x37af Info 0x0 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:32.982270-0400 0x37af Info 0x0 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:32.982306-0400 0x37af Info 0x0 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:32.982308-0400 0x37af Info 0x0 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:32.985855-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa361100a0> connection from pid 1281 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.985861-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa361100a0> connection from pid 1281 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:32.986027-0400 0x374c Default 0x54061 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.986028-0400 0x374c Default 0x54061 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:32.986314-0400 0x37b2 Default 0x53e8a 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.legacy" = ( | |
); | |
} | |
2025-08-19 09:51:32.986410-0400 0x37b3 Default 0x53e8a 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator LegacyProfilesSubscriber.LegacyProfilesApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.legacy" | |
)} | |
2025-08-19 09:51:32.986463-0400 0x37b3 Default 0x53e8a 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:32.999735-0400 0x37b3 Default 0x53e8a 1281 0 LegacyProfilesSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator LegacyProfilesSubscriber.LegacyProfilesApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.legacy" | |
)} | |
2025-08-19 09:51:33.013780-0400 0x37b6 Info 0x0 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:33.013791-0400 0x37b6 Info 0x0 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:33.013811-0400 0x37b6 Info 0x0 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:33.013812-0400 0x37b6 Info 0x0 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:33.016996-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36110000> connection from pid 1282 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.016999-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36110000> connection from pid 1282 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.017124-0400 0x371a Default 0x54062 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.017126-0400 0x371a Default 0x54062 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.017398-0400 0x37b8 Default 0x53e8a 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.passcode.settings" = ( | |
); | |
} | |
2025-08-19 09:51:33.017892-0400 0x37b9 Default 0x53e8a 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator PasscodeSettingsSubscriber.PasscodeSettingsApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.passcode.settings" | |
)} | |
2025-08-19 09:51:33.017940-0400 0x37b9 Default 0x53e8a 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:33.035387-0400 0x37b8 Default 0x53e8a 1282 0 PasscodeSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator PasscodeSettingsSubscriber.PasscodeSettingsApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.passcode.settings" | |
)} | |
2025-08-19 09:51:33.155830-0400 0x37bc Info 0x0 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:33.155848-0400 0x37bc Info 0x0 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:33.155909-0400 0x37bc Info 0x0 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:33.155911-0400 0x37bc Info 0x0 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:33.159254-0400 0x3457 Info 0x53f41 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-19 09:51:33.160634-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36111720> connection from pid 1283 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.160639-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36111720> connection from pid 1283 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.160767-0400 0x374c Default 0x54063 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.160768-0400 0x374c Default 0x54063 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.161018-0400 0x37bf Default 0x53e8a 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.account.caldav" = ( | |
); | |
"com.apple.configuration.account.carddav" = ( | |
); | |
"com.apple.configuration.account.exchange" = ( | |
); | |
"com.apple.configuration.account.google" = ( | |
); | |
"com.apple.configuration.account.ldap" = ( | |
); | |
"com.apple.configuration.account.mail" = ( | |
); | |
"com.apple.configuration.account.subscribed-calendar" = ( | |
); | |
} | |
2025-08-19 09:51:33.161479-0400 0x3457 Info 0x53f41 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully sent status | |
2025-08-19 09:51:33.161772-0400 0x37c0 Default 0x53e8a 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator AccountApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.account.caldav", | |
"com.apple.configuration.account.google", | |
"com.apple.configuration.account.ldap", | |
"com.apple.configuration.account.subscribed-calendar", | |
"com.apple.configuration.account.carddav", | |
"com.apple.configuration.account.exchange", | |
"com.apple.configuration.account.mail" | |
)} | |
2025-08-19 09:51:33.162165-0400 0x3457 Info 0x53f41 730 0 remotemanagementd: [com.apple.remotemanagementd:statusEngine] Status subscriptions already acknowledged: device.identifier.serial-number, device.identifier.udid, device.model.family, device.model.identifier, device.model.marketing-name, device.model.number, device.operating-system.build-version, device.operating-system.family, device.operating-system.marketing-name, device.operating-system.supplemental.build-version, device.operating-system.supplemental.extra-version, device.operating-system.version, device.power.battery-health, diskmanagement.filevault.enabled, management.client-capabilities, management.declarations, screensharing.connection.group.unresolved-connection, security.certificate.list, services.background-task, softwareupdate.beta-enrollment, softwareupdate.device-id, softwareupdate.failure-reason, softwareupdate.install-reason, softwareupdate.install-state, softwareupdate.pending-version | |
2025-08-19 09:51:33.163769-0400 0x37c0 Default 0x53e8a 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:33.163805-0400 0x37c1 Default 0x53e8a 1283 0 AccountSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator AccountApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.account.caldav", | |
"com.apple.configuration.account.google", | |
"com.apple.configuration.account.ldap", | |
"com.apple.configuration.account.subscribed-calendar", | |
"com.apple.configuration.account.carddav", | |
"com.apple.configuration.account.exchange", | |
"com.apple.configuration.account.mail" | |
)} | |
2025-08-19 09:51:33.195167-0400 0x37c4 Info 0x0 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:33.195179-0400 0x37c4 Info 0x0 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:33.195203-0400 0x37c4 Info 0x0 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:33.195204-0400 0x37c4 Info 0x0 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:33.197897-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36110320> connection from pid 1284 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.197901-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36110320> connection from pid 1284 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.198006-0400 0x371a Default 0x54064 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.198008-0400 0x371a Default 0x54064 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.198226-0400 0x37c7 Default 0x53e8a 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.management.test" = ( | |
); | |
} | |
2025-08-19 09:51:33.198288-0400 0x37c5 Default 0x53e8a 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagementTestApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.management.test" | |
)} | |
2025-08-19 09:51:33.199569-0400 0x37c5 Default 0x53e8a 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagementTestApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.management.test" | |
)} | |
2025-08-19 09:51:33.199572-0400 0x37c5 Default 0x53e8a 1284 0 ManagementTestSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:33.339634-0400 0x37ca Info 0x0 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:33.339651-0400 0x37ca Info 0x0 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:33.339678-0400 0x37ca Info 0x0 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:33.339678-0400 0x37ca Info 0x0 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:33.346526-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa36110280> connection from pid 1285 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.346530-0400 0x374c Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa36110280> connection from pid 1285 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.346649-0400 0x374c Default 0x54065 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.346651-0400 0x374c Default 0x54065 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.346907-0400 0x37cd Default 0x53e8a 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.security.passkey.attestation" = ( | |
); | |
} | |
2025-08-19 09:51:33.354033-0400 0x37cc Default 0x53e8a 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator AuthenticationServicesCore.ASPasskeyConfigurationSubscriberApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.security.passkey.attestation" | |
)} | |
2025-08-19 09:51:33.354211-0400 0x37cc Default 0x53e8a 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator AuthenticationServicesCore.ASPasskeyConfigurationSubscriberApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.security.passkey.attestation" | |
)} | |
2025-08-19 09:51:33.354215-0400 0x37cc Default 0x53e8a 1285 0 ASConfigurationSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:33.457887-0400 0x37d0 Info 0x0 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] User: <private> | |
2025-08-19 09:51:33.457908-0400 0x37d0 Info 0x0 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Home directory: <private> | |
2025-08-19 09:51:33.457973-0400 0x37d0 Info 0x0 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Temp directory: <private> | |
2025-08-19 09:51:33.457974-0400 0x37d0 Info 0x0 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberClient] Subscribing to locale changes. | |
2025-08-19 09:51:33.462504-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Evaluating new connection <NSXPCConnection: 0xa361100a0> connection from pid 1286 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.462509-0400 0x371a Default 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] Accepted new connection <NSXPCConnection: 0xa361100a0> connection from pid 1286 on mach service named com.apple.RemoteManagementAgent.store | |
2025-08-19 09:51:33.462642-0400 0x371a Default 0x54066 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:StoreXPCListenerDelegate] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.462643-0400 0x371a Default 0x54066 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:storeController] SubscribedStoreDeclarationsWithTypes… | |
2025-08-19 09:51:33.462906-0400 0x37d3 Default 0x53e8a 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Did fetch configurations by type: { | |
"com.apple.configuration.math.settings" = ( | |
); | |
} | |
2025-08-19 09:51:33.462993-0400 0x37d1 Default 0x53e8a 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagedSettingsSubscriber.ManagedSettingsApplicator in user scope starting processing configurations of types: {( | |
"com.apple.configuration.math.settings" | |
)} | |
2025-08-19 09:51:33.463038-0400 0x37d1 Default 0x53e8a 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Fetching complete. | |
2025-08-19 09:51:33.463092-0400 0x371b Info 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:statusSubscriptionsSubscriber] Updating status subscriptions | |
2025-08-19 09:51:33.463285-0400 0x371b Info 0x53e8a 1270 0 RemoteManagementAgent: [com.apple.remotemanagementd:configurationPublisher] Finished loading configuration subscriber plugins: ( | |
"com.apple.SafariShared.SafariConfigurationSubscriber", | |
"com.apple.remotemanagement.SecuritySubscriber", | |
"com.apple.remotemanagement.InteractiveLegacyProfilesSubscriber", | |
"com.apple.remotemanagement.ScreenSharingSubscriber", | |
"com.apple.remotemanagement.LegacyProfilesSubscriber", | |
"com.apple.remotemanagement.PasscodeSettingsSubscriber", | |
"com.apple.remotemanagement.AccountSubscriber", | |
"com.apple.remotemanagement.ManagementTestSubscriber", | |
"com.apple.AuthenticationServices.ASConfigurationSubscriber", | |
"com.apple.remotemanagement.ManagedSettingsSubscriber", | |
RMStatusSubscriptionsSubscriber | |
) | |
2025-08-19 09:51:33.485339-0400 0x37d1 Default 0x53e8a 1286 0 ManagedSettingsSubscriber: (RemoteManagementStore) [com.apple.remotemanagementd:configurationSubscriberDelegate] Applicator ManagedSettingsSubscriber.ManagedSettingsApplicator in user scope finished processing configurations of types: {( | |
"com.apple.configuration.math.settings" | |
)} | |
2025-08-19 09:51:33.754070-0400 0x3457 Info 0x53f43 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-19 09:51:33.760116-0400 0x3457 Info 0x53f43 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully saved server tokens | |
2025-08-19 09:51:34.257699-0400 0x3457 Info 0x53f44 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Got back from MDM: 200 | |
2025-08-19 09:51:34.261299-0400 0x3457 Info 0x53f44 730 0 remotemanagementd: [com.apple.remotemanagementd:mdmConduit] Successfully saved partial object | |
2025-08-19 09:51:34.264732-0400 0x36fe Info 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Deleting activations (no status): none | |
2025-08-19 09:51:34.264734-0400 0x36fe Info 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Deleting configurations (and status): none | |
2025-08-19 09:51:34.264735-0400 0x36fe Info 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Deleting assets (and status): none | |
2025-08-19 09:51:34.266425-0400 0x36fe Info 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] No configuration references to attach. | |
2025-08-19 09:51:34.267061-0400 0x36fe Info 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] No asset references to attach. | |
2025-08-19 09:51:34.272005-0400 0x36fe Info 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:activationEngine] Synced activation engine… | |
2025-08-19 09:51:34.272082-0400 0x36fe Info 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:client] Sync finished | |
2025-08-19 09:51:34.272084-0400 0x36fe Default 0x53f49 730 0 remotemanagementd: [com.apple.remotemanagementd:clientController] Synced identifier: 25777D53-CFB3-4B8E-8784-AE526D0F4544 | |
2025-08-19 09:51:34.272114-0400 0x37c2 Info 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:clientController] Accounts synchronized. | |
2025-08-19 09:51:34.272120-0400 0x37c2 Default 0x0 730 0 remotemanagementd: [com.apple.remotemanagementd:xpcActivityScheduler] All management sources synchronized |
I have not found a way to suppress this screen using a defaults command, but it is possible to suppress the Analytics screen on macOS Sequoia using a configuration profile. For more details, please see below the jump.
The relevant preference domain and key values are below:
The profile is available on GitHub via the link below:
https://github.com/rtrouton/profiles/blob/main/SkipAppAnalyticsSetup
]]>http://macadmins.psu.edu/conference/resources/
All session videos are available via the link below:
https://youtube.com/playlist?list=PLRUboZUQxbyWkCvacoCRerV2qY1ZpL-x0&si=njjyPiZzD8me5Xit
I’ve linked my MDM and DDM 101 session here:
I’ve linked my Leveling Up – Managing admin rights in the enterprise session here:
]]>For those familiar with Jamf Pro’s managed software update functionality, the Blueprints software update declaration provides the following update options:
The Specific version functionality in the managed software update functionality tells the managed Mac to download and install the update for a specific macOS version, like macOS 15.6.0.
The Blueprints software update declaration option provides that same experience, where you can do the following:
For more details, please see below the jump.
For this example, I have the goal of updating managed Macs to the following version of macOS:
I want to have them all updated by Friday, August 1 2025 at 6:00 PM (18:00)
I can set up a Blueprint in Jamf Pro to deploy a software update declaration to enforce this using the following procedure:
1. Log into Jamf Pro.
2. Select Blueprints
3. Click on Update software to latest version.
4. Give it a name when prompted. For this example, I’m using Update to macOS 15.6.
5. Select a Jamf Pro smart or static group. For this example, I’m selecting a static group named Managed Software Update Deployment Group.
6. In the Software Updates section, I’m choosing the following settings:
Note: The options available via Blueprints for software declarations are the ones Apple has specified for software update declarations. For more information about this topic, please see the following link:
7. Once all the information has been entered and verified to be correct, click the Save button.
Once everything has been configured, Jamf Pro should inform you that you have undeployed changes. Click the Deploy button to deploy the changes to the Macs you want to manage.
Once deployed, the Blueprints screen in Jamf Pro should show the newly-created Update to macOS 15.6 Blueprint as being deployed.
On your managed devices, you can verify that the new service background task configuration has been deployed by clicking on the enrollment profile, then scrolling to the bottom. In the case of this example, you should see a Device Declarations section with a listing for Software Update.
If you click on that listing, you should see the details of the software update declaration.
From the user’s perspective, they should see a Notifications center notification appear with two available options:
When you click the Details button, you should see behavior similar to what’s shown below:
When you click the Update button, you should see behavior similar to what’s shown below:
Note: The video above has been edited to artificially reduce the amount of time the OS update took to run. Run time of the pre-edited video was 14 minutes 42 seconds.
]]>When you run into these situations, how to handle them? The first step is finding where the duplicates are and reporting on them. To do this, you can use the mdfind command line tool, using the kMDItemCFBundleIdentifier metadata attribute. This metadata attribute reports on the bundle identifier used by an application, so it should pick up all copies of an app which are using that unique identifier for that app. For more details, please see below the jump.
As an example case, I’m going to use the following scenario:
BBEdit’s bundle identifier is com.barebones.bbedit, so I can use the following mdfind command to find all copies of BBEdit.app:
/usr/bin/mdfind "kMDItemCFBundleIdentifier == 'com.barebones.bbedit'" |
In the scenario described above, that should provide output similar to what’s shown below:
username@computername ~ % /usr/bin/mdfind "kMDItemCFBundleIdentifier == 'com.barebones.bbedit'" | |
/Applications/BBEdit/BBEdit.app | |
/Users/username/Applications/BBEdit.app | |
/Applications/BBEdit.app | |
username@computername ~ % |
However, you may not necessarily want to know about /Applications/BBEdit.app as that may be the only version you want installed. To exclude /Applications/BBEdit.app from your results, you can use the grep command line tool’s -v inverse match and -E regular expression options to exclude /Applications/BBEdit.app from the list of results:
username@computername ~ % /usr/bin/mdfind "kMDItemCFBundleIdentifier == 'com.barebones.bbedit'" | grep -vE "^/Applications/BBEdit.app" | |
/Applications/BBEdit/BBEdit.app | |
/Users/username/Applications/BBEdit.app | |
username@computername ~ % |
If you needed to exclude additional directories (for example, you must exclude searching the user’s home folder for privacy reasons), you can add additional regular expressions to the grep command to exclude additional undesired results. Here’s an example where you’re excluding results from /Users and for /Applications/BBEdit.app:
username@computername ~ % /usr/bin/mdfind "kMDItemCFBundleIdentifier == 'com.barebones.bbedit'" | grep -vE "^/Users|^/Applications/BBEdit.app" | |
/Applications/BBEdit/BBEdit.app | |
username@computername ~ % |
For our scenario, here’s a script that should identify all installed copies of BBEdit on a Mac and display a list of all copies except for /Applications/BBEdit.app:
#!/bin/bash | |
appname="BBEdit" | |
appidentifier="com.barebones.bbedit" | |
/usr/bin/mdfind "kMDItemCFBundleIdentifier == '$appidentifier'" | grep -vE "^/Applications/$appname.app" |
The user experience and operations of the app have not changed from previous versions of Payload-Free Package Creator.app. The changes to Payload-Free Package Creator 2.5 are the following:
Payload-Free Package Creator 2.5, along with all components and scripts, is available on GitHub via the link below:
https://github.com/rtrouton/Payload-Free-Package-Creator
You can download the Payload-Free Package Creator 2.5 installer via the GitHub release page for Payload-Free Package Creator 2.5:
https://github.com/rtrouton/Payload-Free-Package-Creator/releases/tag/2.5
]]>Choosing to deploy the Self Service+ app by default in place of the Self Service classic app will result in the following changes taking place on all macOS 13 Ventura and later Macs which are managed by that Jamf Pro server:
Managed Macs running macOS 12 Monterey or earlier will not have these changes occur. These Macs will continue to use the Self Service classic app.
For more details, please see below the jump.
To enable the Self Service+ app for default deployment to managed Macs running macOS 13 Ventura and later, please use the following procedure:
1. Log into Jamf Pro with an administrator account.
2. Go to Settings: Jamf Apps
3. Select Self Service+
4. In the Self Service+ settings, select the checkbox for Use Self Service+ as the default end user application.
5. Verify the setting is set as desired. Once verified, click the Save button.
Note: Once this option is enabled, all managed Macs running macOS 13 or later will use only the Self Service+ app. It will not be possible to run both the Self Service+ app and the Self Service classic app on the same computer.
Once enabled, you should expect to see the following:
For those who want to test the Self Service+ app while continuing to use the Self Service classic app, please see the documentation linked below:
Deploying Self Service+ to End User Devices Using a Policy:
]]>