
Retrieving Bios version from computers in a windows 2000 domain
Hi Sam,
the following helped me out some time ago ...
kind regards
Bernd
set locator = CreateObject("WBEMScripting.SWBEMLocator")
set wmi =
locator.ConnectServer("myremoteserver","root/cimv2","myremoteuser","myremote
password")
'server , namespace, user , password
set objgrp = wmi.Get("Win32_Bios")
for each obj in objgrp.Instances_
list = list & obj.Version & vbcrlf &_
obj.Name & vbCrlf
next
MsgBox list
Quote:
> I am a new to WMI.
> I am trying to retrieve bios version of every workstation
> (particularly to see the ones that are not up to date) in our
> production domain.
> I will be grateful if anyone can help.
> Regards
> Sam