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>Deep Freeze - Thawed Menu Bar Icon Status</displayName> <displayInCategory>System State Management</displayInCategory> <description>This attribute returns the Deep Freeze setting for displaying an icon in the menu bar when thawed. "Enabled" means that the Deep Freeze menu bar item will be displayed on a machine with a thawed drive.</description> <dataType>string</dataType> <scriptContentsMac>#!/bin/shdfUsername="EditFromTemplate_DeepFreeze_Service_Account_Username"dfPassword="EditFromTemplate_DeepFreeze_Service_Account_Password"if [ -f "/Library/Application Support/Faronics/Deep Freeze/CLI" ]; thenresult=`/Library/Application\ Support/Faronics/Deep\ Freeze/CLI "$dfUsername" "$dfPassword" status | grep "HIDE THAWED ICON IN MENU BAR" | grep "FALSE"`if [ "$result" == "" ]; then result="Disabled"else result="Enabled"fi fiecho "<result>$result</result>" </scriptContentsMac></extensionAttribute>