Download ActiveXperts Network Monitor 7.0  (6239 KB - .exe file)
Download Manual  (653 KB - .pdf file)
Windows Management - Introduction
Scripting Windows Management is one of those good ideas that you might not have gotten around to trying yet.
Perhaps you're not sure what you could accomplish with a script that you can't accomplish from the graphical interface.
ActiveXperts Network Monitor has full support for scripting Windows Management.
There are already thousands of documents on the Internet and hundreds of good books about scripting Windows Management.
However, there's a lack of good, easy to use samples. We provide a nice set of samples, that you can easily use inside ActiveXperts Network Monitor.
The three most important Windows management scripting technologies are:
- Windows Scripting Host (WSH) and VBScript;
- Windows Management Instrumentation (WMI);
- Active Directory Services interfaces (ADSI)
Scripts Collection
ActiveXperts Network Monitor has full support for scripting Windows Management.
Click here for more than thousand VBScript samples for IT administrators.
You can easily use these scripts in ActiveXperts Network Monitor.
Windows Scripting Host (WSH) and VBScript
VBScript (Microsoft Visual Basic Scripting Edition) is often dismissed as being "just" a scripting language,
the implication being that a scripting language is of little use to a system administrator faced with managing
hundreds or even thousands of computers in an enterprise setting.
However, when used in combination with technologies such as Windows Script Host (WSH),
Windows Management Instrumentation (WMI), and Active Directory Service Interfaces (ASDI),
VBScript becomes a powerful language for system- and network administration purposes.
For example, the three-line script below tells you how much free disk space is available on drive C of your computer:
| |
Set objWMIService = GetObject("winmgmts:")
Set objLogicalDisk = objWMIService.Get("Win32_LogicalDisk.DeviceID='c:'")
Wscript.Echo objLogicalDisk.FreeSpace
|
More....
Windows Management Instrumentation (WMI)
The foundations for Manageability in Windows XP/Windows 2000 and Windows Millennium Edition/Windows 98 are Windows Management Instrumentation (WMI;
formerly WBEM) and WMI extensions for Windows Driver Model (WDM).
The purpose of WMI is to define a non-proprietary set of environment-independent specifications. These specifications allow management information to
be shared between management applications that run in both similar and dissimilar operating system environments. WMI prescribes enterprise management
standards and related technologies that work with existing management standards, such as Desktop Management Interface (DMI) and SNMP. WMI complements
these other standards by providing a uniform model. This model represents the managed environment through which management data from any source can be
accessed in a common way.
ActiveXperts Network Monitor provides the ability to build monitor check routines based on WMI. ActiveXperts Software has collected more than hundred WMI samples.
You can use these samples as a base for new check routines you can write yourself.
More...
Active Directory Services interfaces (ADSI)
Active Directory Service Interfaces (ADSI) enable system administrators and developers of scripts or applications to easily query for
and manipulate directory service objects.
ADSI present a single set of directory service interfaces for managing network resources from different directory services.
Administrators and developers can use ADSI to manage the resources in a directory service, regardless of which network environment
contains the resource.
Scripts written to ADSI will work with any directory service that offers an ADSI provider. For example, with ADSI, applications can
access LDAP, NDS, the Active Directory service, and other directories with ADSI interfaces as long as the appropriate service providers
are available.
The standard ADSI providers are found within multiple namespaces - typically directory services for various network operating systems. Providers enable communication between the server or client. ADSI includes providers for:
- Windows NT.
- Lightweight Directory Access Protocol (LDAP).
- Windows 2000 Active Directory (AD).
- Novell NetWare Directory Services (NDS), and NetWare 3 bindery (NWCOMPAT).
ActiveXperts Network Monitor provides the ability to build monitor check routines based on ADSI. ActiveXperts Network Monitor provides some useful ADSI scripts.
You can use these samples as a base for new check routines you can write yourself.
More...
|