Today we are going to talk about Subroutines in VbScript. Subroutines are used to store a bunch of codes inside a document and recall it to use it whenever you want. … Subroutines store scripts inside the “sub” tag; like this: Sub Greeting msgbox "hello" End Sub If you run a file with only subroutines, […]