118 Part II: WMI Queries and Events
On Your Own
Lab 11 Creating a Video Change Notification Script
In this lab, you will create a script that provides notification when a change to the video set-
tings on your workstation occurs.
1. Open the script WMITemplate.vbs, and save it as StudentLab11.vbs.
2. Turn off On Error Resume Next.
3. Declare a va
riable to hold the WMI class being monitored. Call it objTGT.
4. Above the wmiQuery line, assign the value of obj
TGT to be equal to
Win32_VideoController. Make sure to embed double quotes as shown here:
objTGT = ""Win32_VideoController""
5. Modify the wmiQuery so that it points to the __InstanceModificationEvent system class.
For testing purposes, you will test within 10 seconds. The TargetInstance ...