Category filter
Configuration profile to display host information at the login window of Mac
To allow IT admins to display additional information such as host name, system version, and IP address at the login window of their company’s macOS devices, we can use a custom configuration profile. Hexnode offers an efficient solution to remotely deploy this configuration profile to multiple enrolled macOS devices using the Deploy Custom Configuration feature. This is a simple method to ensure that users can view system information for compatibility checks, networking purposes, etc. without even having to log onto their devices.
Display host information at the login window of macOS devices
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>PayloadContent</key> <array> <dict> <key>AdminHostInfo</key> <string>IPAddress</string> <key>PayloadIdentifier</key> <string>com.example.displayloginwindowinfo</string> <key>PayloadType</key> <string>com.apple.loginwindow</string> <key>PayloadUUID</key> <string>fq4ba3c1-3r1c-47n7-t6gf-a4f3482698fe</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Display Login Window Info</string> <key>PayloadIdentifier</key> <string>com.example.configurationprofile</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>52by7d27-2a9a-4p68-9302-2cub19afb3ti</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
The device management profile configures the AdminHostInfo
key, whose assigned value will be displayed as additional host information in the top bar of the login window. The possible values for the AdminHostInfo
key include HostName
, SystemVersion
, or IPAddress
. Prior to macOS version 10.10, this string could only display certain information (host name, system version, or IP address) at a time. But above macOS version 10.10, users can toggle through different host information values by clicking on the clock/time in the top-right of the login window, regardless of the key value chosen.
What happens at the device end?
Once the configuration profile to display host information at the login window of macOS devices is deployed, associated devices will promptly exhibit host information such as the host name, system version, and IP address on the login screen upon the subsequent user login.