You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?xml version="1.0" encoding="UTF-8"?><extensionAttribute> <displayName>Current User FaceTime ID</displayName> <displayInCategory>User Information</displayInCategory> <description>This attribute displays the active FaceTime login ID of the current user. This attribute applies only to Mac.</description> <dataType>string</dataType> <scriptContentsMac>#!/bin/shloginID=`/usr/libexec/plistbuddy -c Print ~/Library/Preferences/com.apple.imservice.FaceTime.plist | grep "LoginAs" | cut -d: -f2`if [ "loginID" != "" ]; thenecho "<result> $loginID </result>"elseecho "<result> No FaceTime login information found.</result>"fi </scriptContentsMac></extensionAttribute>