Open text editor and enter this:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "C:\Path\To\Your\Batch\File.bat" & Chr(34), 0
Set WshShell = Nothing
Save file with a *.vbs extension and close the text editor.
Double-click the file to run your batch file silently.
This will run the batch file without displaying any output to the screen. The "0" parameter in the command specifies that the batch file should be run silently. If you want to display the output, change the "0" to "1" or "2".