To run a script from a .bat file, you first have to create that .bat file.
Then, paste this code in the bat file:
@echo off wscript "C:\Users\Thomas\Desktop\test\print.vbs" pause
the @echo off will prevent the printing of commands.
I added the pause command; so you have to manually press a key to exit the output window. Feel free to remove this line.