![]() |
| |||||||
| Notices |
![]() |
| LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| I am trying to get a collection of installed software. My script works for SOME computers and not others. (ALL ARE WINXPSP2). For those that do not work, I can change the script and successfully get a list of SERVICES running on the machine so WMI must be working. What can cause the Win32_Services to work and the Win32_Product collection to NOT work? ================================================== ================= On Error Resume Next Dim colSoftware Const wbemFlagReturnImmediately = &h10 Const wbemFlagForwardOnly = &h20 'strComputer = InputBox ("Enter Machine Name") strComputer = "SAC-WK-COL-LMB" ' strNameSpace = InputBox ("Enter Name Space") Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\Root \cimv2") If Err = 0 Then MsgBox "Connection Successful" Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_Product", "WQL",wbemFlagReturnImmediately + wbemFlagForwardOnly) For Each objItem In colItems wscript.echo objItem.Name & ";" _ & objItem.Vendor & ";" _ & Mid(objItem.InstallDate, 5, 2) _ & Mid(objItem.InstallDate, 7, 2) _ & Mid(objItem.InstallDate, 1, 4) & VBCRLF Next ElseIf Err <> 0 Then MsgBox "An Error Was Encountered", 16, "Error" & VBCr _ MsgBox "Machine Name: " & UCase(strComputer) & VBCr _ & "Error Number: " & Err.Number & VBCr _ & "Description: " & Err.Description & VBCr _ & "Source: " & Err.Source End If Err.Clear | Guest
Posts: n/a
|
|
![]() |
| Tags |
| None |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| PHP to win32_Product dies, but win32_QuickFixEngineering is fine? | wiggum | Windows XP WMI | 0 | 09-12-2007 07:21 PM |
| Win32_OperatingSystem collection cannot be iterated | Andrew Aronoff | Windows XP WMI | 1 | 04-21-2006 02:05 PM |
| WMI: Win32_Product - Does not return all products | Dimitri Meeuws | Windows XP WMI | 3 | 10-29-2004 06:46 PM |
| Need workaround for Win32_OperatingSystem.LastBootUpTime returning Null on Win9x | David Holcomb | Windows XP WMI | 0 | 08-05-2004 09:53 PM |
| Not getting all clips in collection | Rye | Windows XP Movie Maker | 2 | 09-18-2003 08:52 PM |