**We are currently moving to a new host. Please pardon any errors!**
Scripts | Debugge
 

Posts categorized under ‘Scripts’

VBS to display all users in Active Directory by Group

This script, run on your Active Directory controller, will give you an html display of all users in Active Directory based on group. This is a very handy script for me as I use it to run a weekly internal [...]

Read More

Visual Basic Script to Display all Users in Active Directory with “Not Expiring Passwords”

Recently, I was requested to give an auditor a list of all users with “non-expiring” passwords in Active Directory. After doing a little digging on the internet, I compiled this based on some stuff I found, and made my own [...]

Read More

BAT Windows delete files older than X days

I found this useful and knew I needed to share. This utilizes the FORFILES command. echo off   rem First Delete old SQL Backup Files   FORFILES /p "DIRECTORY" /s /m *.* /d -DAYS /c "CMD /C del /Q @FILE" [...]

Read More