VBS Script: Enumerating Drive Properties Using FSO

The below script is a sample of how to retrieve a drives properties via a VBS script Set objFSO = CreateObject(“Scripting.FileSystemObject”) Set colDrives = objFSO.Drives For Each objDrive in colDrives Wscript.Echo “Available space: ” & objDrive.AvailableSpace Wscript.Echo “Drive letter: ” …

Read more

VBS: Copy files and display a progress bar

The below script with copy files and display a standard windows progress bar. ‘ ——————————————————– ‘ VBS Script to run a Query againt a Active Directory Domain ‘ ‘ Author: Phil Eddies ‘ https://geekshangout.com ‘ ‘ Disclainer: ‘ Use of …

Read more