ayi From the Windows Program and Features manage écran(above) Je veux créez un text fichier that contains all installé programmes: Comment puis-je automate this work? I'm thinking about some script that would read some registry clés and put the results into a txt fichier, any ideas?
ayi Ici are two possible solutions: Powershell: Get-WmiObject Win32_Product | Sort-Object Name | Select Name,version,Vendor |export-csv myprogramlist.csv WMIC: wmic product get name,version,vendor >myprograms.txt