-
-
Turn on Line Numbers in Visual Studio
They’re off by default. In VS2008 or 2010, turn them on like this.
-
How to Run a Windows Batch Script without a DOS shell window
Just put the below text in a file named whatever with extension “.vbs”, replace “test.bat” with the path of the batch script you want to run, save, then double-click the .vbs file and voila! Faceless batch script execution.
' This script runs a batch file in the background.
' From http://www.pcreview.co.uk/forums/thread-364530.php
'
Set WshShell = CreateObject("WScript.Shell")
cmds=WshShell.RUN("test.bat", 0, True)
Set WshShell = Nothing