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 - Badge Status</displayName> <displayInCategory>System State Management</displayInCategory> <description>This attribute returns the Deep Freeze badge setting status of a drive. "Enabled" means that the Deep Freeze badge will be displayed on Frozen Drives.</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 "DON'T BADGE FROZEN DRIVES" | grep "FALSE"`if [ "$result" == "" ]; then result="Disabled"else result="Enabled"fi fiecho "<result>$result</result>" </scriptContentsMac></extensionAttribute>