VBScript – For Windows Networks
Introduction to VBScript This section provides you with free tutorials of VBScripts for Windows Server and XP and Windows 7/8. Many of the scripts are designed to create and manipulate Windows Active Directory objects. Each page has a tutorial explaining the methods you need to tackle a particular every-day network …
EventTriggers Overview Syntax Shane Rudy’s worked example Overview EventTriggers is a program that you can execute from the Windows 2003 command line. Think of the following scenario, your server is playing up, a fact confirmed by lots of red dots in the Event Viewer. As a top techie, you want …
VBScript to create computer accounts Note1 : I have a new script to create a computer. Note 2: I have a VBScript to create a computer from an Excel Spreadsheet ♦ VBScript Create Computer Accounts What the script does is to connect to Active Directory, then create a XPSimple in …
Introduction to WMI Memory This page explains how to create a Microsoft WMI script. The examples interrogate the Windows Servers and report on how much RAM is installed. My WMI code employs Win32 ComputerSystem commands to interrogate the operating system and report TotalPhysicalMemory (RAM). The beauty of learning this Win32 …
WMI Tutorial – Who is Logged on at that Computer? In many ways, this simple script is my equivalent of the normal ‘Hello World’ example that most scripts writers choose for their introduction. This VBScript echoes to screen the name of the user who is logged on at the computer. …
WMI and VBScript Secrets Here are my tips on mastering WMI. Start with a simple script. My advice is always aim to build on success. The knack of scripting is to divide your task into sections, in our case, pure VBScript, WMI and CIMv2. Get each command working then bolt …