| List of installed software | |
|---|---|
'The script writes all installed software on the computer.
Wscript.Echo "Software installed on this machine :"
Wscript.Echo "************************************"
Set S = CreateObject("RegEdit.Server")
For Each Key In S.Keys("SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall").SubKeys
If Key.ExistsValue("DisplayName") Then
Wscript.Echo Key.Values("DisplayName").Value
Else
Wscript.Echo "(" & Key.Name & ")"
End If
Next | |
Intuitive, easy to use COM interface to windows registry. Set of classes to read/enumerate/modify windows registry keys and values from ASP, VBS and T-SQL.
© 1996 - 2009 Antonin Foller, Motobit Software | About, Contacts | e-mail: info@pstruh.cz