Hi All,
I am trying to populate the ‘Label’ information of disk to be ‘temporary storage’, ‘windows’ or ‘appinstallation’ in the existing relevance. I can get the information on the on prem servers but not from the cloud based servers. Please assist how I can modify the below existing relevance to be able to populate the disk information to be a temporary disk:-1:
(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)
Thanks.