Skip to content

Category Archives: vbs

How to tell if another instance of a VBS script is running

The following VBS function will allow you to check if another instance of your script is running. Note, I have only tested this for one user. ?View Code VBSFunction OtherInstances() ‘ This function determines if there are other instances of this script running. If other instances are running it returns TRUE, otherwise it returnes FALSE [...]