Servers Less Than 1 GB Free Audit
Hardware Hardware ComponentsFind All Your Windows Servers with Less Than 1 GB Free on Their Hard-Disk
Low disk space can cause multiple issues, whether it is on a database server or a regular server, cloud or on-premise, disk space shortages will always cause issues with any service or software which needs store data.
Prevent issues related to insufficient disk space on your servers by running this audit and seeing exactly which machines are low on disk space and require actions to clear up or add additional storage capacity.
Workstations Less Than 1 GB Free Query
Select Top 1000000 tsysOS.Image As icon, tblAssets.AssetID, tblAssets.AssetName, tblDiskdrives.Caption, Cast(Cast(tblDiskdrives.Freespace As bigint) / 1024 / 1024 As numeric) As free, Cast(Cast(tblDiskdrives.Size As bigint) / 1024 / 1024 As numeric) As [total size], tblDiskdrives.Lastchanged As [last changed], tblAssets.Domain, tblAssets.Username, tblAssets.Userdomain, tblAssets.IPAddress, tblAssets.Description, tblAssetCustom.Manufacturer, tblAssetCustom.Model, tblAssetCustom.Location, tsysIPLocations.IPLocation, tsysOS.OSname As OS, tblAssets.SP As SP, tblAssets.Firstseen, tblAssets.Lastseen From tblAssets Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID Inner Join tblOperatingsystem On tblAssets.AssetID = tblOperatingsystem.AssetID Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode Left Join tsysIPLocations On tsysIPLocations.StartIP <= tblAssets.IPNumeric And tsysIPLocations.EndIP >= tblAssets.IPNumeric Where Cast(Cast(tblDiskdrives.Freespace As bigint) / 1024 / 1024 As numeric) < 1024 And Cast(Cast(tblDiskdrives.Size As bigint) / 1024 / 1024 As numeric) <> 0 And tblComputersystem.Domainrole > 1 And tblDiskdrives.DriveType = 3 And tblAssetCustom.State = 1