(
name of it & " - Size: " &
(
(
total space of it /
(
1024*1024*1024
)
)
as string & " GB"
)
& ", Used:(" &
(
(
(
total space of it - free space of it
)
*100/
(
total space of it
)
)
as string
)
& "%25) " &
(
(
(
total space of it - free space of it
)
/
(
1024*1024*1024
)
)
as string & " GB"
)
& ", Free:(" &
(
(
(
free space of it
)
*100/
(
total space of it
)
)
as string
)
& "%25) "&
(
(
free space of it /
(
1024*1024*1024
)
)
as string & " GB"
)
)
of drives whose
(
exists name of it AND exists free space of it AND exists type of it AND exists total space of it AND type of it = "DRIVE_FIXED" AND total space of it != 0 AND total space of it > 1024*1024*1024
)
(name of it & " - Size: " & ((total space of it /(1024*1024*1024)) as string & " GB") & ", Used:(" & (((total space of it - free space of it)*100/(total space of it)) as string) & "%25) " & (((total space of it - free space of it) /(1024*1024*1024)) as string & " GB") & ", Free:(" & (((free space of it)*100/(total space of it)) as string) & "%25) "& ((free space of it /(1024*1024*1024)) as string & " GB")) of drives whose(exists name of it AND exists free space of it AND exists type of it AND exists total space of it AND type of it = "DRIVE_FIXED" AND total space of it != 0 AND total space of it > 1024*1024*1024)