babgond http://www.babgond.com/moonmoon/ 2025-09-13T03:01:20Z Author Der Flounder : Declarative device management user channel and device channel https://derflounder.wordpress.com/2025/09/09/declarative-device-management-user-channel-and-device-channel/ 2025-09-09T14:46:06+00:00 rtrouton Mobile device management (MDM) has the concept of what’s referred to as channels, which defines how management settings can be delivered:

  • Device channel: Allows MDM settings to be delivered to devices and apply device settings to the entire device.
  • User channel: Allows MDM settings to be delivered to user accounts on devices and apply user settings just to the relevant users.

When enrolling a device into an MDM server using device enrollment, a couple of things happen as part of the MDM enrollment process:

  • The device becomes a managed device.
  • The local user account which installs the MDM enrollment profile becomes a managed user.

There’s additional details on what it means to be a managed user, but one of the most important is that in this context, being a managed user means that the local user account can be managed with settings delivered via the user channel. Other local accounts on the Mac are not able to access the user channel and cannot be managed by user level settings.

Declarative device management (DDM) has these same concepts of device channel and user channel and as far as I can tell, it works exactly the same as it does for MDM:

  • Device channel: Allows DDM declarations to be delivered to devices and apply device settings to the entire device.
  • User channel: Allows DDM declarations to be delivered to MDM-managed user accounts on devices and apply user settings just to the relevant users.

What this means is that a MDM-managed user account is able to be managed via settings delivered by the DDM user channel and other accounts which are not MDM-managed are not part of the DDM user channel and cannot be managed by DDM user level settings.

An example of DDM management which uses the user channel are the Safari extension management options. If you check the documentation, as of September 9th, 2025, Safari extension management has the following configuration availability listing:

  • Allowed in supervised enrollment: iOS, macOS, Shared iPad, visionOS
  • Allowed in device enrollment: NA
  • Allowed in user enrollment: NA
  • Allowed in local enrollment: NA
  • Allowed in system scope: iOS, visionOS
  • Allowed in user scope: macOS, Shared iPad

This means that DDM Safari extension management is using the device channel on the following Apple platforms:

  • iOS
  • visionOS

DDM Safari extension management is using the user channel on the following Apple platforms:

  • macOS
  • Shared iPad
]]>
Der Flounder : Managing Safari extensions on macOS Sequoia using Blueprints in Jamf Pro https://derflounder.wordpress.com/2025/09/06/managing-safari-extensions-on-macos-sequoia-using-blueprints-in-jamf-pro/ 2025-09-06T17:18:21+00:00 rtrouton One of the management options Jamf Pro now provides with Blueprints is using DDM declarations to manage the extensions which can used by Apple’s Safari web browser. Let’s see how this works using the Internet Archive‘s Wayback Machine Safari extension, which is available in the Mac App Store via the link below:

https://apps.apple.com/us/app/wayback-machine/id1472432422?mt=12

For more details, please see below the jump.

Safari extensions can be managed using DDM declarations at the user level, which like with user-level MDM profiles, means that they can be applied only to MDM-managed users. When dealing with local accounts, this means that only the local user account which installs the MDM enrollment profile becomes the MDM-managed user. For our purposes here, this means that Safari extension management declarations can only be applied to the MDM-managed user and any other local accounts on the Mac cannot have their Safari extensions managed.

The following options are available for Safari extension management:

  • Allowed Domains
  • Denied Domains
  • Private Browsing
  • State
  • Allowed Domains:
    •  Controls the DNS domain(s) and sub-domain(s) that the extension is allowed to access.
  • Denied Domains:
    •  Controls the DNS domain(s) and sub-domain(s) that the extension is blocked from accessing.
  • Private Browsing:
    •  Controls whether or not the extension is allowed for use when using private browsing.
      •  Options:
        •   Allowed: The extension can be turned on or off when using private browsing.
        •   AlwaysOn: The extension is always enabled when using private browsing if the extension is also enabled outside of private browsing.
        •   AlwaysOff: The extension is never enabled when using private browsing, even if the extension is enabled outside of private browsing.
  • State:
    •  Controls whether an extension is allowed for use in general.
      •  Options:
        •   Allowed: The extension can be turned on or off.
        •   AlwaysOn: The extension is always enabled.
        •   AlwaysOff: The extension is never enabled.

