Hi Cori,
I don't believe this is possible, but I may be wrong ?
One option would be to create a new action which runs a powershell script to enumerate the folder sizes, something like this (http://www.sqlnuggets.com/blog/using-powershell-to-list-folders-and-sizes/):
$Computername=$args[0]
$startDirectory = "\\" + $Computername + "\c$"
$directoryItems = Get-ChildItem $startDirectory | Where-Object {$_.PSIsContainer -eq $true} | Sort-Object
foreach ($i in $directoryItems)
{
$subFolderItems = Get-ChildItem $i.FullName -recurse -force | Where-Object {$_.PSIsContainer -eq $false} | Measure-Object -property Length -sum | Select-Object Sum
$i.FullName + " -- " + "{0:N2}" -f ($subFolderItems.sum / 1GB) + " GB"
}
With a new action something like this :
powershell -noprofile -ExecutionPolicy bypass -command //LansweeperServerName/defaultpackageshare$/scripts/script.ps1 {computer}
This will produce something like :
\\PCName\C$\Windows -- 6.4 GB
\\PCName\C$\Temp -- 0.01 GB
\\PCName\C$\PerfLogs -- 0.0 GB