Welcome to my Scripting page. This blog has ready to use VBScript and Powershell scripts either written or collected from various websites around the web
Friday, October 12, 2007
VBScript - String Arrays
A small script to explain arrays. While using string array don't forget double quotes.
'Script start
Strservers = array("EX1","EX2","EX3") For each str in strservers 'To get each object in an array wscript.echo str Next
No comments:
Post a Comment