Note:

For Allowed Domains and Denied Domains, the following values are supported:

  • Specific domain: Using a specific DNS domain name.
    •  Example: company.com or subdomain.company.com
  • Wildcard domain: Using a wildcard domain which uses a single asterix character ( * ) as a prefix for the domain. This wildcard will allow both the top-level domain to be matched, as well as matching any sub-domains, with a wildcard domain entry like *company.com being used to match against company.com as well as subdomain.company.com.
    •  Example: *company.com
  • Global wildcard: Uses a single asterix character ( * ). This will match any DNS domain.
    •  Example: *

You can also allow an extension to be specifically used on a specific or wildcarded domain, while blocking it for use on all other domains. For example, if you wanted to allow an extension to be used on the top-level company.com domain and all company.com subdomains, but block it on all others, you could define Allowed Domains and Denied Domains like this:

  • Allowed Domains: *company.com
  • Denied Domains:

For this example, we’re going to set the Wayback Machine Safari extension to use the following settings:

  • Allowed Domains: *
  • Private Browsing: AlwaysOff
  • State: Allowed

This setting will do the following for the Wayback Machine Safari extension:

  • Allow the extension to be used.
  • Allow the extension to be used with all domains.
  • Block the extension from being used with Safari’s private browsing option, even when the extension is enabled outside of private browsing.

I can set up a Blueprint in Jamf Pro to deploy this Safari extension management configuration using the following procedure:

1. Log into Jamf Pro.

2. Select Blueprints

3. Click the Manage Safari extensions box.

4. Give it a name when prompted. For this example, I’m using Manage Wayback Machine Extension.

5. Select a Jamf Pro smart or static group. For this example, I’m selecting a static group named Safari Extension Deployment Group.

6. At the following screen, we need to provide the identifier of the extension along with our settings.

To do this, we need to get the code signature of the Safari extension file. To obtain the code signature, once you have the extension’s file location, you will need to use the codesign command line tool to run a command similar to the one below:


codesign -dv /path/to/extension_goes_here.appex

view raw

gistfile1.txt

hosted with ❤ by GitHub

In the case of the Wayback Machine extension, the extension’s file is available in the following location:

/Applications/Wayback Machine.app/Contents/PlugIns/Wayback Machine Extension.appex

To get the code signature, you would run the following command:


codesign -dv "/Applications/Wayback Machine.app/Contents/PlugIns/Wayback Machine Extension.appex"

view raw

gistfile1.txt

hosted with ❤ by GitHub

That should provide output similar to what’s shown below:


username@computername ~ % codesign -dv "/Applications/Wayback Machine.app/Contents/PlugIns/Wayback Machine Extension.appex"
Executable=/Applications/Wayback Machine.app/Contents/PlugIns/Wayback Machine Extension.appex/Contents/MacOS/Wayback Machine Extension
Identifier=archive.org.waybackmachine.mac.extension
Format=bundle with Mach-O universal (x86_64 arm64)
CodeDirectory v=20500 size=788 flags=0x10000(runtime) hashes=13+7 location=embedded
Signature size=4797
Info.plist entries=22
TeamIdentifier=ZSFX78H3ZT
Runtime Version=13.1.0
Sealed Resources version=2 rules=13 files=165
Internal requirements count=1 size=240
username@computername ~ %

view raw

gistfile1.txt

hosted with ❤ by GitHub

From this output, we are looking for the values of the following lines:

  • Identifier
  • TeamIdentifier

For the Wayback Machine extension, these are the values shown:

  • Identifier: archive.org.waybackmachine.mac.extension
  • TeamIdentifier: ZSFX78H3ZT

For the Blueprint, this information needs to be formatted as shown below:

Identifier (TeamIdentifier)

For the Wayback Machine extension, this means that the identifier for the Blueprint is the following:


archive.org.waybackmachine.mac.extension (ZSFX78H3ZT)

view raw

gistfile1.txt

hosted with ❤ by GitHub

