Ever wonder:
How to use VBScript to automate a task?
How to send an e-mail using VBScript?
How WSH could allow more control in Administrating systems?
Starting with this site: Microsoft Windows 2000 Scripting Guide
There is lots of great stuff in there, for example this little gem on sending an e-mail:
Set objEmail = CreateObject(”CDO.Message”)
objEmail.From = “admin1@fabrikam.com”
objEmail.To = “admin2@fabrikam.com”
objEmail.Subject = [...]
