Hello,



I've started a project at Sourceforge, it's a vbscript which goal is to
simplify the task of documenting Windows servers. It collects information
through WMI and writes the results to a Word file. I'm able to get quite a
lot of information from the target computer, and it looks quite nice at
present. I would however like to be able to list Windows Components, so I
can include IIS, DNS, DHCP and such in the documentation.



So my question; does anyone know of a way to get this information with a
script?



The project is called SYDI (Script Your Documentation Instantly) and is
found here: http://sydi.sourceforge.net/



It would also be nice with some feedback on the script, so please test it :)



Best regards

Patrick

Re: Listing Windows Components from script by Torgeir

Torgeir
Fri Aug 13 03:54:10 CDT 2004

Patrick Ogenstad wrote:
> Hello,
>
>
>
> I've started a project at Sourceforge, it's a vbscript which goal is to
> simplify the task of documenting Windows servers. It collects information
> through WMI and writes the results to a Word file. I'm able to get quite a
> lot of information from the target computer, and it looks quite nice at
> present. I would however like to be able to list Windows Components, so I
> can include IIS, DNS, DHCP and such in the documentation.
>
> So my question; does anyone know of a way to get this information with a
> script?
>
> The project is called SYDI (Script Your Documentation Instantly) and is
> found here: http://sydi.sourceforge.net/
Hi

To see what is installed, enumerating values under the registry key
HKLM\Software\Microsoft\Windows\CurrentVersion\Setup\OC Manager\Subcomponents
should be a viable solution, take a look here:
http://groups.google.com/groups?selm=Ot%23nGXmtDHA.2464%40TK2MSFTNGP12.phx.gbl


--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx

Re: Listing Windows Components from script by Patrick

Patrick
Fri Aug 13 04:16:01 CDT 2004

> To see what is installed, enumerating values under the registry key
> HKLM\Software\Microsoft\Windows\CurrentVersion\Setup\OC
Manager\Subcomponents

Thanks you Torgeir!