(
if
(
0<
(
it /
(
1024*1024*1024*1024
)
)
)
then
(
it /
(
1024*1024*1024*1024
)
)
as string & " TB" else if
(
0<
(
it /
(
1024*1024*1024
)
)
)
then
(
it /
(
1024*1024*1024
)
)
as string & " GB" else if
(
0<
(
it /
(
1024*1024
)
)
)
then
(
it /
(
1024*1024
)
)
as string & " MB" else if
(
0<
(
it /
(
1024
)
)
)
then
(
it /
(
1024
)
)
as string & " KB" else
(
it as string & " B"
)
)
of
(
size of file
(
string values of selects "Name from Win32_PageFileUsage" of wmi
)
)
, string values of selects "Name from Win32_PageFileUsage" of wmi
(if (0<(it / (1024*1024*1024*1024))) then (it / (1024*1024*1024*1024)) as string & " TB" else if (0<(it / (1024*1024*1024))) then (it / (1024*1024*1024)) as string & " GB" else if (0<(it / (1024*1024))) then (it / (1024*1024)) as string & " MB" else if (0<(it / (1024))) then (it / (1024)) as string & " KB" else (it as string & " B")) of (size of file (string values of selects "Name from Win32_PageFileUsage" of wmi)), string values of selects "Name from Win32_PageFileUsage" of wmi