|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Wednesday, June 22, 2011 8:36 AM
Points: 28,
Visits: 6
|
|
Comments posted here are about the content posted at temp
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 7:33 AM
Points: 1,547,
Visits: 272
|
|
Roy, Excellent article. Can this script be run for multiple servers? Can I set the strComputer variable multiple times similar to the multiple databases? Thanks, John
|
|
|
|
|
UDP Broadcaster
      
Group: General Forum Members
Last Login: Wednesday, January 02, 2013 12:15 PM
Points: 1,443,
Visits: 711
|
|
Roy, Pretty good article. I have a little script I use to determine if I'm running out of space on each of the server drives and send me an email when the freespace gets below a threshold, rather than look at the space of each of the individual files. This might be useful as well.... Mark
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Wednesday, January 23, 2013 12:14 PM
Points: 454,
Visits: 785
|
|
I have no VB skills. When you say "Type cscript //H:Cscript. This will make cscript the default so that to run a vbscript all you need to type is the yourScript.vbs at the prompt without the cscript preface.". Default of what? Since I have no VB background I want to make sure setting this as a default does not break any existing processes. Thanks, Dave
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Wednesday, May 08, 2013 3:22 PM
Points: 514,
Visits: 46
|
|
Good article! You can extend this concept to store the extracted data in a Dba database and then use scheduled report server reports. I have used this concept to email weekly report server reports on overall hard drive space and individual database stats as described in this article.
|
|
|
|
|
Say Hey Kid
      
Group: General Forum Members
Last Login: Wednesday, February 20, 2013 7:37 AM
Points: 692,
Visits: 292
|
|
I moved that script into Excel, It Work like a charm!! Thanks
|
|
|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 10:22 PM
Points: 358,
Visits: 393
|
|
Works perfectly for smaller databases but the variables don't seem to hold GB sized files. What is the syntax for defining a larger variable type instead of just the default? The culprit is this line: strFileMB = objFile.FileSize / CONVERSION_FACTOR When objFile.FileSize is too big this displays blank for sime reason. Commenting out the division part and just trying to print objFile.FileSize is also a blank so I suspect the problem is there. How is that built in var defined and how can it be made to handle a large file size?
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Tuesday, April 30, 2013 9:07 PM
Points: 1,529,
Visits: 824
|
|
Dave,
cscript //H:Cscript will make cscript the default script engine. Windows Script Host (WSH) is the program that runs scripts (VB scripts or javascripts) on Windows operating systems. WSH has two script engines. The default is the wscript engine and the alternate is the cscript engine. The main difference is that the wscript engine will send all of the text from a VB script WScript.Echo command to a dialog box that must be acknowledged by pressing an "OK" button while the cscript engine sends this text to the standard command line output in a cmd window (a.k.a DOS window). Setting the default engine to cscript will allow this VBScript to run without any user input.
|
|
|
|
|
Old Hand
      
Group: General Forum Members
Last Login: 2 days ago @ 8:08 PM
Points: 334,
Visits: 389
|
|
Nice easy to follow article. I wonder if it would be possible (as I have no vb/coding experience either so going a little blind here), to monitor different instances and servers through the same page?
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Tuesday, August 10, 2010 4:54 AM
Points: 815,
Visits: 32
|
|
Great article. I look forward to the next in the series. I did have one problem. I tried the post-script code for adding the date and time to the filename, and got a Windows Script Host error. Line: 10 Char: 1 Error: 'Invalid procedure call or argument: 'DatePart' Code: 800A0005 Source Microsoft VBScript runtime error I am running WSH v 5.6, so i am not sure what is causing the error. David
If it ain't broke, don't fix it...
|
|
|
|