Smooth Operator

One of the cool things you can do is use greater than and less than operators in your evaluation clause. What is so cool about greater than? you might ask. It makes working with alphabetic characters and numeric characters easy. If you work on a server that hosts home directories for users (which are often named after their user names), you can easily produce a list of all home directories from the letters T through Z by using the > S operation. This is illustrated in the following script:

strComputer = "." wmiNS = "\root\cimv2" wmiQuery = "Select Name, path, allowMaximum from Win32_Share where name > 's'" Set objWMIService = GetObject("winmgmts:\\" & strComputer & wmiNS) Set colItems = objWMIService.ExecQuery(wmiQuery) For Each ...

Get Microsoft® Windows® Scripting Self-Paced Learning Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.