Bonjour.
Comment obtenu la liste des framework Installer sur la machine en VBS?
Cordialement .
Bonjour.
Comment obtenu la liste des framework Installer sur la machine en VBS?
Cordialement .
Voici un petit test qui pourrait aider :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") Set colItems = objWMIService.ExecQuery( _ "SELECT * FROM Win32_ApplicationService",,48) For Each objItem in colItems If InStr(1,objItem.Name,"Framework")>0 then Wscript.Echo "Caption : " & objItem.Caption Next
Partager