Home > Windows Server News > Reading computer names from a file
Windows Server News:
EMAIL THIS

Reading computer names from a file

By Christa Anderson, Contributor
14 Nov 2005 | SearchWinSystems.com

Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   

If you have more than a few server names to check, or if you want to always check the same servers, storing the names in a file is easier and more accurate than typing them in each time you run the script.

If you'll always run the script from the same computer, you can store the server names in a file called servers.txt (one server name to each line), then call that file from the script. To read the file, use a VBScript COM object called a File System Object (FSO) that can represent files or folders; VBScript doesn't know how to interact with files, but it knows how to interact with COM objects. In this case, the FSO will point to and read from the text file in which you've stored your server names. The text file's location shouldn't change, so you can hard-code it into the script. However, you must specify that you want the script to read a file.

Before you can work with the string of names in the file, you must put the names into an array. In their simplest and most common form, arrays are one-column tables of data. The rows in arrays are identified by index numbers from zero through the final row number -- the upper bound of the array. You can create an array and populate it manually, or you can create an array and populate it from a chunk of existing data. To make the array from existing data, use the Split function to divide the sComputerName variable's content into chunks, using the carriage return/line feed (vbCrLf) as the delimiter. The code that converts the contents of sComputerName into the aComputers array looks like this:

aComputers = Split(sComputerName, vbCrLf)


Scripting School: Connect scripts to remote computers

  Introduction
  Taking computer names as arguments
  Using WSH Controller
  Reading computer names from a file
  Reading computer names from Active Directory
  Tips for remote script execution
  Summary

Read all of Christa's scripting columns:
April 2005: Beginner's guide to scripting
May 2005: It's time to increase your scripting expertise
June 2005: Connect users to network resources
July 2005: More on connecting to network resources
August 2005: Find objects with Windows Scripting Host
September 2005: Windows Script Host arguments
October 2005: Scripting School: Turning the environment with WshShell

ABOUT THE AUTHOR:
Christa Anderson
When Christa Anderson began working with Windows Server operating systems in 1992, she became increasingly interested in finding more efficient and flexible ways of performing routine tasks. Christa has written extensively about administrative scripting and taught technical sessions on the subject at conferences such as Comdex and CeBIT, helping people who had never done any scripting to write their own scripts in half a day. In addition to her interest in scripting Windows management, Christa is an authority on server-based computing and the program manager for Terminal Services licensing in Longhorn. If you have a scripting question for Christa, please e-mail her at scripting@SearchWinSystems.com.


Tags: Microsoft Active Directory ScriptingVIEW ALL TAGS

Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


RELATED CONTENT
Microsoft Active Directory Scripting
Scripting domain controller installations: A must for Server Core
Introducing Active Directory to Windows PowerShell
Simple WMI tricks for AD administrators
Active Directory LDAP scripting made simple
Extracting Active Directory info quickly and easily with LDIFDE
Scripting School: Connect scripts to remote computers
Taking computer names as arguments
Using WSH Controller
Connect scripts to remote computers: Summary
Reading computer names from Active Directory

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary



Windows Server Management - Virtualization, Consolidation, Clustering
HomeTopicsBlogsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersIT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2004 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts