VBS Script Find Empty AD Groups

The below is a great little VBS script to find all empty Active Directory groups in the current domain. Usage The empty AD groups will be listed in your command prompt window. The Script Alternative PowerShell Method If you would …

Read more

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