Check content of ZIP file with VBS

Sometimes it is useful to verify the contents of a ZIP file before processing it further. One common check is to determine how many files are stored inside the archive. This can help identify whether the ZIP file is empty or possibly corrupted. A simple VBScript can do this by using the Windows Shell namespace … Weiterlesen

Blinking keyboard LED via VBS to get attention

When a script is waiting for input, a standard message box is sometimes too easy to miss. A simple workaround is to combine an on-screen pop-up with a blinking keyboard LED, so the user gets both a visible desktop notification and a hardware-based signal. In this example, VBScript uses WScript.Shell to toggle the Scroll Lock key and display a … Weiterlesen