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?
Comment extract a text list depuis le Windows Program and Features?
Re: Comment extract a text list depuis le Windows Program and Features?
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
```
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
```