Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

How Can I Determine if a Folder Exists on a Computer?

(image) Hey, Scripting Guy! Is there any way to determine whether or not a specific folder exists on a computer?-- RP, Umatilla, OR(image) (image) (image) Hey, RP. There are a couple ways of doing this, depending on whether you are looking for the folder on the local computer or on a remote computer, and depending on whether or not you know ...

How Can I Determine How Long It Takes a Script to Run?

(image) Hey, Scripting Guy! Is there a good way to time how long it takes for a script to run? -- BN, Montreal, Canada (image) (image) (image) Hey, BN. Probably the easiest way to do this is to let the script time itself. To accomplish that feat, set the first line of the script to this: This code simply sets the value of the variable ...

How Can I Save Output to a Text File?

(image) Hey, Scripting Guy! Is there an easy way to save my script output to a text file rather than displaying it on screen? -- KP, Ogden, UT(image) (image) (image) Hey, KP. If you always want your script to save data to a text file rather than display it on screen, then you’re probably better off using the FileSystemObject and its file-...

How Can I Give a User a Yes/No Prompt?

(image) Hey, Scripting Guy! I have a script which performs some file management tasks, and then should ask the user whether or not they want to delete a set of files. How do I ask a user a Yes or No question like this? -- SE, Casper, WY(image) (image) (image) Hey, SE. There are a couple different ways that you can do this, but because you’...