Procura diretórios listados na variável de ambiente PATH

0

Estou tentando localizar e remover qualquer instância de um arquivo .dll que apareça em qualquer diretório que esteja na variável de ambiente PATH nas janelas.

Existe uma maneira fácil de fazer isso na janela do CMD?

    
por peace_within_reach 16.06.2015 / 20:37

1 resposta

1

WHERE comando :

Locate and display files in a directory tree.

The WHERE command is roughly equivalent to the UNIX 'which' command. By default, the search is done in the current directory and in the PATH.

Você poderia usar

where anyname.dll
    
por 16.06.2015 / 20:59