Looking for a way to execute a vbscript on multiple remote machines

(imported topic written by tgxwtso91)

I am new to Big Fix and am more familiar with vbscript (for now). How can I run my vbscripts (.vbs) against multiple machines

thanks

(imported comment written by BenKus)

Hi tgxwtso,

You will want to put your vbscript on a server somewhere and download it in a Task or you will want to create the vbscript on the fly in your actionscript…

Try this:

  • Go to Tools > Create New Task
  • In the actionscript tab, type:

createfile until __END

__END

move __createfile myvbs.vbs
waithidden cscript.exe myvbs.vbs

  • For the relevance tab, you can leave it at “True” or add relevance to define which computers this can run on…

Save your Task and then target it to computers…

Ben