Posted on 12-28-2010 07:17 PM
I checked the KB and the Resource Kit and didn't see anything on it. Is anyone using Extension Attributes to pull expansion slot information? We're trying to get an idea how many PCI-Express slots are available on the Mac Pro workstations that are deployed. Hoping someone's done this already... :)
Don
Posted on 09-20-2012 01:57 PM
How about slots used?
#!/bin/bash
PCIused=system_profiler SPPCIDataType | grep -A0 Slot | awk '{print $2}'
echo "<result>$PCIused</result>"