Report to get the list of machines where available free space in C Drive is less than 5 GB
2/10/2010 | Submitted By afzal
 
1. Logon to Kbox 1000 as Administrator
2. Select Reports
3. Under choose action dropdown select “Add New SQL Report”
4. Paste the following SQL statement under the “SQL Select Statement Box”

SQL:

select MACHINE.NAME AS SYSTEM_NAME,MACHINE.IP,MACHINE_DISKS.DISK_SIZE,MACHINE_DISKS.DISK_FREE,MACHINE_DISKS.NAME AS DISK_NAME from MACHINE_DISKS JOIN MACHINE ON (MACHINE.ID = MACHINE_DISKS.ID) where ((( MACHINE_DISKS.DISK_FREE < '5') AND MACHINE_DISKS.NAME like '%Drive C%')) order by MACHINE.NAME


Printer Friendly Version
 
Problem? Question? Comment? Please, let us know!
Return to AppDeploySM Tips and Tricks.