September 4, 2008 4:01 PM
Posted by: Jerry Lees
Development,
Functions,
monitoring,
Networking,
VBScriptI recently began working on trying to figure out ways to troubleshoot real problems with a VBScript and give me some diagnostic information about the current state of the environment. As I build this script I plan on sharing pieces of it bit by bit with you, my readers. I also wanted to get back to...
August 29, 2008 2:04 PM
Posted by: Jerry Lees
Random Numbers,
randomize,
VBScript StatementsThe Randomize statement seeds the VBScript random number generation engine with a new seed. A seed is a user defined value that helps create a random number.
There are no options for the Randomize statement, it's use is simply:
Randomize
August 27, 2008 6:12 PM
Posted by: Jerry Lees
disk utilities,
drive utilities,
essential tools,
free software,
free tools,
Recovery Tools,
software resources,
Systems administrator tools,
undelete,
undelete files,
windows toolsPlease note: This is a re-posting of a previously deleted post, details to come.
The next tool I'd like to share with you in my Essential Tools series is another useful...
August 22, 2008 2:23 PM
Posted by: Jerry Lees
deframent,
disk utilities,
drive utilities,
essential tools,
free software,
free tools,
software resources,
Systems administrator tools,
windows toolsPlease note: This is a re-posting of a previous post that was deleted, further details to come.
The first tool I want to call out in my Essential Tools series, and the...
August 21, 2008 2:25 PM
Posted by: Jerry Lees
CDROM Tools,
disk utilities,
drive utilities,
DVD Tools,
essential tools,
free software,
free tools,
ISO,
ISO Tools,
software resources,
Systems administrator tools,
windows toolsWe've all had times when we needed a file from an installation CD or DVD, but only had an ISO image available on the network. So, we have to copy the image to our machine then burn the image to media-- just to get the file.
There are utilities out there that do this, like
August 18, 2008 5:48 PM
Posted by: Jerry Lees
Disk space,
diskspace,
drive space,
drivespace,
essential tools,
free software,
spacemonger,
Systems administrator tools,
windows toolsThe next essential tool is one that I have used for quite some time now, and one I searched to find for some time. As a systems administrator, its an ever ending battle for you to keep space...
August 17, 2008 2:02 AM
Posted by: Jerry Lees
arrays,
dimensional arrays,
redim,
VBScript StatementsThe ReDim statement in VBScript allows you to declare a array, or a multi-dimensional array, in your code. Also, this statement allows you to re-declare the number of elements in the array at a later time in the code.
This is important because it also allows you to release...
August 9, 2008 1:57 AM
Posted by: Jerry Lees
Conditional statements,
VBScript,
VBScript Statements,
wend,
while,
while wendThe While conditional statement is useful because it allows you to repeat a block of code as long as a conditional test is True, rather than just a simple number of times. It is useful in situations where you need to loop through code,...
August 1, 2008 10:00 PM
Posted by: Jerry Lees
Objects,
set,
set command,
VBScript,
VBScript Objects,
VBScript Statements,
working with objects,
working with variablesThe set statement is used to assign any value to any type of variable. For the most part this command is optional. However, it needs to be used when you are assigning an object reference to a variable, such as when you use a variable to hold the return of a CreateObject function for later...