Script to list free disk space on a computer?
Script to list free disk space on a computer? If you are running a Microsoft OS, then you can use this script from the Microsoft site to list the FreeSpace. CODE: Const HARD_DISK = 3 strComputer = “.” Set objWMIService = GetObject(“winmgmts:” _ & “{impersonationLevel=impersonate}!\\” & strComputer & “\root\cimv2″) Set colDisks = objWMIService.ExecQuery _ (“Select [...]