Now that we have the correct identifier, let’s configure the Blueprint settings for the following:

  • Identifier: archive.org.waybackmachine.mac.extension (ZSFX78H3ZT)
  • Extension state: Allowed
  • Private browsing state: Always off
  • Allowed domains: *

7. Once all the information has been entered and verified to be correct, click the Save button.

8. Once everything has been configured, 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 Manage Wayback Machine Extension blueprint as being deployed.

On your managed devices, you can verify that the new Safari extension management 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 User Declarations section with a listing for Safari Extensions.

If you click on the Safari Extensions listing, it should report the following extension is allowed:

archive.org.waybackmachine.mac.extension

For additional information on the configuration, you would need to open Safari and access the extension information for the Wayback Machine extension. There, you should see the following:

  • The Allow in Private Browsing checkbox is unchecked and grayed out.
  • A notification that the extension works on all websites

There should also be notifications that these settings have been configured by device management.

You should also be able to confirm that the Wayback Machine extension is available in regular Safari browser windows, but not available in private browsing windows.

]]>
Der Flounder : Using subsystem and category log predicates when searching the unified system log on macOS Sequoia https://derflounder.wordpress.com/2025/08/24/using-subsystem-and-category-log-predicates-when-searching-the-unified-system-log-on-macos-sequoia/ 2025-08-24T20:11:19+00:00 rtrouton When searching the the unified system log on macOS using predicates, it’s often useful to use logging subsystems when searching for information. For example, as part of a previous post on finding DDM status information in the logs, I used the following command to find data logged within the last ten minutes:


/usr/bin/log show –predicate 'subsystem=="com.apple.remotemanagementd"' –info –last 10m

view raw

gistfile1.txt

hosted with ❤ by GitHub

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 ~ %

view raw

gistfile1.txt

hosted with ❤ by GitHub

Within the data returned by searching for the com.apple.remotemanagementd subsystem, there’s several categories included as part of the subsystem log entries:

  • XPCListenerDelegate
  • client
  • mdmConduit

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

view raw

gistfile1.txt

hosted with ❤ by GitHub

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:

  • Subsystem: com.apple.remotemanagementd
  • Category: mdmConduit


/usr/bin/log show –predicate 'subsystem=="com.apple.remotemanagementd" && category=="mdmConduit"' –info –last 10m

view raw

gistfile1.txt

hosted with ❤ by GitHub

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 ~ %

view raw

gistfile1.txt

hosted with ❤ by GitHub

]]>
Der Flounder : Reading DDM logging on macOS Sequoia https://derflounder.wordpress.com/2025/08/19/reading-ddm-logging-on-macos-sequoia/ 2025-08-19T17:58:08+00:00 rtrouton Figuring out what declarative device management (DDM) is sending to or requesting from a Mac can be a challenge. Fortunately, this is possible to figure out via the unified system logging using the right predicates when searching. For more details, please see below the jump:

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

view raw

gistfile1.txt

hosted with ❤ by GitHub

In this case, the following process and logging subsystem are being checked for their corresponding log entries:

  • Process: remotemanagementd
  • Subsytem: com.apple.remotemanagementd

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…

view raw

gistfile1.txt

hosted with ❤ by GitHub

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

view raw

gistfile1.txt

hosted with ❤ by GitHub

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 ~ %

view raw

gistfile1.txt

hosted with ❤ by GitHub

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

view raw

gistfile1.txt

hosted with ❤ by GitHub

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

view raw

gistfile1.txt

hosted with ❤ by GitHub

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

view raw

gistfile1.txt

hosted with ❤ by GitHub

]]>
Der Flounder : Suppressing the Analytics screen with a configuration profile on macOS Sequoia https://derflounder.wordpress.com/2025/08/12/suppressing-the-analytics-screen-with-a-configuration-profile-on-macos-sequoia/ 2025-08-12T16:47:18+00:00 rtrouton Over the years, Apple has introduced a number of screens which appear the first time you log into a Mac. Among those which appear as of macOS Sequoia 15.6.0 is the Analytics screen, which asks if you want to opt-in to sending app crash and usage data to developers.

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:

  • Preference domain: com.apple.SetupAssistant.managed
  • Key: SkipSetupItems
  • Value: Diagnostics

