Viewing 4 posts - 1 through 4 (of 4 total)
I pieced together from code examples found online. I would give credit if I knew where to give it, but as it is this was something I kludged together...
April 26, 2010 at 9:44 am
How is the password stored? I've got a few scripts that loop through and change things like global variables I may have something you can work from.
April 23, 2010 at 7:46 am
You'll need to use SQL Server configuration Manager to set SQL server's IP bindings. I've had to do something similar to meet a company policy. This is what...
February 24, 2009 at 8:08 am
You can use command line redirection to hide this.
Try this to hide everything except errors:
MOVE %input% %output% 1>nul
If you want everything including errors hidden:
MOVE %input% %output% >nul
February 24, 2009 at 7:53 am
Viewing 4 posts - 1 through 4 (of 4 total)