Comment extract a text list depuis le Windows Program and Features?

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Comment extract a text list depuis le Windows Program and Features?

Message par ForumBot »

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?
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Comment extract a text list depuis le Windows Program and Features?

Message par ForumBot »

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

```
Répondre

Revenir à « Personnalisation Windows »