web-dev-qa-db-ja.com

Windows 7でファイルの種類の関連付けを削除する

.cfgのカスタムファイルの関連付けを WordPad で開くように設定しましたが、それを削除する方法がわかりません。 Windows 7でファイルの関連付けを削除するにはどうすればよいですか?

13
Nathan2055

コマンドウィンドウから、「ASSOC」および「FTYPE」コマンドを使用して、ファイルタイプの関連付けを追加/編集/削除できます。

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.  

そして:

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.  

... ...  

したがって(私のシステムでは)、. bkrファイルに関して、これらのコマンドは次のように返します。

C:>assoc .bkr  
.bkr=bkrfile  

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

新しい「テスト」ファイル拡張子/ファイルタイプを作成しました(管理者権限が必要な場合があります):

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  

「メモ帳」が開き、「ダミー」ファイルが編集されます。

ファイルタイプの関連付けを削除するには、まず次のようにプログラムへのファイルタイプの接続を削除します。

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.  

次に、ファイル拡張子の関連付けを削除します(管理者権限が必要な場合があります)。

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:>

----

GUIソリューションでは、 PowerTools by Creative Elements を使用します。ダウンロードして、45日間無料で試用できます。これはツールのコレクションであり、File Type Doctorファイルタイプの関連付けを追加/編集/削除するツール。

13
Kevin Fegan

レジストリで関連付けを削除できます。

HKEY_CLASSES_ROOT\.cfg\ShellEx\

そして、ワードパッドに対応する [〜#〜] guid [〜#〜] でキーを削除します。

5
MDMoore313

このクールなサードパーティ製アプリケーションを使用できますDefault Programs Editor

既定のプログラムエディターを使用すると、コンテキストメニュー項目、アイコン、説明など、Windowsのファイルの関連付け設定を簡単に修正できます。また、自動再生の設定とデフォルトのプログラムの設定...すべてレジストリをいじる必要はありません。

Enter image description here

4
magicandre1981

組み込みのWindows 7ツール(UIツール)を使用して関連付けを変更する方法(ただし、削除はできないようです)はスタートメニューを開き、次にデフォルトのプログラム)を選択します。 (または、存在しない場合は、スタートメニューコントロールパネルを開きます(から変更する必要がある場合があります)カテゴリ別に表示toView by large icons)次にDefault Programs。)

次にファイルタイプまたはプロトコルをプログラムに関連付けるを選択します。コンピューターに現在設定されている関連付けのリストが表示されます。変更する拡張機能を見つけ、それをダブルクリックして構成を変更します。

2
frozenkoi

.cfgファイルを右クリック->開く->デフォルトのプログラムを選択します。次に、[常に選択したプログラムを使用してこの種類のファイルを開く]をオンにし、リストからプログラムを選択するか、[参照]ボタンをクリックしてファイルシステムからプログラムを手動で選択します。

画像付きの完全なガイド: http://www.sevenforums.com/tutorials/12196-open-change-default-program.html

0