I am trying to find a working extension attribute for space. Most interested in space left on drive in Megabytes - or maybe also the total capacity
Have found the following that I put into a EA - but don´t seem to work as nothing is rapported
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE extensionAttribute PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<extensionAttribute>
<displayName>Boot Volume Free Space</displayName>
<displayInCategory/>
<dataType>integer</dataType>
<description>Returns the free space on the current boot volume in GB, rounded down to the nearest integer.</description>
<scriptContentsMac>#!/bin/bash
free=`diskutil info /|grep "Free Space"|awk '{print $4}'`
echo "<result>"${free%.*}"</result>"</scriptContentsMac>
</extensionAttribute>
Do any has some working on this on Mojave?