The profile is available on GitHub via the link below:

https://github.com/rtrouton/profiles/blob/main/SkipAppAnalyticsSetup

]]>
Der Flounder : Session videos now available from Penn State MacAdmins Conference 2025 https://derflounder.wordpress.com/2025/08/11/session-videos-now-available-from-penn-state-macadmins-conference-2025/ 2025-08-11T19:10:26+00:00 rtrouton The good folks at Penn State have posted the session videos from Penn State MacAdmins Conference 2025. The sessions slides are all accessible from the Penn State MacAdmins’ Resources page at the link below:

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:

]]>
Der Flounder : Deploying software update declarations using Blueprints in Jamf Pro https://derflounder.wordpress.com/2025/08/03/deploying-software-update-declarations-using-blueprints-in-jamf-pro/ 2025-08-03T21:06:45+00:00 rtrouton One of the management options Jamf Pro now provides with Blueprints is sending DDM declarations to managed Macs run macOS software updates automatically. This is comparable to Jamf Pro’s managed software update functionality, which also provides the ability to send a DDM declaration to run software updates.

For those familiar with Jamf Pro’s managed software update functionality, the Blueprints software update declaration provides the following update options:

  • Download and schedule to install
  • Specific version

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:

  • Set a date that you want to have your Macs updated by.
  • Set the OS version you want to update to.

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:

  • macOS 15.6.0

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:

  • Date and time of the update:
    • 08/01/2025, 18:00
  • Target OS version:
    • 15.6

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:

https://support.apple.com/guide/deployment/software-update-declarative-configuration-depca14ecd4d/web

 

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:

  • Details
  • Update

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.

]]>
Der Flounder : Using the mdfind command line tool to find duplicate copies of an application on macOS Sequoia https://derflounder.wordpress.com/2025/07/28/using-the-mdfind-command-line-tool-to-find-duplicate-copies-of-an-application-on-macos-sequoia/ 2025-07-28T22:15:21+00:00 rtrouton A common issue faced by Mac admins is that users can have multiple copies of an application on their system. This can be the result of users having standard user rights and running applications out of the home directories, or users reorganizing the Applications directory in a way that makes more sense to them for their needs. Meanwhile, when Mac admins need to report on whether the apps on the fleet are up to date, these additional or reorganized apps may not be patched but do show up in the software reporting as being out of date.

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:

  1. I need to locate all copies of the BBEdit app installed on a particular Mac
  2. The user in question has three copies of BBEdit installed.
  • In /Applications
  • In a user-created BBEdit directory inside of /Applications.
  • In a user-created Applications directory inside of their home folder.

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'"

view raw

gistfile1.txt

hosted with ❤ by GitHub

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 ~ %

view raw

gistfile1.txt

hosted with ❤ by GitHub

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 ~ %

view raw

gistfile1.txt

hosted with ❤ by GitHub

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 ~ %

view raw

gistfile1.txt

hosted with ❤ by GitHub

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"

view raw

gistfile1.txt

hosted with ❤ by GitHub

]]>
Der Flounder : Slides from the “Leveling Up – Managing admin rights in the enterprise” session at Penn State Mac Admins 2025 https://derflounder.wordpress.com/2025/07/17/slides-from-the-leveling-up-managing-admin-rights-in-the-enterprise-session-at-penn-state-mac-admins-2025/ 2025-07-17T22:09:56+00:00 rtrouton For those who wanted a copy of my talk on managing admin rights in the enterprise at Penn State MacAdmins 2025, here are links to the slides in PDF and Keynote format.

]]>
Der Flounder : Slides from the “MDM and DDM 101” session at Penn State MacAdmins 2025 https://derflounder.wordpress.com/2025/07/16/slides-from-the-mdm-and-ddm-101-session-at-penn-state-macadmins-2025/ 2025-07-16T16:22:17+00:00 rtrouton For those who wanted a copy of my talk on MDM and DDM at Penn State MacAdmins 2025, here are links to the slides in PDF and Keynote format.

]]>