Collection of helper/utility scripts
For Windows system administrators, Microsoft suggests migrating to PowerShell. However, the VBScript engine will continue to be shipped with future releases of Microsoft Windows.
My advice: Don't create whole new complex scripts using VBScript anymore. Using and maintaining old stable ones is fine.
Why still use it for small scripts ?:
(normally!) you cannot execute a Powershell script by clicking and have to invoke the script like
PowerShell -NoProfile -ExecutionPolicy Bypass -file my_script.ps1
Called "Security by design" - the Powershell team advise against changing ps1 files to run on click
-> not comfortable if you just want to execute some small scripts
-> VBScripts can be run by clicking on any machine with default configuration