Remover associações de tipo de arquivo no Windows 7 [duplicado]

12

Eu configurei uma associação de arquivo personalizada para .cfg para abrir em WordPad , mas não consigo para descobrir como removê-lo. Como faço para remover associações de arquivos no Windows 7?

    
por Nathan2055 21.03.2013 / 16:13

5 respostas

12

Em uma janela de comando, você pode usar os comandos "ASSOC" e "FTYPE" para adicionar / editar / excluir associações de tipo de arquivo.

C:>assoc /?  

ASSOC [.ext[=[fileType]]]  

  .ext      Specifies the file extension to associate the file type with  
  fileType  Specifies the file type to associate with the file extension  

Type ASSOC without parameters to display the current file associations.  
If ASSOC is invoked with just a file extension, it displays the current  
file association for that file extension.  Specify nothing for the file  
type and the command will delete the association for the file extension.  

e:

C:>ftype /?  

FTYPE [fileType[=[openCommandString]]]  

  fileType  Specifies the file type to examine or change  
  openCommandString Specifies the open command to use when launching  
  files of this type.  

Type FTYPE without parameters to display the current file types that  
have open command strings defined.  FTYPE is invoked with just a file  
type, it displays the current open command string for that file type.  
Specify nothing for the open command string and the FTYPE command will  
delete the open command string for the file type.  Within an open  
command string %0 or %1 are substituted with the file name being  
launched through the assocation.  %* gets all the parameters and %2  
gets the 1st parameter, %3 the second, etc.  %~n gets all the remaining  
parameters starting with the nth parameter, where n may be between 2 and 9,  
inclusive.  

... ...  

Então (no meu sistema), em relação aos arquivos .bkr, estes comandos retornam:

C:>assoc .bkr  
.bkr=bkrfile  

C:>ftype bkrfile  
bkrfile="F:\Program Files\path...\program.exe" "%1"  

Eu criei um novo tipo de arquivo / extensão de arquivo "test" (pode exigir permissões de administrador):

C:>assoc .bzb
File association not found for extension .bzb

C:>assoc .bzb=MyBZBCustomFileType  
.bzb=MyBZBCustomFileType  

C:>assoc .bzb
.bzb=MyBZBCustomFileType  

C:>ftype MyBZBCustomFileType  
File type 'MyBZBCustomFileType' not found or no open command associated with it.  

C:>ftype MyBZBCustomFileType=%SystemRoot%\system32\NOTEPAD.EXE %1  
MyBZBCustomFileType=C:\Windows\system32\NOTEPAD.EXE %1  

C:>echo Some text.>C:\Temp\file.bzb  

C:>start "" C:\Temp\file.bzb  

Isso abre o "Bloco de Notas" editando meu arquivo "fictício".

Para excluir a associação de tipo de arquivo, primeiro exclua a conexão do tipo de arquivo com o programa da seguinte forma:

C:>ftype MyBZBCustomFileType  
MyBZBCustomFileType=C:\Windows\system32\NOTEPAD.EXE %1  

C:>ftype MyBZBCustomFileType=  
File type 'MyBZBCustomFileType' not found or no open command associated with it.  

Em seguida, exclua a associação de extensão de arquivo (pode exigir permissões de administrador):

C:>assoc .bzb  
.bzb=MyBZBCustomFileType  

C:>assoc .bzb=  

C:>assoc .bzb  
File association not found for extension .bzb  

C:>start "" C:\Temp\file.bzb  
(The dialogbox "Windows cannot open this file" opens)  

C:>

----

Para uma solução de GUI, eu uso PowerTools por elementos criativos . Você pode fazer o download e usá-lo gratuitamente por 45 dias em teste. Esta é uma coleção de ferramentas e você usaria sua ferramenta File Type Doctor para adicionar / editar / excluir associações de tipo de arquivo.

    
por 21.03.2013 / 17:28
5

Você pode remover a associação no registro:

HKEY_CLASSES_ROOT\.cfg\ShellEx\

E exclua a chave com o GUID correspondente ao WordPad.

    
por 21.03.2013 / 16:20
4

Você pode usar esse aplicativo legal de terceiros, Editor de programas padrão :

Default Programs Editor makes it easy to fix file association settings in Windows, including context menu items, icons, and descriptions. Also: autoplay settings and default programs settings ...all without fiddling around in the registry.

    
por 21.03.2013 / 20:28
2

A maneira de alterar as associações (parece não permitir a remoção) com as ferramentas internas do Windows 7 (as da interface do usuário) é abrir o Menu Iniciar e escolher Programas padrão . (Ou, se não estiver presente, abra Menu Iniciar , Painel de Controle (talvez seja necessário alterar de Exibir por categoria para Exibir por ícones grandes ) e depois Programas padrão .

Em seguida, selecione Associar um tipo de arquivo ou protocolo a um programa . Você obterá uma lista com as associações atualmente configuradas no seu computador. Encontre a extensão que você deseja alterar e clique duas vezes nela para alterar sua configuração.

    
por 21.03.2013 / 22:49
0

Clique com o botão direito em um arquivo .cfg - > Abra com - > Escolha o programa padrão. Em seguida, marque a opção "Sempre use o programa selecionado para abrir esse tipo de arquivo" e selecione um programa da lista ou clique no botão Procurar para selecionar manualmente um programa no sistema de arquivos.

Guia completo com imagens: link

    
por 21.03.2013 / 20:56