Exportar lista de adicionar / remover programas ao texto

3

Gostaria de exportar para um arquivo de texto a lista de softwares instalados que aparecem na janela Adicionar / remover programas.

Alguma dica de como fazer isso com facilidade?

    
por Julien N 03.07.2013 / 11:19

1 resposta

3

Tente assim: link

Generate a List of Installed Programs in Windows

To generate the list of installed programs, open the Command Prompt as Administrator. To do this in Windows 7 or Windows Vista, enter “cmd” (without the quotes) in the Search Programs and Files box on the Start menu. The cmd.exe program should automatically be highlighted in the Programs section of the results. Press Ctrl + Shift + Enter to open cmd.exe as Administrator.

Enter “wmic” (wmic is the Windows Management Instrumentation Command-line tool) at the command line and press Enter.

Enter the following line at the wmic:root\cli prompt and press Enter.

/output:C:\InstallList.txt product get name,version

NOTE: There is a space between .txt and product, between product and get, and between get and name.

You can also change the name of the output file and drive letter and path (right after /output:) if you want to modify the output location.

The InstallList.txt file is created on the root of the C: drive.

    
por 03.07.2013 / 11:46

Tags